Flash link question

Discussion in 'HTML & Website Design' started by pharcyded, Nov 18, 2007.

  1. #1
    I have a template from templatemonster and I am trying to edit the navigation menu of one button. The forum button...I want it to link to another website, but I can't figure out how to set/change the link from what it currently is. I have opened it in Flash and looked around as much as I could, but have had no luck finding it. Any help?

    :confused:
     
    pharcyded, Nov 18, 2007 IP
  2. twistedspikes

    twistedspikes Notable Member

    Messages:
    5,694
    Likes Received:
    293
    Best Answers:
    0
    Trophy Points:
    280
    #2
    Find the button and look at the actionscript of that button.

    Really you should have a basic understanding of flash to be using templates like that.
     
    twistedspikes, Nov 18, 2007 IP
  3. pharcyded

    pharcyded Peon

    Messages:
    720
    Likes Received:
    53
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I have a basic understanding which is why editing everything else has not been a problem. This what I found in the button.


    what should I put there to make it link to another webpage like www.example.com?
     
    pharcyded, Nov 18, 2007 IP
  4. twistedspikes

    twistedspikes Notable Member

    Messages:
    5,694
    Likes Received:
    293
    Best Answers:
    0
    Trophy Points:
    280
    #4
    what so you want it to go to another webpage when the button is hovered over?

    just replace gotoAndPlay(num); to getURL("url");
     
    twistedspikes, Nov 18, 2007 IP
  5. pharcyded

    pharcyded Peon

    Messages:
    720
    Likes Received:
    53
    Best Answers:
    0
    Trophy Points:
    0
    #5
    well i want it to go to a page when clicked not just hovered over.
     
    pharcyded, Nov 18, 2007 IP
  6. twistedspikes

    twistedspikes Notable Member

    Messages:
    5,694
    Likes Received:
    293
    Best Answers:
    0
    Trophy Points:
    280
    #6
    okay well in that case add this to the bottom of the code:

    on (release) {
    getURL("url");
    }
     
    twistedspikes, Nov 18, 2007 IP
    pharcyded likes this.