View Single Post
Join Date: Feb 2008
Posts: 347
Reputation: kevin wood is an unknown quantity at this point 
Solved Threads: 1
kevin wood's Avatar
kevin wood kevin wood is offline Offline
Posting Whiz

Re: adding navigation to flash buttons

 
0
  #4
Apr 11th, 2008
the solution to the problem that i was facing is as follows:

if you want the links from the buttons to open in the same window then the code to use looks like this:-

Graphics and Multimedia Syntax (Toggle Plain Text)
  1. on (release){
  2. getURL("../construction/index.htm");
  3. }

the file being linked to is written the same as it would be in html code and to get the link to open in a new window then the code is:-

Graphics and Multimedia Syntax (Toggle Plain Text)
  1. on (release){
  2. getURL("../construction/index.htm" "blank");
  3. }
Reply With Quote