View Single Post
  #1  
Old 05-11-2007, 06:43 PM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
Why would you want to keep the VARIABLE data?
Here:
HTML Code:
function onCreated()
{
  temp.myList = {"hey", "hi", "lol"};
  for (currentItem: temp.myList)
    echo(currentItem);
  echo(currentItem);
  scheduleevent(3, "Repeat", "");
}
function onRepeat()
{
  echo(currentItem);
}
using temp. prefix's won't STORE the VARIABLE data.
Reply With Quote