Jump forward button

Hello.
I need your help.
I put jump forward button from library in Adobe Director my sprite "Right arrow" and It's not working. How can make to work so that to go next windows?
-- DESCRIPTION --
on getBehaviorDescription me
  return \
    "JUMP FORWARD BUTTON" & RETURN & RETURN & \
    "Allows users to retrace their steps after having used the Back button." & RETURN & RETURN & \
    "This behavior works in association with the Jump Back Button, which in turn relies on the Jump to Marker Button and/or Jump to Movie Button behaviors." & RETURN & RETURN & \
    "These behaviors store visited markers in a global variable: gNavigationButtonList. " & \
    "While authoring, the Jump Back Button may take you to other (unconnected) movies where you used the same behavior. " & \
    "If you find this disconcerting, type 'clearGlobals' into the Message Window before you run your current movie." & RETURN & RETURN & \
    "If you wish to use the Jump... " & \
    "behaviors both on the Stage and in a MIAW, and you wish to make the content of each entirely separate, you will need to create a copy of the whole set of behaviors, and change all occurrences of the global name in all the behaviors in one set. " & \
    "(Use the Find command, followed by the Replace All button, limiting the search to the current script). " & \
    "Use one set of behaviors for the MIAW and the other for the Stage." & RETURN & RETURN & \
    "PERMITTED MEMBER TYPES:" & RETURN & \
    "Graphic members" & RETURN & RETURN & \
    "PARAMETERS:" & RETURN & \
    "None" & RETURN & RETURN & \
    "ASSOCIATED BEHAVIORS:" & RETURN & \
    "* Jump to Marker Button" & RETURN & \
    "* Jump to Movie Button" & RETURN & \
    "* Jump Back Button" & RETURN & \
    "* Push Button (to alter rollover / mouseDown states)"
end getBehaviorDescription
on getBehaviorTooltip me
  return \
    "Use with graphic members." & RETURN & RETURN & \
    "This behavior can only be used in conjunction with the Jump Back Button behavior, which in turn relies on the Jump to Marker Button and/or Jump to Movie Button behaviors. " & \
    "When the user clicks on a sprite with this behavior the playback head will retrace the steps previously taken in the reverse direction by the Jump Back Button."
