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

  1. #1

    Default navagating screens

    I'm trying to get a button in slide1 go to a certain frame(61) in a slide 8,
    HOW????

    Thanks...

    big dd Guest

  2. Similar Questions and Discussions

    1. Screens. Where best to put actionScript
      Hello I'm having a play with screens both form and slide based and so far these are my concerns 1. There is very little documentation around...
    2. Working with Screens
      Hello I'm doing a Web site using screens (Flash 2004 Pro) where each slide has a little animation which should play only when the screen is...
    3. Screens HELP
      I don't know what is wrong I have a few screens. On one of them I have a button to which I add a behavour to hide this same screen. It doesn't...
    4. Interface Screens
      Hi i need to know how to build interface screens without having macromedia's windowed background on the screen. I want the desktop to be visible...
    5. screens
      Cees wrote: Don't worry about it. In my experience the X Window System installed by Woody does that about half the time. That's one reason...
  3. #2

    Default Re: navagating screens

    This code may not directly work for you, but it should give you an idea.
    If you run into trouble, the debugger helps a LOT (you can find out
    exactly what structures are in the slide presentation) This function
    should be declared in the onClipEvent(load) section of your root slide's
    actionscript. (default name is presentation, just click on that in the
    slide tree view, then edit the actionscript)

    gotoSlideNum = function(n) {
    currentSlide.gotoAndStop(1); // stop and hide currentSlide
    currentSlide._visible = 0;
    gotoSlide(_childSlides[n]); // go to slide #n
    currentSlide.gotoAndPlay(1); // start at beginning and reveal
    currentSlide._visible = 1;
    }

    J. Alan Atherton 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