Re: [Flashcoders] Multiple query strings in a single URL

2008-05-14 Thread Jason Van Cleave
I think "FlashVars", 'whichSection=' + querySt('page'),'loggedin='+querySt('login')); needs to be "FlashVars", 'whichSection=' + querySt('page')+'&loggedin='+querySt('login'); You may want to check out SWFObject 1.5 that would make this much more readable ie: var so = new SWFObject("your.swf",

[Flashcoders] Multiple query strings in a single URL

2008-05-14 Thread John R. Sweeney Jr
Howdy all, I currently have a app that pulls a single variable from the URL I.e. = index.html?page=2 I pass that info into my program with FlashVars using: -- function querySt(ji) { hu = window.location.search.substring(1); gy = hu.split("&"); for (i=0

[Flashcoders] hi.. need help asap.. newbie here.. hehe

2008-05-14 Thread rlyn ben
need to capture the input in textfield which is restricted to numbers only... and convert the string to number... this is my code but it wont work.. when i trace it.. it displays.. object [textfield].. or 0.. or NaN.. //stores age var userAge:Number = Number(age); var newAge:String = String(age

Re: [Flashcoders] AMFPHP classes AS3

2008-05-14 Thread Muzak
http://www.google.com/search?hl=en&q=amfphp+tutorial&meta= http://www.sephiroth.it/amfphp.php - Original Message - From: "Vayu Robins" <[EMAIL PROTECTED]> To: "Flash Coders List" Sent: Thursday, May 15, 2008 1:01 AM Subject: [Flashcoders] AMFPHP classes AS3 Hi. I was wondering if a

[Flashcoders] AMFPHP classes AS3

2008-05-14 Thread Vayu Robins
Hi. I was wondering if anyone here has som advice on running flash content from a database with the help of AMFPHP 1.9? Maybe someone has a brilliant class for this or good tutorial. I have searched the net, but am not finding much out there. I need to make several queries, for instance for men

RE: [Flashcoders] as3 namespace question

2008-05-14 Thread Dave Segal
Thanks for the response Erik. Yes, I am aware that compiling the entire base class of another swf is problematic. I was just trying to simplify things for the example. If the idea works I will to use an interface as a public api to the loaded swf. Anyway, I am very interested in seeing your examp

Re: [Flashcoders] Aligning images and text in textfield / textarea

2008-05-14 Thread EECOLOR
I remember the component named Deng, which is able to render a subset of HTML. It can be found here: http://deng.com.br/ HTML within Flash is one of the toughest things to do as the support for HTML within Flash is very limited. Greetz Erik On 5/6/08, Neil Jenkins <[EMAIL PROTECTED]> wrote: >