Button Link Question

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

  1. #1

    Default Button Link Question

    I've created a button with a jpeg and want to be able to click on it and go
    to FOX News.com
    I can't seem to get it to work. How do I link it?


    --
    Chet, errrrr, Mr.C.F.


    Mr.C.F. Guest

  2. Similar Questions and Discussions

    1. NEED HELP WITH BUTTON LINK ISSUE
      :confused; Hey everyone. I have a big problem right now with trying to get my website complete because my fly out menus will not link to...
    2. Opening a new window with a link button button column on a datagrid
      Hi all, I have a datagrid with a button column set as a link button. When clicked I want it to open a new window in which to display the results...
    3. link from Button to URL
      Hi, I would like to know the actionscrpts codes that we use to link button to an URL that should pop up into a new window. verify whether this...
    4. changing link in button
      Hi ! I'm "new" to flash and I have to do the following: There is a navigation with buttons and one of these buttons needs to be changed into...
    5. button - link
      Hi ! I'm "new" to flash and I have to do the following: There is a navigation with buttons and one of these buttons needs to be changed into...
  3. #2

    Default Re: Button Link Question

    > I've created a button with a jpeg and want to be able to click on
    > it and go to FOX News.com
    > I can't seem to get it to work. How do I link it?
    > --
    > Chet, errrrr, Mr.C.F.
    Right click on the button select actions and add this code:

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

    Best wishes, Martin ;) * [url]http://birdy1976.com/[/url] * ICQ# 237743398
    Martin Voegeli, vom Guest

  4. #3

    Default Re: Button Link Question


    What's the "_blank" ?

    Still doesn't work.

    Chet, errrrr, Mr.C.F.


    "Martin Voegeli, vom" <MartinVoegeli@gmx.ch> wrote in message
    news:3F45AF45.2A960A59@gmx.ch...
    > > I've created a button with a jpeg and want to be able to click on
    > > it and go to FOX News.com
    > > I can't seem to get it to work. How do I link it?
    > > --
    > > Chet, errrrr, Mr.C.F.
    >
    > Right click on the button select actions and add this code:
    >
    > on (release) {
    > getURL("http://www.foxnews.com/", "_blank");
    > }
    >
    > Best wishes, Martin ;) * [url]http://birdy1976.com/[/url] * ICQ# 237743398

    Mr.C.F. 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