PlayAll Button with dual navigation properties

Hi! I've created a music dvd with 5 individual tracks, one for each song. Each track has a video background and a subtitle track which serves as real time lyrics for singing along (a church worship dvd).
I have two menus: the first play setup up menu allows the end user to choose a variety of playback options (e.g. play with/without lyrics and with/without music). One button connects to the playall script and another to the second menu that is an individual song selection menu.
I've used the playall script that's in the book and have also created all the end scripts for the tracks. The way it's setup currently is that when someone chooses a track from the second menu, at the end of the track (or if the remote menu button is used), it returns to the second menu with the proper button highlighted. That's great.
However, I would also like to have this option. If the playall button is selected from the first menu, I'd like the last track to return to the first menu with the playall button highlighted. Also, if the playall button is used, and the user hits the menu button on the remote during playback to return to the first menu. Is this possible?
Peace, BJ

The script for the end jump of the last track if play all is selected should be to menu::button (wherever you want it to go - this is the script at page 512 of the PDF or so?) And you would also have to set the menu command for each track to go to a script that sends playback to the menu you want to go to. Effectively something like this:
Menu Remote Command Script
jump Menu::PlayAll Button (if GPRM 0 =1)//play all selected so goes there
jump scenemenu::Button//scene selected since GPRM 0 != 1 so jump there
You can use stories for this also
For instance alace marker at the beginning (which is done by default) and end of every track So each track has 2 markers, A (start one) and B(last one) [I am using A and B just so make it easier for us to talk about, name them anything]
Each track is T and number (so T1 is track 1, etc.)
On track 1
Story: PLAYALLT1
and put marker T1A in it
on track 2
Story:PLAYALLT2
and put marker T2A in it
on track 3
Story:PLAYALLT3
and put marker T3A in it
Each of the stories play all the material starting at marker A and ending at marker B (material at and after Marker B will not be played)
Then set the end jump for each story to the next
Set a button on a menu to jump to the PLAYALL1 story and it will play all three stories in order.
To access just the individual track just target the track and not the story, or duplicate the Play All Story for each track as a "solo" Story and set the end jump for each story back to the menu you want. (You can also set the menu button jump easily for each story). Take a look below for some info.
http://dvdstepbystep.com/passelections.php
http://dvdstepbystep.com/stories_details.php

