Re: [Flashcoders] Reloading Dynamic Text

2008-04-19 Thread robert
(HireAWebGeek.com) Sent: Saturday, April 19, 2008 3:43 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Reloading Dynamic Text Hello: I'm trying to update a dynamic text field that is being loaded with variables brought in from a php file loaded in within a setinterval function...f

Re: [Flashcoders] Reloading Dynamic Text

2008-04-19 Thread Gabino Travassos
What does the variable t1s look like? I notice that the text box is also called t1s. - Original Message - From: "Scott Wilhelm (HireAWebGeek.com)" <[EMAIL PROTECTED]> To: Sent: Saturday, April 19, 2008 1:43 PM Subject: [Flashcoders] Reloading Dynamic Text Hello:

RE: [Flashcoders] Reloading Dynamic Text

2008-04-19 Thread Scott Wilhelm (HireAWebGeek.com)
half Of Gabino Travassos Sent: Saturday, April 19, 2008 9:15 PM To: Flash Coders List Subject: Re: [Flashcoders] Reloading Dynamic Text What does the variable t1s look like? I notice that the text box is also called t1s. - Original Message - From: "Scott Wilhelm (HireAWebGeek.com)

RE: [Flashcoders] Reloading Dynamic Text

2008-04-19 Thread Scott Wilhelm (HireAWebGeek.com)
_url, "_root"); counter = setInterval(reloadPHP(), time); } ~~ Thanks! Scott -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Wilhelm (HireAWebGeek.com) Sent: Saturday, April 19, 2008 3:43 PM To: flashcoders@chattyfig.figlea

Re: [Flashcoders] Reloading Dynamic Text

2008-04-19 Thread robert
you may need to include a random digit to prevent caching especially if "mid" is the same value each time the function attempts to load the php page. var rand:Number = Math.floor(Math.random() * 100) loadVariablesNum("live_flash.php?mid="+mid+"&r="+rand, 0, "GET"); On Apr 19, 2008, at 12:

[Flashcoders] Reloading Dynamic Text

2008-04-19 Thread Scott Wilhelm (HireAWebGeek.com)
Hello: I'm trying to update a dynamic text field that is being loaded with variables brought in from a php file loaded in within a setinterval function...for some reason though, it will not update the text field, even though I have the it in the function...I'm, using AS2... This is the scri