This content has been marked as final.
Show 5 replies
-
1. Re: stop does not allow me to open url
Ned Murphy Mar 19, 2010 12:50 PM (in response to Laraine Hofmann)stop();
navigateToURL(new URLRequest("introduction.htm"),"_parent"));
-
2. Re: stop does not allow me to open url
Laraine Hofmann Mar 19, 2010 12:54 PM (in response to Ned Murphy)That didn't work. I received the following compiler error in AS3:
1087: Syntax error: extra characters found after end of program.
Anything else I can try?
-
3. Re: stop does not allow me to open url
Laraine Hofmann Mar 19, 2010 12:58 PM (in response to Ned Murphy)Oh stupid me, it works! Thank you so much, I had an extra bracket at the end...whoops.
-
4. Re: stop does not allow me to open url
DigitalArchitectCanada Mar 19, 2010 1:00 PM (in response to Laraine Hofmann)It should be:
navigateToURL(new URLRequest("introduction.htm"),"_parent");
stop();One too many ) on the code.
weather or not the stop comes before or after, it's going to execute the same.
-
5. Re: stop does not allow me to open url
Ned Murphy Mar 19, 2010 1:22 PM (in response to Laraine Hofmann)That extra parenthesis was a typo--sorry about that.