A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: hyperlink

  1. #1

    hyperlink

    i am very near to finishing my matrix movie intro!!! but i dont know how to make some text, (ENTER) into a link to the main part of the site,

    please help me!!!

    James



  2. #2
    FK's Geezer Mod Ask The Geezer's Avatar
    Join Date
    Jul 2002
    Location
    Out In The Pasture
    Posts
    20,488
    HTML or Flash?

  3. #3
    flash

  4. #4
    Pixel Pusher Elastikman II's Avatar
    Join Date
    Jan 2003
    Location
    London, UK
    Posts
    168
    You need to use the getURL command and specify your targeting in the dialogue box in the Actions window (Ctrl A - flash 5, F9 Flash MX)...

  5. #5
    FK's Geezer Mod Ask The Geezer's Avatar
    Join Date
    Jul 2002
    Location
    Out In The Pasture
    Posts
    20,488
    Couple ways, in MX. Make the Enter in Static text. Then in the properties panel, fill in the url in the box at the bottom, and choose _self from the target dropdown. That's if it's on another page.

    Or, make the Enter in Static text and then convert the text box to a movie clip with an instance name, say enterHere. In the movie clip, you add another layer with a rectangle of any color fill and no stroke, then alpha it to 0. It goes in a layer under the text. Then in a frame:

    enterHere.onRelease = funtion(){
    _root.gotoAndPlay("labelName");
    }

    Or, make a new button with the word enter in the first frame and a rectangle in the hit frame, then:

    on(release){
    _root.gotoAndPlay("labelName");
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center