Jump to marker dilemma

Hi. I'm placing markers within subclips so that I can easily find the clips I need while editing. In my bins, I'd like to be able to double click on a marker and have it jump to that marker within the subclip. However, what is happening is that the clip defined by the marker (between clip marker and next clip marker) opens in the viewer.
I know you can navigate between markers with shift+up arrow or shift+down arrow, but this means I have to jump until I find the marker I want. Is there any way to get directly from the marker description in the bin to the marker position WITHIN the subclip, rather than have it open in the viewer?
Thanks in advance for any help!

Anthony Sergi wrote:
Is there any way to get directly from the marker description in the bin to the marker position WITHIN the subclip, rather than have it open in the viewer?
No way go from the Browser to the Viewer in the way that you're asking. (Unless I'm missing something.)
However, if it's a suitable workaround, you can load the (full, marker-laden) clip in the Viewer and then Control-click (right-click) on the Timecode Field in the upper right corner and select the Marker by name from the shortcut menu. That will jump the Viewer's playhead to the marker.
Or does that not fit the bill?

Similar Messages

  • Behavior: Jump to Marker

    The behavior "Jump to Marker" when applied to a Flash Button
    doesn't work as expected.
    The script is missing a:
    <pre>
    on Click me
    Jump me
    end Click
    </pre>
    On the other hand, the "on mouseUp" is ending with an "end
    prepareFrame" when it should end with a "end mouseUp" and the "on
    resolve" is ending with an "end on" when to keep standards should
    end with a "end resolve". This is cosmetic, i know.
    The original script is in "C:\Program Files\Adobe\Adobe
    Director 11\Configuration\Libs\Controls.cst" (on a PC naturally).
    Cheers,
    LF

    You should not (ever) use just a number for a file name. I'd
    bet that's your
    problem.
    Dave -
    Head Developer
    www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Jump to Marker 5?  Cmd f5 turns on speakables...

    I know I can redefine Logic's key commands, but I rather like the CMD + Fkeys to jump to specific markers. The problem is marker number 5, since CMD f5 toggles the speaking stuff in the Universal Access pane = Totally annoying. Is there a way to turn that off so I can have that key command for Logic? Of course, this only applies to Tiger.

    Universal Access>Mouse>Open Keyboard Preferences...
    I imagine that would be where to do it.

  • Detect pdf application: if false jump to marker

    I am still a beginner with director. I am using buddy api,
    and I am looking for a script that will check to see if a pdf
    reading application is installed, if it is not I need to jump to a
    specific marker, which contains a menu informing the user they need
    to install adobe reader, which I have set up a link to do. Any help
    would be appreciated

    EL_devin wrote:
    > I am still a beginner with director. I am using buddy
    api, and I am
    > looking for a script that will check to see if a pdf
    reading
    > application is installed, if it is not I need to jump to
    a specific
    > marker, which contains a menu informing the user they
    need to install
    > adobe reader, which I have set up a link to do. Any help
    would be
    > appreciated
    if baFindApp("pdf")="" then
    -- no associated app
    end if
    or on a Mac:-
    if baFindApp("CARO")="" then
    -- no associated app
    end if
    Andrew

  • Is there a 'jump to marker'-keyboard command?

    While editing, I would apply Color-settings from one clip to another (cmd-shift-v).
    But often, my 'preference' is way back ahead in my storyline.
    So, my idea was, to add a marker - but I can not find a short-cut, which instantly jumps the playhead to that position.
    Any ideas/suggestions?

    … aaaahhhh, very helpful!
    … I did search the Keyboard settings, but obviously ... me blind.
    just to mention for us GERMAN users:
    we have a different keyboard-scheme, so:
    ctrl-ö and ctrl-ä …
    NOT apostrophe ...
    .... speed things up!
    @Russ:
    yeah, just a while ago, this tutorial of The Dynamic Duo Marc&Steve from rippletraining focussed me to the Time Line Index, and the marvel you can do with it - I completely ignored that tool before - very handy.
    for my needs, ctrl-ö does the job ... Thanks anyhow!

  • 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

  • How do you go to marker  when there is a wait for mouse click between the markers?

    I cant seem to get by the wait for mouse click, when using                          go to (marker)
    I have a game that I have 2 push buttons one is
    on mouseUp me
      go to frame 9
    end
    on mouseUp me
       go to frame  29
    end
    There is a wait to click in between these 2  frames and when I click on the  2nd button to go to frame 29  it stops at the wait to click?
    I have tried  all these below and cant get past the click to wait?????
    go
    go to frame
    go to marker
    _movie.go
    _movie.marker
    _nextMarker=

    Think this issue is resolved but to ensure the full answer is available, here it is.
    First, it's a bad idea to use the Tempo channel at all. You can use a script to do anything that you can do there. I have Lingo alternates to the Tempo channel at:
    http://www.deansdirectortutorials.com/Lingo/tempoLingo.htm
    (think I need to update this page though)
    So - DO NOT USE the Tempo Channel setting - Wait for Mouse Click or Key Press.
    The above setting creates a type of pause that interferes with other interactivity.
    Instead - use a 'Hold on Frame' behavior (from the Library Palette - Navigation category) or it could be written as:
    on exitFrame
    go the frame
    end
    Once you have the above behaviour in you desired frame, you can attach a sprite behaviour to your buttons / links. A good one to use is the ‘Jump to Marker Button’ behaviour in the Controls category of the Library Palette. You can attach this behavior to different sprites and just change the marker setting of the behavior, removing the need to have individual hard-coded scripts for each button.
    Next – DO NOT link to frame numbers. Always link to a marker. You may insert or remove frames. This would cause your incorrect links since the frame number would no longer the right point.
    Next – the following all do the same thing:
    go to frame “markername”
    go to “markername”
    go “markername”
    So, you can leave out ‘frame’ or even ‘to’ as they are not needed. I still use ‘go to’ as it feels more natural to me (just history).
    or you could use:
    _movie.go("dean")
    Don’t use
    go to marker “markername”
    I think that did work at some point but not anymore.
    marker can be used as follows:
    go marker (-1)
    Where -1 is the amount of markers back (could be forward as well).
    Well, that gives the detailed answer to your question.
    Dean

  • Movie playback lags SMPTE counter, self-corrects when advance by frame

    Recently playback of my QT movies has begun to lag the SMPTE counter by about 15 frames. At any given point when playback is stopped, the timecode burn in the QT reads appx 15 frame behind the SMPTE counter. Curiously, when I advance by 1 frame (using key command), or advance by measure, or jump to marker, pickup clock of region, etc., the video instantly snaps forward to the exact SMTPE code in the counter. Lag only occurs during playback. This actually makes the problem worse, because I can't merely change the start time of the movie to compensate.
    I've been using Logic for years without any sync problems. The problem is not file specific — the same lag occurs in Logic sessions I did just weeks ago with no sync problem.
    Any thoughts or insights much appreciated.

    Solved it – hope this helps someone else.
    By moving (and saving elsewhere) my Logic preferences, I narrowed it down a preferences problem. Turned out to be my setting for plugin delay compensation – not an early suspect, given that it is for AUDIO. I had it set to "All", in order to eliminate the several frame shift rendered to my bounces when using the AdaptiveLimiter. After setting it to "audio tracks and instruments", the video lag ceased.
    It will difficult to remember to change that setting every time I bounce a final mix, but at least the problem is solved.

  • A mini review of FiOS TV and their new QIP-7232 DVR

    FiOS TV picture quality is stunning. No compression artifacts at all from what I can tell.
    The 7232 is pretty good but not excellent. I have the 7232 and a Tivo HD XL. IMHO the Tivo is considerably better but I see lots of room for improvement with the 7232.
    Pros and Cons of the 7232.
    Remote
    Nice and responsive. Like that I can turn the TV on and off. Doesn't allow for channel changing just input changing. Not a massive issue but a shame as we need another remote.
    It's probably difficult to update, but I find the remote a bit too complicated and the buttons poorly positioned. Shame more buttons don't light up to help find buttons when the room is dark.
    Guide
    I may have missed it but it would be great if it remembered your favorite settings. I see the favorite button but IMO the guide button should take you there directly.
    Guide Titles
    Almost excellent but unfortunately titles are cropped when they go beyond 30 or so characters. They should allow wrapping to a second line to allow 60 or so characters.
    Extended Guide Titles
    I'm noticing some weird information on some shows. English soccer is particularly bad. For example, today's showing of Arsenal versus Blackburn has a title of The Gunners (Arsenal) rallied for a 2-2 draw with West Ham on March 19. So the title describes Arsenal's previous result. Quite confusing.
    Speed
    Seems speedy enough. I was ready for some lagging but overall impressed.
    Storage
    Fine but IMHO not adequate for a whole house DVR recording in HD. Look forward to seeing the external hard drive capability.
    Bugs
    I'm seeing some issues viewing at the end of recordings. Seems that fast forward and next don't work at the end of the recording. A bit annoying. Hopefully a fix can be made.
    No "wishlist". 
    Not a deal breaker but would be nice to see in a software upgrade. Both the Tivo and DirecTV boxes have this feature and I find it very useful as I forget to check back in every few weeks for new shows.
    No jump to mark/end.
    I hear this is coming with 1.9.  That is great. Look forward to seeing it. I like the idea of pushing and holding the "next" button to skip to the end. 
    Again the PQ is stunning. I'm blown away with it. I got used to DirecTV compressing some channels and it is great to see true uncompressed images. I love it. Very happy customer overall. If Verizon can continue to improve their DVR they are onto a major winner.
    Not sure if this is the right place to ask but I'd be happy to beta test anything.

    Re: your comment about the Guide button. You can easily set the Guide button to display your choice of Favorites. Here is a link to a thread (from two years ago, but still accurate) that has a link to a document I wrote that will tell you how to set it up:
    http://forums.verizon.com/t5/FiOS-TV-Technical-Ass​istance/Exploiting-FiOS-TV-Favorites/td-p/9935
    Hope the above helps. And I think we will all be excited when we get the 1.9 level of the IMG, will have lots of new stuff.
    Justin
    Verizon FiOS TV, Internet, and phone
    QIP6416-P1, IMG 1.8, Build 02.54
    Keller, TX 76248

  • Autorun CD-ROM with flash content on website

    I have two websites with Flash content that I need to put on
    a CD-ROM for a presentation on a computer with spotty internet.
    I've created the autorun part fine, but here's my issue. When the
    html page pulls up in a browser and the link to the Flash content
    is clicked, I get a security warning that " Adobe Flash Player has
    stopped a potentially unsafe operation." Everything is on the CD -
    nothing should be trying to access the internet - and I'm looking
    for a way to override this security warning without having to
    rebuild the flash files. So far, most of the info I've found deals
    with changing something on the user's computer, but is there a fix
    that can reside on the CD (so the user doesn't have to do anything,
    or ever see the warning?)
    Thanks!

    The basics of what you are asking is pretty easy to do in
    Director. To
    make a menu, just import your graphics including buttons.
    Create a
    frame label on the timeline for each video. On each button,
    add the
    behaviour named 'Jump to Marker Button' (it is in the Library
    under
    Behaviours, Controls). Pick the appropriate label for each
    button in
    the resulting popup. Then import your video and place one on
    each
    frame. Put the 'Go Loop' behaviour on each of these frames
    (in the
    frame channel). That behaviour is in the Library under
    Behaviours,
    Navigation.
    Depending upon how your movies are setup, the rest will be
    different
    (i.e. are the Quicktime, avi, wmv, RealVideo, etc?). But the
    Library
    has behaviours for a lot of them, and building custom scripts
    is pretty
    easy as well if you can put forth the effort to learn Lingo.
    It is
    actually among the easiest to learn languages in my opinion.

  • Premiere pro cs6 multicam stress test

    hey everyone.
    been shooting with 6 synced cameras recently, and the whole project setup worked just fine for as i decided to switch from fcp to premiere with this project.
    i edited the first two clips back in fcp just to make sure i get in the groove before diving into a new program which i expected nothing less from than to work properly
    which it did in the beginning.customizable keyboard layout, familiar workspace, everything seemed in place.
    i easily set up my sometimes 16-track multiclips and this is where it got really bumpy.
    so i am writing this to get feedback proving me wrong.
    first of all:
    why is there a multicam monitor that sort of hovers above the timeline and doesn't interact with it?
    sure i can press record and then select my angles, but with more complicated setups this is close to totally unusable. i don't want to react to my images, i want to be ahead of the cut.
    more precisely: if i shuttle frame by frame in the multicam monitor, the record option is inactive, but for certain, more complex edits (16 tracks...) edits i need this like a fish needs water, because my brain doesnt process 16 tracks at once and sometimes i want to make 2 or 3 cuts a second... you get the point.
    this "thing" (multicam monitor) is semi pro, at best.
    so i closed this window and tried it the usual way...
    lets say i have a timeline and it's been edited 10 seconds in, maybe 15 cuts.
    if i now doubleclick my timeline and shuttle over it, i'd expect my source window to
    1) display my 16 tracks simultaneously in the source monitor.
    2) mark the track that i am currently on in the timeline in the source monitor ("jumping" yellow mark around the current track).
    ...it doesn't.
    while in fcp it all runs simultaneously.
    in premiere i have to drag the timeline onto the source monitor, then "gag" it with the program monitor and then...
    if i play it back just the selected monitor (source/program) plays it back.
    why is this?
    first of all: if i gag both monitors after shuttling at different times - out of sync.
    why do i even have to do this?
    so my current workaround is this.
    - multiclip (nested sequence actually) on my timeline.
    - drag it onto the source monitor.
    - gag it with the program monitor (otherwise my timeline cursor doesnt move)
    - select the frame where it want to cut
    - select my timeline again
    - cut
    and start all over.
    if i forget about one of these steps it gets reeeeally messy.
    please tell me that i am doing it all wrong.

    you're right, but i never expected premiere pro to be "the same".
    and i am not gonna complain about the multicam functionality once more, i just like things to work and usually it's human error,
    but in this case PP just seems to lack certain vital functions.
    if i ctrl+click it it gives me a context menu, which i can leave aside by doubleclicking/dragging the timeline to the source monitor and then simply click the desired angle.
    if i ignore my timeline and just rely on the "go to next edit point" button in the multicam monitor, i can not set an edit point without playing back... (if there's a shortcut take this as virtual hug if you tell me)
    then i have to close the MCmonitor in order to trim my cuts, then jump back in the MCmonitor.
    adobe put so much effort in reducing clutter (which i definitely give them the credits for, well done adobe.)..
    but this specific function reduces the working speed immensely, especially when you have to use it 12hours+.
    the program is called "pro" and i just hope adobe takes this term more seriously than the company with the well known fruit logo did.
    don't get me wrong i know what it means to pull off a major rewrite like this and i bow in awe before adobe to create such flawless software, but this is a chance for as thousands of ex-fcp users tend to switch these days. not just for software reasons but also for hardware reasons because on the pro side a macpro is just not enough for certain workloads anymore.
    *twinkle*

  • How do I create a Basic CD-Rom with video content

    Hopefully someone here can help me out with this...
    The production company that I work for would like to be able
    to produce our own simple CD-Roms. We purchased Director 11, but
    all of the tutorials and help sites that I found dealt with game
    development or overcomplicated topics.
    I'd like to learn how to create a CD-Rom that is similar to a
    basic authored DVD... a Title page with buttons that play video
    content. I would also be interested in incorporating Power Point
    Presentations as viewable content on the CD-Rom.
    This is something that is relatively easy to do, right? I
    just haven't been able to figure it out. I have a lot of experience
    with Avid editing software, Photoshop, After Effects, and Encore. I
    also have moderate experience with Illustrator and html coding. I
    feel like this will be really easy once someone can explain it to
    me.

    The basics of what you are asking is pretty easy to do in
    Director. To
    make a menu, just import your graphics including buttons.
    Create a
    frame label on the timeline for each video. On each button,
    add the
    behaviour named 'Jump to Marker Button' (it is in the Library
    under
    Behaviours, Controls). Pick the appropriate label for each
    button in
    the resulting popup. Then import your video and place one on
    each
    frame. Put the 'Go Loop' behaviour on each of these frames
    (in the
    frame channel). That behaviour is in the Library under
    Behaviours,
    Navigation.
    Depending upon how your movies are setup, the rest will be
    different
    (i.e. are the Quicktime, avi, wmv, RealVideo, etc?). But the
    Library
    has behaviours for a lot of them, and building custom scripts
    is pretty
    easy as well if you can put forth the effort to learn Lingo.
    It is
    actually among the easiest to learn languages in my opinion.

  • Flash button bar integration

    Hi there,
    I'm using flash MX2004 to create a navigation bar for a
    project in Director 8.5. I have used the getURL command in Flash to
    transfer information to Director. The buttons are names button1,
    button2 etc. I have put the flash component in Director and tested
    that it is recieving variable button names successfully.
    I want the button bar to change the director movie depending
    on what button is pressed. I am able to have the buttons jump to
    marker but not change movie.
    I'm also trying to implement a roll-over information feature
    ie. when the user rolls the mouse over a Flash button from
    Director, a text box in Director displays information, eg. When the
    user rolls over the "home" button, the information box reads "This
    button takes you to the first page".
    I'm pretty new to Director and randomly scouring the Lingo
    help doesn't seem to be helping me :)
    If anyone has any tips or solutions for my problems it would
    be much appreciated.
    Thanks in advance,
    GL

    It sounds like you want to have a number of different results
    from these
    flash button events. It also sounds like you have a number of
    buttons in
    the flash sprite.
    As duckets said, you can use the getURL() actionscript method
    to send
    information to Director, either to a behavior attached to the
    flash
    sprite or to a movie script.
    Director can interpret a mouse event on the Flash sprite, but
    it can't
    tell which object inside the flash sprite has been effected.
    In other
    words Director knows that the cursor rolled over the sprite,
    just not
    which clip or button was specifically rolled over.
    You will need to set up a strategy for working with these
    flash buttons.
    You will need to decide how much information to send to
    Director and
    when to send that information.
    Actionscript has rollover and rollout events as well as
    mouseDown and
    mouseUp events. So one way to deal with this is to use the
    individual
    rollover and rollout events to send information about the
    text display.
    Then use the mouseup event for navigation control.
    One way to simplify the work on the Flash end is to name each
    button
    instance. Then on the rollover, rollout and mouseup events,
    send the
    name of the button instance to Director. You can then use a
    simple case
    statement to parse out the button's instance name and use
    that name to
    tell Director what to do.
    In flash, name your buttons, it could be as simple as "one",
    "two", etc.
    The write a series of functions for those buttons. Maybe
    something like
    this:
    -- create an array to hold the names of all of the buttons...
    var buttonArray:Array = new Array(one,two,three,four);
    -- create a set of functions for these buttons...
    for (i in buttonArray) {
    buttonArray
    .onRollOver = sendRollOver;
    buttonArray.onRollOut = sendRollOut;
    buttonArray
    .onMouseUp = sendMouseUp;
    -- for the rollover event, send a string that contains a key
    word and
    the button name...
    function sendRollOver() {
    var stringToSend:String = "roll$"+ parseButtonName(this);
    getURL(stringToSend);
    -- do similar for the mouseUp event...
    function sendMouseUp() {
    var stringToSend:String = "up$"+ parseButtonName(this);
    getURL(stringToSend);
    -- for the rollout event just send a simple string...
    function sendRollOut() {
    getURL("rollout");
    -- this function will strip out the simple button instance
    name from its
    full path...
    function parseButtonName(button) {
    var buttonName:String = string(button);
    var nameParts:Array = buttonName.split(".");
    var shortName = nameParts[nameParts.length -1];
    return shortName;
    Now you have a very simple flash movie that doesn't need to
    be edited
    every time something changes in the Director movie.
    in Director make a behavior that will sit on the Flash
    sprite:
    property thisSprite
    on beginSprite me
    thisSprite = me.spriteNum
    end
    on getURL me,data
    if data = "rollout" then
    member("text display member").text = ""
    else
    parseOut(data)
    end if
    end
    on parseOut(thisString)
    oldDelim = the itemDelimiter
    the itemDelimiter = "$"
    if thisString.item[1] = "roll" then
    case (thisString.item[2]) of
    "one": member("text display member").text =
    "first button string"
    "two": member("text display member").text =
    "second button string"
    -- continue as needed
    end case
    if thisString.item[1] = "up" then
    case (thisString.item[2]) of
    -- similar to above
    end case
    end if
    the itemDelimiter = oldDelim
    end
    Rob
    Rob Dillon
    Adobe Community Expert
    http://www.ddg-designs.com
    412-243-9119
    http://www.macromedia.com/software/trial/

  • Interactive audio

    I need some help on writing a script.
    I have a button over video that changes (when activated) the audio stream 2 for the viewer, that part is fine. When the track reaches the second marker of the button over video (end of subtitle) I would like for the audio stream to change back to audio stream 1 by itself by writing a script for that marker. How can I do this? Please help me.
    Powerbook   Mac OS X (10.3.9)  

    Tricky.
    The second marker is actually the end of the first marker, so you could try writing a script to switch audio streams and set it as an end jump for the first marker. I'm not convinced it will work, but the script will look something like this:
    Set System Stream Au(Stream details)
    Jump Trackname::marker
    This might cause a pause when you playback the track without switching streams, since the end jump to the script and back will take a moment. You'll need to try it and see if it works, I'm afraid.

  • Any XML genius able to create markers from an EXCEL file?

    We are working on a documentary with (surprise surprise) lots of interviews.
    Our transcribers create documents in Excel, and I would like to be able to import them into a timeline as markers -- i.e 10:22:00;15 Buddy says 'Why would anyone name their kid Buddy?'
    I'd like to be able to have a timeline created with a marker at 10:22:00;15 called: " Buddy says 'Why would anyone name their kid Buddy?' "
    so that I can jump from marker to marker in the timeline and read what is being said.
    Right now we have the tapes transcribed, and then essentially mark up the source footage with the same information - it seems to me eliminating that step would be of interest to a lot of editors.
    Any thoughts? My technical knowledge of XML is close to zero, but from what I have read it seems like it would be the right tool for the job.
    thanks,
    John Hepworth
    PowerMac g5 dual 2 ghz, 1.5 GB ram   Mac OS X (10.4.3)   FCP 5.0.4

    easily doable by someone with the right know how ...if its not your thing, and if you don't have anyone else in your team with these kind of skills, then you need to hire a programmer.
    everything you/they need to know is linked from here

Maybe you are looking for