end getBehaviorTooltip
-- NOTES FOR DEVELOPERS --
-- The main handler is GoForward, which is triggered by mouseUp.  The Initialize
-- handlers checks if the global gNavigationButtonList variable has the right
-- structure, or creates it if it does not already exist.
-- USE OF 'JUMP BACK/FORWARD BUTTON' BEHAVIORS
-- Information about what markers have already been visited is stored in a
-- global variable: gNavigationButtonList.  As a global, this variable is
-- available to all navigation behaviors, on any sprite in any movie.
-- gNavigationButtonList has the following structure:
--   [#stack [...], #index: [...], #forward: [...]]
-- Each of the subLists has the structure:
--   [[#frame: <integer>, #movie: <movieName>], [...]]
-- #index is not currently exploited.  It provides a list of all markers
-- visited, in the order of their first visit.  It could be used to create
-- a pop-up menu, or to check if a player had visited a particular scene.
-- When the 'Jump Back Button' is activated, the marker nearest to the playback
-- head is appended to the #forward list.  When the 'Forward button'is
-- activated, this last item is copied to a local variable,then removed from
-- the #forward list.  Information concerning the current marker is appended to
-- the #stack, so that users can once again use the 'Jump Back Button'.
-- Going explicitly to "frame x of movie y" triggers the movie's
-- prepareMovie and startMovie handlers.  If the most recently visited
-- marker is in the current movie, the command "go frame x" is used instead.
-- USE OF "PUSH BUTTON" BEHAVIOR
-- The "Push Button" behavior can be used to deal with the rollover and
-- mouseDown states of the "Jump Forward Button".  When this behavior is
-- initialized, it asks each behavior on the same sprite to return a
-- behavior reference, if it happens to be the "Push Button" behavior.  If
-- a reference is returned then the "Jump Forward Button" sets the button's
-- enabled state to indicate whether the #forward list currently contains
-- frames to jump to.
-- TROUBLE-SHOOTING
-- See "Jump Back Button"
-- HISTORY --
-- 10 September 1998: written for the D7 Behaviors Palette by James Newton
--  2 November  1998: all member-swapping removed (use Push Button behavior)
--  9 November  1998: enabled/disabled state added to Push Button interaction
--  5 January   2000: updated to D8 <km>
-- GLOBAL VARIABLE --
global gNavigationButtonList
-- PROPERTY --
property myStateBehavior
property myState
-- EVENT HANDLERS --
on beginSprite me
  Initialize me
end beginSprite
on prepareFrame me
  if myStateBehavior.count() then CheckIfActive me
end prepareFrame
on mouseUp me
  GoForward me
end mouseUp
-- CUSTOM HANDLERS --
on Initialize me --sent by beginSprite 
  -- Error checking: Global variable
  if voidP (gNavigationButtonList) then
    --    -- Initialize gNavigationButtonList
    gNavigationButtonList = [#stack: [], #forward: [], #index: []]
  else
    -- Is it the right global?
    if gNavigationButtonList.ilk <> #propList then
      ErrorAlert (me, #invalidGlobal, gNavigationButtonList)
    else if not gNavigationButtonList.findPos(#stack) then
      ErrorAlert (me, #invalidGlobal, gNavigationButtonList)
    else if not gNavigationButtonList.findPos(#index) then
      ErrorAlert (me, #invalidGlobal, gNavigationButtonList)
    else if not gNavigationButtonList.findPos(#forward) then
      ErrorAlert (me, #invalidGlobal, gNavigationButtonList)
    end if
  end if
  -- End of error checking
  -- Check for "Push Button" behavior on same sprite
  theSprite       = sprite (me.spriteNum)
  theBehaviors    = theSprite.scriptInstanceList
  myState         = -1
  myStateBehavior = []
  call (#PushButton_GetReference, theBehaviors, myStateBehavior)
end Initialize
on CheckIfActive me
  -- Enables/disables the "Push Button" behavior
  forwardCount = count(gNavigationButtonList.forward)
  forwardState = forwardCount <> 0
  if myState   = forwardState then exit
  myState = forwardState
  call (#PushButton_ToggleActive, myStateBehavior, forwardState)
end CheckIfActive
on GoForward me -- sent by mouseUp
  forwardCount = count(gNavigationButtonList.forward)
  if not forwardCount then
    exit
  else
    currentMarker = [#frame: marker (0), #movie: the movieName]
    -- Transfer currentMarker to #stack
    gNavigationButtonList.stack.append(currentMarker)
    -- Go forward
    markerToGoTo = gNavigationButtonList.forward.getLast()
    gNavigationButtonList.forward.deleteAt(forwardCount)
    theFrame = markerToGoTo.frame
    theMovie = markerToGoTo.movie
    if theMovie = the movieName then
      go theFrame
    else
      go theFrame of movie theMovie
    end if
  end if
end GoForward
on substituteStrings(me, parentString, childStringList) --------------
  -- Sent by errorAlert
  -- * Modifies parentString so that the strings which appear as
  --   properties in childStringList are replaced by the values
  --   associated with those properties.
  -- <childStringList> has the format ["^1": "replacement string"]
  i = childStringList.count()
  repeat while i
    tempString = ""
    dummyString  = childStringList.getPropAt(i)
    replacement  = childStringList[i]
    lengthAdjust = dummyString.char.count - 1
    repeat while TRUE
      position = offset(dummyString, parentString)
      if not position then
        parentString = tempString&parentString
        exit repeat
      else
        if position <> 1 then
          tempString = tempString&parentString.char[1..position - 1]
        end if
        tempString = tempString&replacement
        delete parentString.char[1..position + lengthAdjust]
      end if
    end repeat
    i = i - 1
  end repeat
  return parentString
end substituteStrings
-- ERROR CHECKING --
on ErrorAlert me, theError, data -- SENT BY intialize
  -- Determine the behavior's name
  behaviorName = string (me)
  delete word 1 of behaviorName
  delete the last word of behaviorName
  delete the last word of behaviorName
  -- Convert #data to useful value
  case data.ilk of
    #void: data = "<void>"
    #symbol: data = "#"&data
  end case
  case theError of
    #invalidGlobal:         
      tError1 = "BEHAVIOR ERROR: Frame ^0, Sprite ^1"
      tError1 = substituteStrings(me, tError1, ["^0":the frame, "^1": the currentSpriteNum])     
      tError2 = "Behavior ^0 requires a global gNavigationButtonList with " & RETURN & \
    "the following structure:"
      tError2 =  substituteStrings(me, tError2, ["^0":behaviorName])     
      tError3 = "[#stack [...], #index: [...], #forward: [...]]"     
      tError4 = "Current value = ^0"
      tError4 = substituteStrings(me,tError4, ["^0":data])     
      alert(tError1 & RETURN & RETURN & tError2 & RETURN & tError3 & RETURN & RETURN & tError4)     
      halt     
  end case
end ErrorAlert
on isOKToAttach (me, aSpriteType, aSpriteNum)
  tIsOK = 0 
  if aSpriteType = #graphic then
    tIsOK = 1
  end if 
  return(tIsOK) 
end on

Hey there ZeldaFan29,
It sounds like you have some songs that are skipped when using the forward and back buttons on your iPod nano, and that leads me to believe that maybe these songs are skipped over when you are playing your playlist in the iPod as well. I have an article that can help you troubleshoot this issue:
Troubleshooting songs that skip - Apple Support
http://support.apple.com/en-us/HT203351
Thanks for being a part of the Apple Support Communities!
Regards,
Braden

Similar Messages

  • In FF 3.6, adjoining the back forward button, there was a dropdown which allowed me to jump to any page in the history list of the tab. This feature is missing in FF4. Is there any setting to enable it?

    In FF 3.6, adjoining the back forward button (on the left of address bar), there was a dropdown which allowed me to jump back/forward to any page in the history list of the tab. This feature is missing in FF4. Is there any setting to enable it?

    For me, I have the same question, this is a poorly done upgrade and I want to go back to 3.6

  • What happened to the arrow on the back/forward buttons that allow you to jump around in your history?

    In the previous versions of Firefox, there was a small arrow button attached to the back/forward buttons. Clicking this arrow showed a menu of the last 10 sites you visited and allowed you to jump back or forward, without having to press the back button 5 times, for example, to get to the fifth last site you visited. Where did the little arrow go? Can I turn it back on somehow?

    Right click the Back/Forward buttons to get a list of visited sites.
    You can also consider installing this add-on: https://addons.mozilla.org/en-US/firefox/addon/backforward-dropmarker/

  • What happened to the back/previous history button? (next to the back/forward buttons)

    Hi, just upgraded from firefox 3.6 to 4.
    The main problem I have with this version which will make me go back to 3.6 if I can't solve it, is that in this version (4) there is no back history to click on next to the navigational back and forward buttons. I'm not talking about the history menu from the menu bar. I'm talking about the pathway I took to get to the page I'm on, which will be different for every tab that I have open. Sometimes if I've just gone through ebay or paypal checkouts or sent/posted questions on forums etc, I will not be able to just repeatedly press 'back' as it may resend twice, or force me to resend data to re-enter that page, even though I didn't want that page, I wanted the page that was 5 steps back prior. You know what I mean? It used to be great to use that on 3.6 to navigate around and jump about back and fore 8 or 9 pages at a time. The history button in the menu bar doesn't help me, it just tells me the last few pages I've been to overall, and not specific to that tab.
    Also, how can I customise the navigation bar? I want an icon for the refresh button back like the one in 3.6 (big, prominent, and moveable). Same for the home button, it's now stuck at the far side (I used to customise all these buttons to be as together or as central as I could).

    The arrow to open the tab history of the Back and Forward buttons has been removed in Firefox 4.
    Use one of these methods to open the tab history list:
    * Right click on the Back or Forward button
    * Hold down the left mouse button on the enabled Back or Forward button until the list opens
    You can look at this extension:
    * Backward Forward History Dropdown: https://addons.mozilla.org/firefox/addon/backforedrop/
    To move the Stop and Reload buttons to their position to the left of the location bar you can use these steps:
    * Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    * Drag the Reload and Stop buttons to their previous position to the left of the location bar.
    * Set the order to "Reload - Stop" to get a combined "Reload/Stop" button.
    * Set the order to "Stop - Reload" or separate them otherwise to get two distinct buttons.
    * http://www.computertechtips.net/64/make-firefox-4-look-like-ff-3-6/

  • Disable browser back/forward buttons for CRM 7

    In one of the books I've on the subject of the interaction center there was mention of an OSS note to disable the Browser Back/forward button. If you jump around Browser sessions it's common to suddenly jump into a SAP browser session, hit the back button, exit out and then realise the error that you've made.
    I've been searching for this note but have been unsuccessful in finding it so far.
    Does anyone know what this note is?.
    Jason

    They are all ticked in that box except DEFAULT, DEFAULT_CHM and DEFAULT_ICM. If I tick these and Save I receive the message saying 'DO NOT MAKE ANY CHANGES (SAP ENTRY). Now obviously I can just enter past this and create a transport, but is this the right thing to do?.
    In John Burton's book, called 'Maximize Your SAP CRM Interaction Center' there is an OSS note mentioned to resolve this issue, and was why I originally raised this post.
    However, If you suggestion works then I would be happy to try it.
    How does one know which technical profile is being used when log in, and therefore which one to change?.
    Jason

  • Jump Forward

    I have one of the original ipods -- lately I've been wanting to "jump forward" (or backward) while listening to a language lesson on my ipod. i see buttons for "go to the beginning" and "go to the end". I've tried the tap on the wheel approach but it does nothing. circling the wheel around adjusts the volume.
    perhaps this isn't a function that was implemented??
    thanks!
    G4   Mac OS X (10.4.8)  

    I'm not sure about the original iPod model but with newer ones you just click the centre select button once and the bar at the bottom will show a diamond shape. Then use the wheel to scroll quickly back or forward.
    Can you do this on the first gen iPod?

  • IPod Classic's Back & Forward Button Work The Wrong Way

    As I was clicking through the podcast episodes on my new iPod Classic 120GB I had to find out that if I wanted to go forward one episode I had to click the back button because if I clicked the forward button it would take me to the previous episode.
    Also when I finish listening to a podcasts episode it does not jump to the next episode but to the previous episode.
    I looked at the settings of the iPod but didn't find any options that would change the behavior of the iPod. I also thought it might be a sorting issue but I couldn't find anything that would change this either, nor could I find any setting in iTunes.
    Is there a problem with my settings or a problem with the iPod itself?

    turingtest2 wrote:
    In the iPod podcasts are organised in reverse order of release date. Most recent first, then the next oldest etc.
    +"It's not a fault, it's a feature"+
    Well it's a very strange feature!
    Seriously, iTunes and the iPod catch and play Podcasts much better than some other Podcast Catchers and MP3 players I've tried but this is one of the few strange "features" about the Podcast capability of the iPod that let it down. Working on the philosophy that "even if you are ahead, don't stop trying to improve" Apple should at least consider the following:
    1. User facility to reverse the play order of Podcasts
    2. An indication that only part of a Podcast episode has been played (in addition to the existing blue {unplayed} spot)
    3. Indication of the "episode time" in the menu, (so that I know if I have enough time to listen to that episode. One programme can have episodes of very different lengths.)
    ... and yes, I have put these in as suggestions.

  • Re: Fast Forward Button

    Hello Everyone.
    I want to create a Fast Forward Button. Technically, I want to be able to use different speed using my  TV Remote Control to control the Video
    How can I do that?
    Thank you very much

    I don't believe this exists in the DVD spec, right? The only way I see to fast forward (other than jumping to chapters) is to use the DVD player remote.

  • The back and forward buttons on Logitech mouse don't work

    My logitech performance MX back and forward buttons don't work. I tried in safe mode and they still don't work. I tried creating a custom shortcut in logitech setpoint and that didn't work either. I tried using the native mouse driver and not logitech. No luck.
    I really like this functionality. Is there a way to enable these buttons?

    Hi mike,
    i'm not sure if this will help but how about this add-on called "Vimperator". It is easy to use and works like vim. (Try this as an alternate till we figure out the problem) :)
    Hope that helped.

  • With version 5 of Firefox, if I open more than 1 session, most of the time I cannot see anything in the navigation bar and my back and forward buttons do not work.

    I open 1 session of Firefox 5.0.1 and everything seems to work fine. Then I open a second session of Firefox and most of the time the navigation bar does not show the page that I am on and the back and forward buttons do not work. When this happens, the first session always remains working. I am an internet marketer so I have at least 2 or 3 sessions going at any given time.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • On the Computer using Adobe Digitial Edition there is no possibility to jump forward/back using the

    I am using a brand new iPad Air and a MacBook Pro with Retina and  on the Computer using Adobe Digitial Edition there is no possibility to jump forward/back using the arrows in the menu. It is not possible to jump to a certain page as well. The overall speed is incredible slow to switch between pages.

    Exact same problem here - Win 7, ADE V3.0.  -  pages wont turn unless I click on the symbol at the top RHS of screen for Full/Normal size screen after Page Up/down or a click on the contents page.
    Hopefully a bug or something, and not a 'feature' :-)

  • On Firefox 4, how can I put one "new tab" on the "tab bar" (The + sign) and one next to the "back/forward" buttons (as in FF 3.6)?

    On Firefox 4, how can I put one "new tab" on the "tab bar" (The + sign) and one next to the "back/forward" buttons (as in FF 3.6)?
    In my current Firefox, the "new tab" icon/item from the "customize" pop-up window menu of items is placed next to my home, back, forward buttons near the top-left of my header (Button 1 for "new tab"). Then, the tab bar automatically come with a small tab (with a + sign) to the right of your last tab opened (so you click on + and a new tab opens. Button 2 for "new tab"). I like to have this "new tab" button twice (as a + mini tab, and next to my "home icon".
    When I upgraded to Firefox 4, I seemed to be only able to "customize" or use the "new tab" in one place. Either as an icon next to home button, or as a "+ minitab", but NOT both.
    What can I do to put this button in Firefox 4 on BOTH places???
    Your help is really appreciated. I want to upgrade, but I want my buttons on both places...
    I upgraded to FF 4, but downgraded again just because this feature... that's just me of coarse :-)

    *New tab toolbar button: https://addons.mozilla.org/firefox/addon/new-tab-toolbar-button/

  • How do I go back to my old version of Firefox. 4 does not allow me to use two finger mousepad control to expand or contract my screen. Also I don't like the lack of a drop-down arrow next to the back/forward buttons.

    I don't like to have to click and drag to see the drop down history of the back/forward buttons - this requires two fingers or a double tap and hold finger motion. MUCH easier to click and release and take my time to pick the screen I want to go back to, then click on that link with a separate motion.
    I especially don't like that I can no longer expand and contract the screen with two finger motion on my mousepad!!!
    Generally, I don't see any advantage to the new layout - and I have a slight preference to having my tabs closer to the screen rather than above the address bar, since I more frequently click on tabs than on the address bar. If you want to improve the view I would recommend combining the very topmost bar which is part of the window surround with the File Edit etc bar (and please keep File, Edit, View History, etc separated instead of putting them into a dropdown). This will allow the viewer one more line of text on a given webpage, and eliminate the wasted space which is only used to identify the window as FF and provide the close window buttons
    PLEASE help me go back to the old version. It was perfect.

    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • How can I make appear the arrow-button that showed the recent history of a same tab (next to back and forward buttons)?

    for instance, if I searched a word on google, then clicked on a certain page of the results, then inside that page I entered a link, etc if I wanted to "go back" directly to the instance of google searching I could click on this arrow-button and I would be able to choose that exact moment instead of clicking several times on the "back" till I reached the desired past page

    The arrow to open the tab history of the Back and Forward buttons has been removed in Firefox 4 and later.
    Use one of these methods to open the tab history list:
    * Right click on the Back or Forward button
    * Hold down the left mouse button on the enabled Back or Forward button until the list opens
    You can look at this extension:
    * Backward Forward History Dropdown: https://addons.mozilla.org/firefox/addon/backforedrop/

  • How can you put a setting that you can only move to a next slide by clicking on the forward button?

    I am very sorry if there is somewhere already given an answer
    to this but can somebody help me please?
    When I use a space, enter or click in my quiz, they move on
    to the next slide without answering the previous question
    completely. How can I make sure that you can only move on to the
    next slide with clicking on the forward button???

    quiz preferences --> Settings --> Required: Answer
    all

Maybe you are looking for

  • Firefox is frozen and will not close but I want to un-install it. HELP!

    Firefox was open and an error message. Unresponsive script running, continue or stop script? All options were frozen I was not able and still not able to close firefox or any tabs from it, it has been frozen for two days. Is there an easy command lin

  • Indesign CS6 8.0.1 report "missing" links after package

    After reopening indd file from package folder, links palate is fullfill with brocken links. Links have correct new path to links folder in package. Sometimes indd wont package all links. Whats wrong?

  • Eff. exchange rate tx FBL1N

    The value of the ‘Eff. exchange rate’ of the documents does not appear at the report FBL1N in some cases. For example, i run the report with a range of vendors and the value of ‘Eff. exchange rate’ appears, then i try to run the report with only one

  • Connect Crystal reports using SAP BW 3.X

    Hi, Help me in Crystal reports with BW : We are  using  Sap Ecc 6.0 and BW 3.x. I want create BW queries in Crystal Reports. 1. which Crystal reports versions are supported. ( I have crystal reports 6.0 ) 2. Send me the procedure to connect and creat

  • Can I use the instrument I/O assistant express vi to communicate with a USB connected instrument ?

    Can I use the instrument I/O assistant express vi to communicate with a USB connected instrument ? My PC is running Windows 2000 et Labview7 express. where can I get information or examples on the assistant and USB communication ?