1.
|
In the Script pane, place the insertion point in front of the line that reads gotoAndStop("confirm").
|
2.
|
In the Actions toolbox, select Global Functions > Browser/Network and double-click getURL.
|
3.
|
With the insertion point between the getURL() parentheses, type "http://"+url_txt.text to specify the data that should pass from the SWF file.
(Do not leave spaces in the code.) Your script should look like the following: stop(); this.submit_btn.onRelease = function(){ if (url_txt.text == null || url_txt.text ==""){ gotoAndStop("Error"); } else { getUrl ("http://"+url_txt.text); gotoAndStop("Confirm") } }; |
by
updated