HELP WITH HYPERLINK ON BUTTON!!!

Ask a Question related to Macromedia Flash Sitedesign, Design and Development.

  1. #1

    Default HELP WITH HYPERLINK ON BUTTON!!!

    Hey all i was wonderring if u could help me with a problem I am having.

    i am making a site for a friend and i have a flash button on the main page but i want to use it as a hyperlink...how do i do that


    toinetripledubl webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Help Making a form's Submit button into a Hyperlink,Please
      On my real estate website, I would like to require visitors to sign a guest book before being able to link to the county MLS system to search for...
    2. Hyperlink for Button Image
      I have a 2 state button with an up.gif and a down.gif with behavior set for mouseover. Multiple hotspots were set in FW - a circle with rectangle...
    3. Dynamically Hyperlink and Event Handler for the Hyperlink ?
      Hi, I´m creating an Hyperlink dynamically for my DataGrid: HyperLink hl = new HyperLink(); hl.Text = "MyLink"; hl.NavigateUrl = "#";...
    4. hyperlink/button
      Hi. I want to insert an hyperlink/button for loading another page, but I need to store some data in this operation too, but I don't think the...
    5. Determining if a hyperlink button to external site has been clicked.
      You could have the hyperlink button set a hidden text field that you could inspect on postback, or have the hyperlink itself trigger the postback...
  3. #2

    Default Re: HELP WITH HYPERLINK ON BUTTON!!!

    seems ur new to flash

    k
    1. select the button
    2. press F9 or select action panel
    3. select 'get url' and fill the details - or copy paste this
    on (release) {
    getURL("http://www.macromedia.com");
    }
    4. if u want open a new window
    use this

    on (release) {
    getURL("http://www.macromedia.com", "_blank");
    }

    hope this will help u




    AnishVarghese
    anishu Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139