play flash object then automagically follow link

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default play flash object then automagically follow link

    What does the code look like that allows a webpage to play a flash introductory animation...then when it is done playing JUMP to a link (in the html)?

    Thanks, --bill
    bdaul Guest

  2. Similar Questions and Discussions

    1. Removing flash object after play
      I have a transparent video playing on my front page, with a small semi-transparent controller. After the movie plays and fades out, the controller...
    2. Help link pause play etc buttons to progressivlydownloaded video
      I used the tutorial on the adobe website titled " http://www.adobe.com/devnet/flash/articles/prog_download.html" and am having problems figuring...
    3. 3d object to follow the mouse
      Hi, anyone know how I can get a 3d model to follow the x,y of the mouse. I need the coordinates translated into 3d.. John
    4. how do i link an object in Flash to an HTML link?
      hi ppl, i want to make a link on an HTML page to an object (layer) in a flash window - this should be possible for multiple layers using...
    5. Extreme Newbie - making Flash object a link?
      I thought it would be fairly straight forward to do this but I guess not - I want to create a link when a Flash object is clicked within an html...
  3. #2

    Default Re: play flash object then automagically follow link

    You need to put this on the last frame in your FLash document by doing the
    following:

    Create a layer named actions
    click on the last frame
    hit F7 to add a blank keyframe
    Open your actions panel (F9)
    paste this code in the window

    getURL ("index.htm" , "_self");

    rename the page name to were you want to go.

    To apply to a button do this.
    on (release) {
    getURL ("index.htm" , "_self");
    }


    Shane

    SugnaShane 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