Flash to html navigation

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jasone
    New Member
    • Mar 2007
    • 66

    Flash to html navigation

    hello all,

    im having a problem with navigating from a flash page to a html page. The flash section is uploaded on a server along with the html pages, but they cant find each other so i think the script i am using is wrong.

    the website address is www.flowertime. org.uk you use the buttons on the right hand side to navigate to different sections of the web page, but it is going from flash (.swf) to an html page.

    please find the snippets of code from to buttons... as you can see i have tried addressing the html page differently, but still no luck
    _______________ _______________ _______________ _______________ _______

    on (release) {

    //Goto Webpage Behavior
    getURL("wedding s.html","_paren t");
    //End Behavior

    }
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    on (release) {

    //Goto Webpage Behavior
    getURL("http://www.flowertime. org.uk/somethingspecia lmain.html","_p arent");
    //End Behavior

    }______________ _______________ _______________ _______________ _____

    any advice would be great... so check out the website and see if you know what im doing worng!

    regards

    jason
  • kestrel
    Recognized Expert Top Contributor
    • Jul 2006
    • 1071

    #2
    Code:
    on (release) {
    
    getURL("http://www.thescripts.com","_blank");
    
    }
    should work

    Comment

    • nomad
      Recognized Expert Contributor
      • Mar 2007
      • 664

      #3
      That should work like kestrell said.
      I would check to see if your htm files are in the same dir. Reason is I took your
      "http://www.flowertime. org.uk/somethingspecia lmain.html","_p arent"
      into the address and it came back not found.

      nomad

      Comment

      Working...