Search the web
Sign In
New User? Sign Up
radio-dev
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6834 - 6863 of 8443   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6834
... thread.getStackDump ( http://docserver.userland.com/thread/getStackDump ) may provide this. Can you give more information about how you would be using this...
Roger Turner
memoria_tech...
Offline Send Email
Oct 1, 2002
12:29 pm
6835
What's the right way to create this sort of element: <whatever something="something else"/> Using this code doesn't give the right sort of element. ...
rpeck64
Offline Send Email
Oct 1, 2002
3:52 pm
6836
... This must be another one of those "there's no answer, it can't be done, so nobody will reply" questions. Is there something 'wrong' with how xml.decompile...
rpeck64
Offline Send Email
Oct 1, 2002
7:17 pm
6837
Hi, Sorry I can't be of more help but I guess you are right. None of us knows the answer! ... I use a function: on xmlSetAttr( adrElem, attName, attValue ) { ...
Matt Mower
mowerm
Offline Send Email
Oct 1, 2002
7:46 pm
6838
... Yes, I'm afraid so. ... You should only use xml.addTable to add new elements. To add attributes, first create a subtable named "/atts" and then add any ...
Andre Radke
andre_radke
Offline Send Email
Oct 1, 2002
8:03 pm
6839
... This is a maddening situation. It's fortunate the ex-employees pick up the slack. ... If you're trying to produce simple XML for possible consumption by ...
rpeck64
Offline Send Email
Oct 2, 2002
1:56 pm
6840
Hello Looks like the webserver is substiting "<p>" for multiple new lines, and making "//" into '<a href="//">', on the text returned from my website function....
mikel_maron
Offline Send Email
Oct 2, 2002
5:25 pm
6841
Mikel, I just converted my pLessFix script to a tool and should be announcing a release soon. In the meantime you can pick it up at ...
Andy Fragen
ajfragen
Offline Send Email
Oct 2, 2002
6:04 pm
6842
ah, slightly different problem. this page is being served up by the radio webserver to the browser, rather than upstreamed. ... first ... Radio from...
mikel_maron
Offline Send Email
Oct 2, 2002
7:11 pm
6843
You are correct. I hadn't looked into how to alter the webserver to browser, if it's at all possible. If I figure it out all add it to the tool. -- Andy Fragen...
Andy Fragen
ajfragen
Offline Send Email
Oct 2, 2002
7:53 pm
6844
Perhaps this will help diagnose the problem? I developed some website routines in one tool, then moved them to another. The routines use a template that simply...
mikel_maron
Offline Send Email
Oct 2, 2002
8:52 pm
6845
Hi folks, In a script like on script() { local form new( table, @form ) thread.callScript( "otherScript", {}, @form ) } then within otherScript() according to...
Matt Mower
mowerm
Offline Send Email
Oct 3, 2002
4:38 pm
6846
... Yes, that's how it is supposed to work. Note that in your example script the new thread receives a copy of the form table, i.e. any changes the original...
Andre Radke
andre_radke
Offline Send Email
Oct 3, 2002
5:04 pm
6847
Oy, this is driving me in crazy circles Here's the simple quest I want to serve the contents of a wpText element, without that element being modified one bit....
mikel_maron
Offline Send Email
Oct 3, 2002
5:46 pm
6848
Hi Andre, ... Many thanks for that. ... no ... Is that the one where it says there is no way to work out the value of 's' and 's' is nowhere in sight? :) I...
Matt Mower
mowerm
Offline Send Email
Oct 3, 2002
6:49 pm
6849
Hi: I am creating a glue DLL that will be called from UserTalk from both Frontier and Radio to enable e-commerce using Credit Cards and E-xact's Secure...
Roland Tanglao
bliblip
Offline Send Email
Oct 3, 2002
9:32 pm
6850
BTW, if you want the address of the context table, you can use parentOf (xyz), where xyz is a something that you know in advance will exist in the context...
Jake Savin
jsavin
Offline Send Email
Oct 3, 2002
10:14 pm
6851
Hi Mikel, The easiest thing to do is to use a macro to include the wptext object. The macro processing includes the text, but since macros are only processed...
Jake Savin
jsavin
Offline Send Email
Oct 3, 2002
10:17 pm
6852
... In this case, "stay-resident" just means that your glue scripts should call dll.load once before using dll.call. If you did not do this, the DLL would be...
Andre Radke
andre_radke
Offline Send Email
Oct 3, 2002
10:38 pm
6853
Thank-you André for the really fast turnaround! I will try this out and post my results to radio-dev. ... both ... not ... Is ... has ... that ... is ... want...
Roland Tanglao
bliblip
Offline Send Email
Oct 3, 2002
11:26 pm
6854
Hi folks, I have a function: on getPref ( prefName ) { local { adrPrefs = liveTopicsSuite.util.getPrefs(); adrPref = @adrPrefs^.[prefName] }; if( !defined(...
Matt Mower
mowerm
Offline Send Email
Oct 5, 2002
1:09 pm
6855
Hi folks, Should the page-up and page-down keys work properly in a WP Text window? I tend to find that, whilst the cursor is in the window, they work but as...
Matt Mower
mowerm
Offline Send Email
Oct 5, 2002
1:39 pm
6856
... As always with UserTalk problems, the explanation can be found in Matt Neuburg's book: http://pages.sbcglobal.net/mattneub/frontierDef/ch09.html#pgfId-111 ...
Roger Turner
memoria_tech...
Offline Send Email
Oct 5, 2002
2:02 pm
6857
Hi Roger, ... attempting ... Aha! Many thanks. Matt...
Matt Mower
mowerm
Offline Send Email
Oct 5, 2002
2:18 pm
6858
... The script error got suppressed by defined(), similar to how it would be masked by a try statement. Also, if you want to test whether the address returned...
Andre Radke
andre_radke
Offline Send Email
Oct 5, 2002
2:37 pm
6859
... Sorry, this part was incorrect since you already dereferenced the address of the pref in the getPref function, but then I'm not sure what the defined()...
Andre Radke
andre_radke
Offline Send Email
Oct 5, 2002
3:04 pm
6860
Hi Andre, ... Ah well originally the scriptError wasn't in there, I put that in there to try and figure out why things weren't working as I expected. The test...
Matt Mower
mowerm
Offline Send Email
Oct 5, 2002
3:14 pm
6861
Hi folks, I can use radio.weblog.file.getCategoryFolder() to return the folder for a named category. Is there a script to get the "home" category folder? Or...
Matt Mower
mowerm
Offline Send Email
Oct 7, 2002
10:58 pm
6862
*This message was transferred with a trial version of CommuniGate(tm) Pro* . Hello, As I have been using NetNewsWire and some other readers as a test, I have...
Jack F. Mancilla
jaksonofjack
Offline Send Email
Oct 8, 2002
4:42 pm
6863
Is there a way to half close a tcp connection? Roughly, I want to communicate with a tcp daemon that expects for the following sequence to happen. client opens...
Eric Soroos
soroose
Offline Send Email
Oct 8, 2002
4:53 pm
Messages 6834 - 6863 of 8443   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help