PDA

View Full Version : using "fscommand"??


Holland
03-20-2004, 09:46 AM
Hoi ,im trying too get a flash movie too stop, and then jump too a new page ,i set it up like this,

"if e_FSCommand == "quit"
Page.Jump("Page2");"

But that doesn't work ,i keep getting,

Syntax Error: [Location="Page1:Flash1", Event "On FSCommand", Line=21]
Error Detail: [`end' expected (to close `if' at line 20) near `<eof>'] in []

Could somebody tell me what i'm doing wrong?

Thanks.

rhosk
03-20-2004, 09:59 AM
Hi,

Just put the word "end" after your statement:

if e_FSCommand == "quit"
Page.Jump("Page2");
end

Holland
03-20-2004, 02:08 PM
tHANKS.:lol