Similar Messages

  • Button with dual functionality

    Is there a way to create a button that has a rollover caption?
    I want the user to be able to rollover the button and text to show up over the button, kinda like a tool tip, and the text to disappear when the user rolls off the button.... but the button need to function as a button (need to navigate to a differnt slide).
    I hope this maks sense.
    Thanks in advance!

    Hi there
    Sure thing. Insert a standard button. Then click the Options tab.
    Enable the Hint caption.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Problem with jquery slide show conflict with vertical navigation menu in Firefox & Chrome

    Problem with jquery slide show conflict with vertical navigation menu in Firefox & Chrome. Works in IE. This is my first time trying to post a question - so please be kind. I am also not good with code and am finding css a real challenge after learning to design based on tables. I'm using CS5.
    The "test" page with the slide show is: http://www.reardanwa.com/index-slides.html   The same page without the slide show is http://www.reardanwa.com/
    I realize the images are not ideally sized - I'll fix those once I get the pages to function.  Maybe I need a different slide show? I would prefer a widget that I can modify to required size & postition. Again - I'm not good at building with code from scratch.
    The problem is the naviagation links that are directly next to the slide show do not work in Firefox of Chrome. They do work in IE.
    I've read about using jQuery.noConflict(); code but can't figure out the correct way to use it in my case or whether that's even part of the solution. I know my code is not well organized as I have cobbled together from various sources in an attempt to format the page the way the client wants it. Also, FYI, I will eventually try to make the page work in Surreal CMS.
    I've spent sevaral days over the last several weeks trying to solve sth slide show/navigation conflict - so any specific light you can shed will be much appreciated.
    Thanks in advance.
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Reardan Area Chamber of Commerce</title>
    <meta name="description" content="home page for Reardan Area Chamber of Commerce" />
    <meta name="keywords" content="Reardan WA, chamber of commerce" </>
    <script src="scripts/jquery-1.6.min.js" type="text/javascript"></script>
    <script src="scripts/jquery.cycle.all.js" type="text/javascript">  </script>
    <script type="text/xml">
    </script>
    <style type="text/css">
                                  #slideshow { 
                                      padding: 10px;
                                            margin:0; 
                                  #slideshow-caption{
                                            padding:0;
                                            margin:0;
                                  #slideshow img, #slideshow div { 
                                      padding: 10px;
                                      background-color: #EEE;
                                      margin: 0;
    body {
              font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
              background: #004B8D;
              margin: 0;
              padding: 0;
              color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
              padding: 0;
              margin: 0;
    h1, h2, h3, h4, h5, h6, p {
              margin-top: 0;           /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
               /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    .left
    position:absolute;
    left:0px;
    .center
    margin:auto;
    width:95%;
    .box
              position:relative;
              left:-90px;
              width:950px;
              height:350px;
              border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
              z-index:1000;
    .slide{
        position:absolute;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
              border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
              color: #42413C;
              text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
              color: #6E6C64;
              text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
              text-decoration: none;
    /* ~~this fixed width container surrounds the other divs~~ */
    .container {
              width: 960px;
              min-height:900px;
              padding:5px 0px 0px 0px;
              background: #E8F8FF;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
              background: #E8F8FF;
              padding:10px 5px 0px 5px;
    .sidebar1 {
              float: left;
              width: 225px;
              margin: 60px;
              color: #FFFF0D;
              background: #595FFF;
              border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
              padding: 5px 5px 0px 5px;
        border: 3px solid #F7F723;
        z-index:-1;
    .sidebar2 {
              float: left;
              width: 275px;
              color: #FFFF0D;
              text-align: left;
              background: #595FFF;
              padding-bottom: 10px;
              border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
        border: 3px solid #F7F723;
        z-index:2;
    .sidebar3 {
              float: left;
              width: 275px;
              color: #FFFF0D;
              text-align: left;
              background: #595FFF;
              padding-bottom: 10px;
              border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
        border: 3px solid #F7F723;
        z-index:3;
    .content {
              padding: 0px 0px 0px 0px;
              width: 780px;
              float: left;
              background: #E8F8FF;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
              padding: 0px 15px 5px 10px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    ul.nav {
              list-style: none; /* this removes the list marker */
              border-top: 0px solid #FFFF66; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
              margin-bottom: 50px; /* this creates the space between the navigation on the content below */
              font: Arial Black, Verdana, , Helvetica, sans-serif;
              font-size:1.3em;
              font-weight:bold;
              z-index:2;
    ul.nav li {
              border-bottom: 0px solid #FFFF66; /* this creates the button separation */
              font: 120%/1.4 Arial Black, Verdana, , Helvetica, sans-serif;
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
              padding: 3px 0px 5px 0px;
              display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
              width: 185px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
              text-decoration: none;
              color: #FFFF0D;
              background: #595FFF;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
              background: #595FFF;
              font: 120%/1.4 Arial Black, Verdana, , Helvetica, sans-serif;
              color: #FFFFFF;
    /* ~~ The footer ~~ */
    .footer {
              padding: 10px 0;
              background:  #595FFF;
              color: #FFFF0D;
              position: relative;/* this gives IE6 hasLayout to properly clear */
              clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
              float: right;
              margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
              float: left;
              margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
              clear:both;
              height:0;
              font-size: 1px;
              line-height: 0px;
    -->
    </style>
    </head>
    <body>
    <div class="container">
      <div class="header"><!-- end .header -->
      <a href="#"><img src="images/Chamber-Logo-2.gif" alt="Reardan Chamber Logo" width="187" height="163" hspace="10" vspace="5" align="top" /></a><img src="images/Reardan-Chamber-Title.gif" width="476" height="204" alt="Reardan Area Chamber of Commerce, Dedicated to Preserving and Enhancing Area Businesses" /><p></p>
      <p style="color: #F00">This Site is under construction! Please pardon our dust as we create!</p>
      </div>
      <div class="sidebar1">
        <ul class="nav">
          <li><a href="about.html">About Us</a></li>
          <li><a href="history.html">Reardan History</a></li>
          <li><a href="activities.html">Activities</a></li>
          <li><a href="business.html">Business<br />
            Directory</a></li>
          <li><a href="about.html">Join the<br />
            Chamber</a></li>
           <li><a href="links.html">Links<br />
      <span style="font-size: 85%">Tourism</span><br />
          </a></li>
        </ul>
         <!-- end .sidebar1 --></div>
    <br />
    <br />
    <br />
    <br />
    <div class="box" +"slide">
      <script type="text/javascript">
    // BeginOAWidget_Instance_2559022: #slideshow
                               slideshowAddCaption=true;
    $(window).load(function() {
      $('#slideshow').cycle({
                        after:                              slideshowOnCycleAfter, //the function that is triggered after each transition
                        autostop:                              false,     // true to end slideshow after X transitions (where X == slide count)
                        fx:                                        'blindX',// name of transition effect
                        pause:                              false,     // true to enable pause on hover
                        randomizeEffects:          true,  // valid when multiple effects are used; true to make the effect sequence random
                        speed:                              100,  // speed of the transition (any valid fx speed value)
                        sync:                              true,     // true if in/out transitions should occur simultaneously
                        timeout:                    5000,  // milliseconds between slide transitions (0 to disable auto advance)
                        fit:                              true,
                        height:                       '300px',
                        width:         '525px'   // container width (if the 'fit' option is true, the slides will be set to this width as well)
    function slideshowOnCycleAfter() {
              if (slideshowAddCaption==true){
                                  $('#slideshow-caption').html(this.title);
    // EndOAWidget_Instance_2559022
      </script>
      <div id="slideshow">
        <!--All elements inside this will become slides-->
        <img src="images/100_1537.jpeg" width="600" height="450" title="caption for image1" /> <img src="images/Parade-2011-2.jpg" width="300" height="225" title="caption for image2" /> <img src="images/100_1495.jpeg" width="600" height="450" title="caption for image3" />
        <div title="sample title"> Images for slide show will need to be re-sized to fit box to avoid distortion</div>
        <img src="images/beach4.jpg" width="200" height="200" title="caption for image4" /> <img src="images/beach5.jpg" width="200" height="200" title="caption for image5" /> </div>
      <!--It is safe to delete this if captions are disabled-->
      <div id="slideshow-caption"></div></div>
    <div class="sidebar2" "anotherClass editable"><p align="center"><strong>Chamber News</strong><br />
    Local News item
    <br />
    Another New item</p>
      <p align="center">lots of news this week<br />
        <br />
        <br />
        <br />
      </p>
    </div>
    <div class="sidebar3" "anotherClass editable"><p align="center"><strong>Upcoming Events</strong></p>
      <div align="center">    <a href="activities.html" style="color: #FFFF0D">Community wide yard sales</a><br />
        <br />
        <br />
        <br />
        <br />
      </div>
    </div>
    <div class="content"><br />
    <br />
    </div>
    <div class="footer">
            <p align="center"><span style="font-size: small">Reardan Area Chamber of Commerce</span><br />
              <span style="font-size: x-small">[email protected]  - 509.796.2102</span><br />
            </p>
            <!-- end .footer -->
    </div></body>
    </html>

    If you DO want the slideshow overlaping the navigation try the below css:
    .sidebar1 {
        float: left;
        width: 225px;
        margin: 60px 0px 60px 60px;
        color: #FFFF0D;
        background: #595FFF;
        border-radius: 13px;
        -moz-border-radius: 13px;
        -webkit-border-radius: 13px;
        padding: 5px 5px 0px 5px;
        border: 3px solid #F7F723;
    .box {
    float: left;
    margin-left:-60px;
    width:700px;
    height:350px;
    border-radius: 13px;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;

  • Problem with Absolute Navigation (External Window) and Light Framework Page

    Hi All,
    We are using Light Framework page for the portal devolopment. We have an application including two webdynpro iviews where absolute navigation is used to traverse from first iview to second iview (When user clicks a button on first iview). We are showing the second iview in external window (SHOW_EXTERNAL). When ever i clicks the button to traverse to second iview, i am getting an exception.
    When we are showing it in same window (SHOW_INPLACE), it is working fine. But the iview is appeared in half of the page with scrollbars. It is working fine with default framework page (with both options SHOW_INPLACE and SHOW_EXTERNAL) and dispalyed in original size as mentioned in iview properties.
    Could you please suggest us whether there is any work around for this.
    Thanks,
    Sudheer

    Hi Kathiresan
    I couldn't see the address bar of the window (In which second iview is getting displayed). But i can observe no parameters that i passed from first iview is visible in the view source of the second iview (When SHOW_EXTERNAL is used in absolute navigation). I could see all the parameters in the view source (when SHOW_INPLACE is used for absolute navigation). But i am using the same url for both the options (for SHOW_INPLACE and SHOW_EXTERNAL).
    I doubt about the url being passed when SHOW_EXTERNAL option is used. But when we checked in debug, The correct url is being triggered (Atleast from first iview). Is there any way that could display the second window with address bar. What is making difference  between SHOW_INPLACE and SHOW_EXTERNAL with absolute navigation and light framework page.
    Could someone please suggest.
    Thanks,
    Sudheer.

  • Unwanted keyboard shortcut with dual monitors

    Problem:
    I have a computer setup with dual monitors (desktop extended). When I have a window open, e.g., Microsoft Word 2007, after I type "1" on the keyboard, the Word Window and mouse relocate to the second monitor. When I type "2" the Word window and mouse relocate
    to the main monitor. In the word document, 1 and 2 are typed in the document, but pushing the keys still move the window and mouse to the opposing monitor.
    I checked the keyboard settings within Windows and found that sticky keys and such are not enabled. The keyboard has no such features to enable. I also checked the display setup in display properties and found nothing that would indicate such a setup. Google
    searches return nothing related to my problem.
    What I do know:
    -The rest of the numbers on the keyboard work fine. Pressing 1 and 2 on the number pad at the far right of the keyboard do not transfer the active window to the second monitor. Those keys work fine.
    -The type of window does not matter. Using notepad, word, excel, internet explorer, sticky notes; all of those windows would transfer to the opposing monitor when I push 1 and 2.
    Setup:
    Windows XP
    Dual-Monitor
    Wireless Keyboard and mouse

    This pertains to StarTech DVI to USB adapters.
    There's an icon in your system tray near the clock, either super utility or usb display device. Right click, and select multi display control panel.
    10:20:14 AM
    There's a button to disable as long as you have the newer driver from their website. The old drivers had a bug that caused this button to not work

  • The "Go back one page" button on the Navigation toolbar doesn't work on certain web pages.

    == Issue
    ==
    Firefox is having problems with certain web sites
    == Description
    ==
    The "Go back one page" button on the Navigation toolbar doesn't seem to work on certain pages. On clicking this button, the focus stays on the same page and does not move to the previous page. The previous page does not appear even in the right-click context menu of the Back button. However, I am able to go back one page using Internet Explorer.
    == URL of affected sites
    ==
    http://justdial.com/
    http://southernrailway.gov.in/sr/indexhome.jsp
    == Troubleshooting information
    ==
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Kaspersky URL Advisor
    9.0.0.736
    true
    [email protected]
    Java Console
    6.0.14
    true
    Java Console
    6.0.17
    true
    Java Console
    6.0.20
    true
    McAfee SiteAdvisor
    3.1
    true
    Java Quick Starter
    1.0
    true
    [email protected]
    Download Accelerator Plus (DAP) extension
    9.4.0.5
    true
    Adblock Plus
    1.2
    true
    DownloadHelper
    4.7.3
    true
    FEBE
    6.3.3.2
    true
    {4BBDD651-70CF-4821-84F8-2B918CF89CA3}
    Flagfox
    4.0.6
    true
    {1018e4d6-728f-4b20-ad56-37578a4de76b}
    Lazarus: Form Recovery
    2.0.5
    true
    [email protected]
    WeatherBug
    2.0.0.4
    true
    {3EC9C995-8072-4fc0-953E-4F30620D17F3}
    WOT
    20100503
    true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar
    0
    browser.places.importBookmarksHTML
    false
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage
    browser.startup.homepage_override.mstone
    rv:1.9.2.3
    extensions.lastAppVersion
    3.6.3
    network.cookie.prefsMigrated
    true
    places.last_vacuum
    1276949273
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed
    false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-Office Plugin for Netscape Navigator
    *6.0.12.448
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *RealJukebox Netscape Plugin
    *Winamp Application Detector
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Provides additional functionality on Facebook. See our web site for details.
    *Shockwave Flash 10.0 r22
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *Picasa plugin
    *Yahoo Application State Plugin version 1.0.0.7
    *3.0.40818.0
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object

    Try to open the right-click context menu of the Back button and see if you can go back further.
    The current active entry in that list has a bullet in front of it.
    If you hover an entry in that session history list then it shows the direction by adding an arrow at the left.
    You can left click an item to open it in the current tab or middle-click or Ctrl left-click an entry in that list to open that link in new tab, just like you can with other links.

  • How can i create a button with a dynamic picture?

    How can i create a button with a dynamic picture using
    mcLoader.loadClip
    I did create one with it doesnt seem to be working. It loses
    all its
    functions (eg onPress onRelease)
    Thanks

    I solved thep roblem anyway creating a mc.. then creating
    another MC withing
    the first MC and i change the picture on the second MC. And i
    apply the
    propierities to the first MC , and works
    If i have troubles with mu sistem on the future I will use
    yours!
    Thanks!
    "the fleece" <[email protected]>
    escribi� en el mensaje
    news:e67i88$jlf$[email protected]..
    > the image loading will remove any properties or
    functions the mc had.
    >
    > you need to apply them in the onLoadInit function
    >
    > mclListener.onLoadInit = function(target_mc:MovieClip) {
    > target_mc.onRollOver=blah blah
    > };
    > var image_mcl:MovieClipLoader = new MovieClipLoader();
    > image_mcl.addListener(mclListener);
    > image_mcl.loadClip(blah, blahblah);
    >
    >

  • New IMac 27"with dual internal hard drives

    How do I manage Data on my new IMac 27"with dual internal hard drives?  I have just migrated my data to my new computer.  Since I've done it from a TM backup, it all went to the Analog HD. Ressearching online I've figured I could re-run Migrating assistant and replace different data between the SSD and the Analog.  My problem now is: I want to keep my Music Library (iTunes), my Aperture Library and my documents on the analog, and use the SSD for System, Users and Apps.  Aperture, is easy, because both Aperture and iPhoto can find their way, bt iTunes and My documents are a issue.  Can Anyone help me?

    Install OS X on the SSD:
    Install or Reinstall Lion/Mountain Lion from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
      1. Select Disk Utility from the main menu and click on the Continue button.
      2. After DU loads select your SSD volume (usually Macintosh HD) from the left side list. Click on
          the Erase tab in the DU main window.
      3. Set the format type to Mac OS Extended (Journaled.) Optionally, click on the Security button and set the Zero
            Data option to one-pass. Click on the Erase button and wait until the process has completed.
      4. Quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion/Mountain Lion and click on the Install button. Be sure to change the target disk to your SSD.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    After you boot from the SSD open Users & Groups preferences. Click on the lock and authenticate. CTRL- or RIGHT-click on the user account and select Advanced Options. You will see a Home Dir: field with a Browse button on the right. Click on the button. Navigate to the HDD's Users folder. Select your account folder then click on the Open/Choose button. You must restart immediately.
    Upon the restart your SSD system will now be using your actual Home folder located on the HDD. You can then go about installing your applications or copying them from the HDD to the Applications folder on the SSD (and also from the Utilities folder on the HDD to the one on the SSD.) You will likely need to do some transfers of the Applications Support and Preferences folders found in the main Library folder.

  • How much work is it to create a custom flash player with chapter navigation

    I am bidding on a job to do a simple instructional video that will be about 2 minutes in length.  The client wants me to put the video in a flash player that has some buttons on it that a user can click on to go to a specific step.  The instructions will have, for example, 10 steps, so they want to be enable the view to click on any one of the step numbers to jump to that point in the video.
    I did a google search for flash programmers who would quote me on how much they would charge me to create the flash player after I sent them an encoded video.  The only company that bothered to give me a quote said that it would be 5 to 7 thousand dollars for them to create a flash player with navigation for me.  I was thinking that this would be like a 2 or 3 hour job for someone who knows flash.  Is it really that time-consuming to create a flash player with chapter navigation?
    Am I starting to think that I am in the wrong business if you guys are getting $5k to $7k to set up a relatively simple player to put on a web page.
    I've got the Master collection but have never wanted to take the time to learn flash.  But if I could charge that much for jobs, maybe I better learn!

    I don't really know how to do this but I've seen some things that make me think it isn't that hard to do at all.
    You should be able to install "cue points" when you encode the video in the Media Encoder.
    I'm sure there's a very simple way to make links which would target those cue points.
    5k is absurd.

  • ANN 1-hr webinars: Buttons for PDF Navigation/ Interactive Checklists/ Cross-File Links & Bookmarks

    Free; no fluff, no hype, no nonsense; starting 9am PDT
    • Creating Buttons for PDF Navigation using FrameMaker Hypertext Markers
    Wed, April 16
    https://www3.gotomeeting.com/register/817461086
    • Creating Interactive PDF Checklists with FrameMaker-to-Acrobat TimeSavers + Form Assistant
    Wed, April 23
    https://www3.gotomeeting.com/register/886165534
    • Cross-File Links and Bookmarks in PDFs Authored with FrameMaker
    Thu, May 1
    https://www3.gotomeeting.com/register/911390886
    Shlomo Perets
    MicroType, http://.microtype.com
    FrameMaker/Acrobat/Captivate training & consulting • FM-to-Acrobat TimeSavers/Assistants

    The Bookmark Panel to the left of the pdf is not displaying - I have checked everything (and double checked under preferences to ensure that under Documents > Open Settings > Restore last view settings when reopening documents is Not checked.)
    Have reinstalled Acrobat and still am having issues. The only thing I did was open AcrobatLive and converted a doc to a fillable form - I am getting error messages with that now as well.

  • Buttons with alpha

    I have created some circular navigation buttons with alpha,
    and I am wondering if I can get the alpha to be honoured in two situations.
    1) When I click on the button only the circle part gets highlighted.
    2) If I overlay these buttons over a graphic, the alpha gets honoured as well.
    I am using a png but I can not find a function in acrobat that accepts the
    alpha channel.
    Thanks

    Sure, Thanks for your help Zaxist!
    Boiling it down to the most simple, this is the prob.
    Layer: Symbol with gallery images (images are turned off inside the symbol.. so they should not block anything)
    Layer: Symbol (button A)
    With this layout... Button A doesn't work at all. The button is not detected when mouse is clicked.
    But...
    If i delete the top layer... Button A works.
    If I turn off the top layer from the stage. (top/left display option)... Button A works.
    Using an image, I wish it could be ignored by any mouse/touch events, so it doesn't block any layers beneath it.
    I've been playing with somehow turning off the display on the gallery symbol from another button. So far i've started to dig into css and found 
    <style>
    span
    display:none;
    </style>
    but i dont know how to put that into a button's events like mouseclick or mousedown from another symbol.
    Does that explain things better?

  • Issue with Hierarchy Navigator

    Hi there,
    we have some problem with Hierarchy Navigator (EP 3.6).
    We installed and configured Hierarchy Navigator (EP 3.6) as explained in Oracle documentation.
    We created a Trade Spec "A" >  We run Hierarchy Nav > System shows us one only row with the Trade >> OK
    We linked a Material Output "B" (External Product) and its context in Related Specs Tab > We run Hierarchy Nav > System shows us:
         1 - The message “This hierarchy has recently changed. An accurate hierarchy should be available in approximately 1 minute(s).” 
         2 - Trade “A” and the linked Material “B” 
         3 - Formulation does not appear
    After 1 minutes  System shows us the message: “An accurate hierarchy is now available, Refresh to see the latest hierarchy.”
    We click on Refresh button > System shows us:
         1 - The Trade “A” only again
         2 - Neither Material nor Formulation appear
    Do we missing something?
    I hope my question is clear, if not please do not hesitate to contact me.
    Thank you very much.
    Best regards,
    Stefano

    Sounds like two different situations.   Here are some tips:
    1. Context has to be selected with the material associated to the trade for the formulation to appear in the hierarchy navigator.
    2. In your last example, it sounds like a change was made to the hierarchy.  Any change to the hierarchy will cause that message. For example, if you changed a packaging spec or selected context.  The system will only show one level of the hierarchy while it's being updated.   I would need more information to know of you found a bug but it is possible. Seems like the material should have appeared though.

  • Radio buttons with dropdowns?

    I'm creating a form for my company's HR department, and I need some radio buttons with dependent dropdowns.
    In other words, I'd like (for example) three radio buttons. No dropdowns appear until one of the buttons is selected, and then the appropriate dropdown appears. Is this possible? Or is there a better way to do this? I don't want the unselected dropdowns to be available.
    I have Pro 9 for Windows and Pro X for Mac. I know virtually nothing about scripting, but I know that it can be done.
    Thanks in advance for any help!
    Theresa

    Do I add this code to the group's action, or to individual radio button actions?
    To each individual radio-button.
    Do I make the dropdowns visible or hidden?
    Their visibility will be determined by the state of the radio-buttons. As default you can set them to be hidden, when no radio button is selected.
    Do I put any code in the dropdown properties, or just in the radio button properties?
    Just in the radio buttons.
    And when you say "embed this code at the doc-level," what does that mean?
    Go to Advanced - Document Processing - Document JavaScripts...
    Create a new script, remove the default text that appears in the window and paste the code I provided instead.

  • Advanced Button with Movie Clip and Fading

    Problem: I'm trying to create a bottun that when you roll
    over it it plays a movie clip and also fades in and out on roll
    out. It is similiar to the three main navigating buttons on the
    following site.
    http://www.fjcruiser.ca/
    the buttons with the compasses that appear are the ones I am
    talking about.
    I already know how to make buttons, I just can't figure out
    the actionscripting to load the movie and also fade in and fade out
    according to roll over and roll out.
    Please help. Thank everyone.

    Amazingly, I actually know exactly how to do this. And it
    only requires about 4 lines of code in the _root layer and on the
    button.
    Instead of having the rollover load an external movie, you
    want the have the rollover execute an on(enterFrame) function that
    tells each newly entered frame of your movie to check to make sure
    the mouse is still on the button, and if not, send the movie
    playhead backwards.
    So, put that sampleMovie right on the stage with the button.
    Then write the code in the _root so that says: as long as the mouse
    is over the button, the movie will advance to nextFrame(). When it
    gets to the next frame, again the code checks to see if the mouse
    is on the button, if so, the movie is instruct to go one more next
    frame (which is tweening the fade, right?) again, over and over
    until the stop() at the last frame. But, if while while entering a
    frame, the code finds that the mouse is no longer over the button,
    it does the same thing but this time instructs prevFrame(), and so
    on, going prevFrame (backwards, in other words) as long as the
    mouse is not on the button.
    The result of the above is a gradual fade in and out,
    depending on whether the mouse is hovering. This, as opposed to an
    abrupt disappearing graphic on(rollOut).
    Click the below link for the .fla that demonstrates this
    technique (which, by the way, I learned from Joshua Davis'
    excellent book, "flash to the core". Check it out at Amazon, or
    wherever. Lots of cool tricks).
    click here for
    fade_Movie example

  • Music app in ios5 - no PlayAll button- usability impact

    In the new ios5 music app (which was earlier ipod app), if you want to play songs by selected composer or genre, you cant listen to all the songs in one go. There's no PlayAll button. Is Apple going to fix this bug in an update? Truely speaking, this has forced me to move to alternate music listening options.

    That happens with Genre or songs but ot with composer or Artists. The way around is to copy and create a playlist. But that is a duplication, an why should one do when I can filter by fields. How come Apple can be so dumb??

Maybe you are looking for