Working with Muliptle videos in the same flash file

I am trying to figure out the best way (steps) to put 3
videos into one file and allow the user to select whcih one they
want to play at any point. Can someone please tell me if I have
this basically correct... . (And please correct any terminolgy
mishaps b/c I am still confused when I hear flash movie versus
movie clip vs video vs flash video.)
1. Convert original .wmv files to flash video files (.flv)
2. Create individual swf files that each contain one flv with
it's corresponding playback controls
3. Create video 'player' that contain movie symbol instances
that are controllable from this file.
4. Create user control buttons to allow the user to select a
different active movie symbol
Does this make sense?
Please help before I have to outsource this just to get it
done.
Thanks,
Chris

Thanks for the leading David,
I actually do have specific questions but I am testing the
theory from this
[L=[L=http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=194&threadid=117 2529&enterthread=y">post...]http://<B[/L]]http://www.adobe.com/cfusion/webforums/forum/mes sageview.cfm?catid=194&threadid=1172529&enterthread=y[/L][/L]
I just confirmed that the file works on another server. But
Now I am need of killing the choppy viewing. Any ideas why it would
view like this? [L=http://centerforathletes.com/flash/[/L]
You can see alla the source files at
http://centerforathletes.com/flash/gotoandlearn.fla ( The
name of the individual files are in the actions layer and the files
are all in the same directory.
ANy help is appreciated.
Chris

Similar Messages

  • I purchased Adobe photoshop elements II and Adobe premiere elements II. They are both on one disc. My computer crasded and I had to reload Windows. I only have one serial number and it only works with photoshop II. The same serial number will not work for

    I purchased Adobe photoshop elements II and Adobe premiere elements II. They are both on one disc. My computer crasded and I had to reload Windows. I only have one serial number and it only works with photoshop II. The same serial number will not work for Premiere. I dont have any other serial numbers. What do I do???

    Static_Unit
    I am getting a bit concerned about what is happening in your situation. Yesterday you posted your question in at least two different forums, one of them being here in the Premiere Elements Forum.
    Don't Have Serial Number for Premiere, Only Photoshop?
    Wherever you posted, the reply was to contact Adobe via its Adobe Chat. It is the only one who can sort out this matter for you.
    In the thread cited above I offered to help you with the difficulties that you were having visualizing the Adobe Chat in its web page. I was waiting for your follow up on that in the above thread. Instead, I find your same question in a new Adobe Premiere Elements Forum thread this afternoon with no refer the prior threads or prior recommendations given you.
    I will also mention again...when you buy the Photoshop Elements and Premiere Elements bundled in one packaging and with installation files for each on the same installation disc, each program has its own serial number. The Photoshop Elements serial number does not work for Premiere Elements and vice versa. The serial numbers are on labels on a box which houses the installation disc envelope(s). So, if you purchased both programs and found the Photoshop Elements serial number, then the Premiere Elements serial number should be in a label right underneath the label with the serial number for Photoshop Elements. I recall writing this in your yesterday's thread on this matter.
    The moderator will no doubt be along shortly to close or delete this thread. So, just in case, please bookmark your yesterday's thread cited above so that we can continue this communication which is trying to help you.
    Thanks.
    ATR

  • How do I set up pages and the rest of iWork to work with multiple users on the same iMac?

    I have iWork '09 on my new iMac.  It works fine on my my admin account, but I am trying to set up a user account for my wife on the same computer and I am having problems getting it to allow her to use it on her account. When I open it while logged in under her account it starts with the try/buy screen.  I have already gone into the get info panye and changed the permissions for 'everyone' to read&write.  But it did not work.  Please can anyone help me out.

    When you install you get the opportunity to install it for "All Users".
    It sounds like you have a demo version on your Mac however, you need to delete it:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=105&mforum=iworktips ntrick
    Peter

  • [CS3 JS] Working with two documents of the same name

    I work with sets of documents that use standardized names. I'm trying to write a script that compares two documents from different sets. Because the source and the target documents both have the same name, I've encountered some disturbing behavior that reminds me of the app.activeWindow bug that Dave has written about. (
    Dave Saunders, "Scripting FAQ as Wiki" #14, 15 Oct 2007 12:19 pm)
    To perform the comparison, I have to grab a reference to the same region of text in both documents, as offset from regular landmarks. I was just patting myself on the back for figuring out the "story.characters.itemByRange(begin, end).texts[0]" acrobatics required, when I discovered that my text objects were magically "dissolving" into invalid objects.
    After a lot of debugging and attempts to hack around the problem (i.e. storing the text begin/end indices and not grabbing the text object until the last possible moment), I've narrowed it down to the references to the source and target documents. I've watched the reference variable to the source document *change* to instead reference the target document when I start accessing the target document object. Once this happens, any text objects belonging to the source document become invalid, as if the source document had been closed.
    Is there any way around this? I've thought about temporarily saving the files to different names, but I haven't tried it yet.
    Here's a script that demonstrates the problem (you'll have to find your own same-named documents if you want to run it):
    var source = "/Users/deyk/Desktop/test/source";
    var target = "/Users/deyk/Desktop/test/target";
    function findChapters(in_doc) {
    app.findGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.appliedCharacterStyle = "chapter-num";
    app.findGrepPreferences.findWhat = "\\d+";
    return in_doc.findGrep();
    var sdoc = app.open(File(source+"/01.Genesis.indd"));
    var s_file_start = sdoc.fullName;
    var s_chs = findChapters(sdoc);
    var s_story = s_chs[0].parentStory;
    var s_txt = s_story.characters.itemByRange(s_chs[0].index,
    s_chs[1].index-1).texts[0];
    var tdoc = app.open(File(target+"/01.Genesis.indd"));
    // At this point, sdoc now references tdoc instead.
    // s_txt, s_story, and s_chs become invalid objects.
    var t_file_start = tdoc.fullName;
    var t_chs = findChapters(tdoc);
    var t_story = t_chs[0].parentStory;
    var t_txt = t_story.characters.itemByRange(t_chs[0].index,
    t_chs[1].index-1).texts[0];
    var s_file_end = sdoc.fullName;
    if (s_file_end.name != s_file_start.name) {
    var result = "What a nasty bug!";
    "Finished";

    I've tried saving the document to a temporary name, and it works satisfactorily:
    function openFileAsTemp(a_file) {
    var tmp_folder = Folder.temp.fullName;
    var date = new Date();
    var temp_file = File(tmp_folder+'/'+date.valueOf()+'_'+a_file.name);
    var doc = app.open(a_file);
    doc = doc.save(temp_file);
    return doc;

  • Apex mixes applications working with two windows at the same time

    Hi all, while developing in Apex I have found the following problem:
    Working with two different applications at the same time, the browser goes from one to another indistinctly.
    To reproduce the problem:
    1. Open the same application builder in two different Firefox windows
    2. Open a different application in each window (In my case: application 103 in window1 and application 105 in window2)
    3. Go to shared components in both windows (window1 first)
    - window1 breadcrumbs show: Home > Application Builder > Application 103 > Shared Components
    - window2 breadcrumbs show: Home > Application Builder > Application 105 > Shared Components
    4. Click in any shared component in window1 (Templates, Authentication Schemes...)
    - window1 breadcrumbs show: Home > Application Builder > Application *105* > Shared Components > Templates (Application 105 instead of 103)
    Is it a bug? I have read the known issues [[Here]|http://www.oracle.com/technetwork/developer-tools/apex/downloads/apex402knownissues-189793.html] but it does not appear.
    Related Data:
    Application Express version 4.0.2.00.07
    Firefox 3.6.15
    SO: Windows XP
    The error is not reproduced with IE7. I have not tested any other browser.
    Regards,
    Molina

    If you tried opening up two pages in the same application each of which modifies the same page items, you would notice the same issue.
    This is because, in a session there is only one set of values for page items(or application items) and every parallel call to the same page would update the same bind variables.
    Now the development environment or Apex Builder is also an apex application , and when try and open up the pages as you mentioned, they both access the same Application Builder page and sets/resets any existing values for those variables(and maybe cookies too if they are being used) , hence the 'mixing up'.
    If that didn't convince you, check the URL of both the pages when you load them, they should show the same page number ( f?p=APP_ID:PAGE_NUMBER syntax). Imagine if the same approach was done with one of your application pages, say an edit form opened from a report with multiple records in multiple tabs like what happened with this case: {message:id=9346663}
    So this really isn't a bug in a way, because that is how session states in apex is/was maintained. Ofcourse if they used another kind of development platform for building pages, it may have been avoided, but thats an altogether different point in itself.

  • Working with two videos in the timeline

    So, I just picked up FCE, have been wanting it for a while and thought this would be a good opportunity. I recently shot a wedding for a friend. I used two cameras for the ceremony, one in the back and one in the front.
    Now I would like to line up the two videos and transition back and forth between the two. Is this easily doable? It's a bear to get them synced, do i have to redo that every time I switch?
    Thanks for the help!

    1. Place the video from the camera you'll use the most shots from on track V1.
    2. Place the video from the other camera on track V2.
    3. Double-click the video clip on V2 to load it into the Viewer window.
    4. Click on the Motion tab.
    5. Scale to about 45 or 50%.
    6. Use the Center control to position the clip in one corner - you should now have a picture-in-picture effect.
    7. Find a common point to sync the two clips in the Timeline. A photographer's flash is usually a good point. Place a clip marker in each clip at the sync point you've chosen.
    8. Drag one clip so the two clip markers line up. It may help to zoom in on the Timeline to make sure they're lined up perfectly.
    9. Once you have the two clips in sync, cut out the parts of the upper clip that you don't want to use.
    10. When you're finished with the cutting, select all clips remaining on V2, right-click on one and select Remove Attributes->Basic Motion. All clips on V2 should now be full scale and centered.
    11. While all clips on V2 are selected, drag them to track V1 while holding the Shift key.
    12. Add transitions as needed.
    -DH

  • 3.2.3;Swing app.; Cannot work with two applications at the same time.

    Hi guys,
    I bring this problem here may somebody experienced that.
    I developed two client side applications(applets) with JDev3.2.3.
    Locate them on Apache/Tomcat. There is also a
    Index.html file with two links, so when user clicks on
    each link the associated application will downloaded
    on his/her PC and ready to work. (In index.html I used
    JavaScript function window.open(&#8230;) to load the applications)
    Now please see this scenario:
    1-I ran/loaded both application in two separate
    browsers(IE5.5). And tried to work with them(minimized
    one and work with another). Soon I faced unexpected
    frizzing/locking or very slow running on both
    applications.
    2-Then closed/killed one of them(killed IE). Then
    re-executed same application again. The application
    loaded with the last activated screen . Seems it never
    killed and it was still alive.
    3- The only way to successfully working is one by one.
    Means execute & work with one, then kill that, and
    then execute and work with another. Which is not expected
    in the Windows enviroment.
    To Debug:
    When both applications were running(each on it&#8217;s own
    IE), I opened the Task Manager and saw there was only
    one IEXPLORER.EXE was running, also there was only one
    Java VM (a little bird icon) on right-bottom of the
    screen.
    I believe this causes the problem. Seems they both
    running in the same session. Since I opened two
    applications in two IE I was expected to see two
    IEXPLORER.EXE with two JVM. Am I right? Do you think
    so?
    Any way, Now I am seeking to find the solution. My
    primary mind says probably I should not use
    window.open(..) in index.html to load the
    applications.
    Would appreciate any command on this.

    Same thing with me! My microphone doesn't even register in anything but ventrilo!
    It's dri'ves me NUTS! I bought the card (xfi fatalty) for a really good price, but I almost regret even looking into the soundcard because of this bug. I know Vista is a new operating system..but I figure'd this kind of update should have been noticed MUCH earlier..
    Please creative, can you fix this?
    On another note..is there a sound quality difference between using an x-fi in vista vs xp?
    *not meaning to thread jack*
    finally..
    you should probably close the other thread.. You made two, you know.

  • Working with mutiple windows at the same time

    I'm using a rtm which selects various vi's, I want each of the vi's to up-date with data all the time as they are selected. The problem is that, as each one is selected the others stop receiving data. I have to highlight each one again I have tried to use Globals but this isn't working to well. Any idea's with examples would be handy

    If you call the VIs statically in the same loop when they are selected then data flow will prevent anything from happening until the one already running has stopped.
    If you want them to run in parallell you'll have to call them so that they do not stop the data flow from calling the others...that means calling them in separate loops or dynamically using an invoke node with the wait until finished flag set to false.
    MTO

  • Why would two copies of Lightroom 5 create DNG files with different sizes from the same RAW file? (size is dramatically different, on the order of doubled in size.)

    I have a copy of LIghtroom 5 on my office computer and a personal copy on my home computer. I convert my RAW files to DNG with Lightroom when I import them. Files I shoot for work also get imported on my home workstation. I noticed today that the resulting DNG files for the same RAW image are widely different in size. The ones at home are roughly twice as big as the ones from the office.
    To the best of my knowledge, things are set up the same on both workstations. Any idea what setting might be causing this variation?

    I don't think it's possible to apply lossy compression when importing directly into Lightroom.  I know you can do it with the DNG converter and on export but I don't think this is the case here.
    In which case we need to determine which set-up producing is the "correctly" sized files.  What's the camera and what are the respective file sizes from work and home?

  • How can I work with two images at the same time?

    I have downloaded Photoshop Elements 10 and I can not find the buttons for Minimize or Reset for the image. If I rightclick the miniature those options are grey. If I open two images so I have two miniatures in the holder and then go to Windows and Images the option Show Overlapping is grey but I can show Side by side. Then I can only shut down the images.
    Thanks for help
    Bibbi

      Open the Editor and on the menu bar click:
    Edit à Preferences à General
    Check the box “Allow Floating documents in Full Edit Mode” and click OK.
     

  • Using an InCopy package with different versions of the same InDesign file

    Hi,
    I head up the studio for a London based design agency. We are looking into using InCopy with one of our clients (who will be off-site). In particular this will be working on Annual Reports.
    As an example the issue I am coming up against is the following:
    So far I imagine that we would have our InDesign file and create an InCopy package of all the stories to send to our client. With the content size of these type of documents it may be several days before we receive anything back. In the time between it is inevitable that we will need to carry out design changes. With our current workflow this would involve saving a new version of the InDesign file. When we receive the original InCopy package back from our client we may be working on a version 1..2..3,etc of the InDdesign layout. BUT the InCopy package wants to link to the original file we made the InCopy package from. Is there a way to link the InCopy package into our new InDesign file.
    Many Thanks

    You could try renaming the new file with the old name but I don't think
    that's that's going to be a recipe for success.
    Other than that, you're using a very dangerous workflow. Everything here
    is designed to revolve around a single InDesign file with however many
    assignments or packages there are.
    Bob

  • Since updating my iPhone 4 to iOS 5.1 I'm having compatibility issues with my speakers and my iTunes wifi sync isn't working. Anyone else having the same problems?

    Since updating my iPhone 4 to iOS 5.1 I'm having compatibility issues with my speakers / docking station and my iTunes wifi sync isn't working. Anyone else having the same problems? Both worked fine until the update...

    Okay. I got it working again by setting it up as a new phone instead of just syncing. Then I backed up. All is good today.

  • Many of the times my Iphone 5s shows "No Service" in the specific network area, but if the same sim card is used with other mobiles in the same network area, it shows good network.. i did restore but still not working.. please help me..

    My Iphone 5s shows "No Service" in the specific network area, but if the same sim card is used with other mobiles in the same network area, it shows good network.. i did restore,change sim card, reset all the settings but still not working... please help me..

    Please do not double post a subject. Iphone 5S  I answered your other thread.

  • When using Firefox I can no long get the two finger enlargement to work on my Apple. The same site will enlarge using Safari, so I assume it has to do with Firefox

    When using Firefox I can no long get the two finger enlargement to work on my Apple. The same site will enlarge using Safari, so I assume it has to do with Firefox

    Some gestures have been removed in Firefox 4 and later.
    You can restore the zoom feature by changing the values of the related prefs on the <b>about:config</b> page.
    browser.gesture.pinch.in -> <b>cmd_fullZoomReduce</b>
    browser.gesture.pinch.in.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.out -> <b>cmd_fullZoomEnlarge</b>
    browser.gesture.pinch.out.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.latched -> <b>false</b>
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold(user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • How can i view excel on my iPhone 5s, with my ipad4 and the same ios7 viewing works without  3rd party App

    How can i view excel on my iPhone 5s ?
    with my ipad4 and the same ios7, viewing works without  3rd party App

    Dude or hot-spur,
    Not fishy at all!!!! You really think I would have taken any more of my time to post a bogus rant? We'll no, it is unfortunately all true. I want to hear from anyone who is experiencing such problems not anyone else that wants to put there two cents in. I really don't need anymore hate or negativity. Just people's experiences because I feel like I am the only one having so many problems. Thank you
    Yes, I have had some unfortunate bad luck to have so many problems at the same time, but some of them are just things you cannot do on the new OS.
    Thank you again

Maybe you are looking for

  • Can OSX be installed onto a PC?

    Sorry, kind of long.... but expresses what I'm looking for, trying to do, and why. I need a new computer. We used to have two, and then one caught fire (watercooled, developed leak, coolant dripped onto electronics...). Now we have one remaining comp

  • Spinning Beach Ball

    Recently my early 2011 MacBook Pro would start freezing up, usually with a Spinning Beach Ball.   This can happen a few times an hour that requires rebooting.  Sometimes the cursor would just freeze.   Mr. Linc Davis,  on June 2, 2013, suggested copy

  • Trace Error in HTTP Adapter

    hi, I am getting this trace when i set the Trace Levels in the Runtime. <Trace level="1" type="T">---- </Trace>   <Trace level="1" type="T">---- Plain HTTP Adapter Outbound----</Trace>   <Trace level="1" type="T">---- </Trace> - <Trace level="1" type

  • Sort a table with two columns based on the first

    I have a powershell table with the columns 'Used Perc' and 'ID'. This was formed from the following  $a = @{Expression={[System.Math]::Round(($_.nUsed_Avg/$_.nSize)*100,1)};Label="Used Perc";width=25}, @{Expression={$_.nStatisticalDiskIdentificationI

  • Error when settling the variances to PA by categories in make to order

    I want to settle a production order (Make to order-configurable material) to PA, because It's necessary for us to settle the variances by categories to PA (The PA Transfer structure is customized with the source "Variances on production orders" filli