I'm trying to do something with it.. and I'm running into a really annoying problem.
Here's my code in timer.swf > On FSCommand:
%fs% = FlashObject[timer].GetProperty ("Last FSCommand")
%fs% = String.Replace ("%fs%", "0:", "")
EditFieldObject[EditField1].SetText ("%fs%")
IF (%fs% = "00")
Page.RefreshObjects ("Refresh Specific", "timer")
END IF
What does that do? It closes my program immediately when it hits the IF statement!!
Basically what I want it to do is restart when it hits zero. When tyring to do this, it just exits the app. Really strange. I cannot find a workaround for this to save my life. I've tried stopping and restarting the flash once it hits 00, I've tried jumping to a new page, then on that page's load, jump back to page1, I've tried everything. And everything just makes the app exit on it's own.
I CAN'T figure it out! Any thoughts?
Thx in advance.
(p.s. I have the time.conf set up at .2 so it starts at 11 seconds and counts down to 0)
Here's my code in timer.swf > On FSCommand:
%fs% = FlashObject[timer].GetProperty ("Last FSCommand")
%fs% = String.Replace ("%fs%", "0:", "")
EditFieldObject[EditField1].SetText ("%fs%")
IF (%fs% = "00")
Page.RefreshObjects ("Refresh Specific", "timer")
END IF
Basically what I want it to do is restart when it hits zero. When tyring to do this, it just exits the app. Really strange. I cannot find a workaround for this to save my life. I've tried stopping and restarting the flash once it hits 00, I've tried jumping to a new page, then on that page's load, jump back to page1, I've tried everything. And everything just makes the app exit on it's own.
I CAN'T figure it out! Any thoughts?
Thx in advance.
(p.s. I have the time.conf set up at .2 so it starts at 11 seconds and counts down to 0)
Comment