Multiple movies in one window

what method do you recomend for playing 10 small movie clips in the same window? quicktime seems to want a player for each file? that would mean my page would be incredibly long with videos that could all play at the same time.... which I dont want. I would like to have a link that says 'link1' and then the movie 1 plays in the wondow... then I would like another link that says 'link2' and then the second movie plays in the SAME window that the first one did.
please help, thank you

I would not recommend multiple players on the same page because of the likelyhood that mutliple players will eventually be running at the same time.... one player not turned off before second one starts, etc.... MUCH CONFUSION!!
Working example of JW Player with XML Playlist:
http://www.nickbeststrongman.com/liberty_11.html
View source :
<div id="liberty_11_replay">  
  <script type='text/javascript'>
     var so = new SWFObject('video/replay_player.swf','ply','500','710','9','#ffffff');
     so.addParam('allowfullscreen','true');
     so.addParam('allowscriptaccess','always');
     so.addParam('wmode','opaque');
     so.addVariable('playlistsize', '300');
     so.addVariable('playlistfile','video/liberty_11.xml');
     so.addVariable('playlist','bottom');
     so.write('liberty_11_replay');
  </script>
<!-- close replay -->      
</div>
That's ALL... very simple!
options to set display size (in pixels) : '500','710',
option for size of playlist: ('playlistsize', '300');
option for location of playlist...left, right, or bottom: 'playlist','bottom'
this layout uses swfobject 1.5, so in addition to the "replay_player.swf'", you need the swfobject version 1.5 file. All available from the JW Player site.
Best of luck,
Adninjastrator

Similar Messages

  • Can't play multiple movies in one window

    I must be doing something wrong. I wanted to watch a series of video clips (all .mov) in quicktime, but not in 10 different windows. Isn't there a way to highlight 10 clips, and then "play all" and have them open up in one window? For some reason, every time I attempt this, I get 10 quicktime players opening up! I'd just like one at a time, and the ability to skip to through the movies like I would do in iTunes with music. I seem to remember doing this before, but now can't remember how. Any ideas?

    The steps are correct but you've left out the one that adjusts the 2 through 9 movies position as compared to the others.
    The first video would hold a position of 0,0 (upper left). When you add the second video you need to adjust its "offset" to position it next to but not overlapping the first. Since your videos are 100X75 you would set the offset of the second track too 100,0 (100 pixels to the right of the original and 0 pixels different in height). The third would be 200,0 offset.
    On the second row your first file would be 0,75 (75 pixels below the upper video). The second file on the second row would be offset 100,75 and the third would be 200,75.
    The third row would be 0,150 followed by 100,150 and 200,150.
    You could add a slight "border" between each video and give it a color by using the bgcolor="your color" (standard html color codes) and adding that space by adjusting the offset plus your border width in pixels. Hollywood Squares style of video.
    http://homepage.mac.com/kkirkster/03war/ one of my older files that uses multiple track video playback of a QuickTime file. The "TV" set is a track and the video that plays "inside" it is another. The still image movies are also separate tracks and QuickTime .mov files can hold up to 99 tracks.

  • Ability to view multiple files in ONE window

    I can see here that this is not a new topic really but the thing with Acrobat 9 is so frustrating that it is just unbelievable.
    This is another pearl:
    Acrobat 9 "lost" its predecessors ability to view multiple files in ONE window. After opening four only documents I cannot see anything on the screen because the toolbars on each individual window cover all necessary view and nothing is left for the actual document. And sometimes I need to open 20 documents!
    This is ABSOLUTE DISASTER!!!
    I found some explanations from Adobe on the Web that are more than a year old.
    I was sure that by now this unfortunate mishandling of that feature (apparently it was dropped out from A9 deliberately - WHO'S IDEA WAS THAT?) would be somehow restorable.
    Would anyone happen to know if this feature can get restored to how it was working in A7 or 8 (without the need to uninstall A9 and install A8)?

    No, it can't be restored, unless Adobe decides to change the way Acrobat works (which is possible, but not likely).
    By the way, it was Microsoft's idea... Adobe were just following their example on this.
    You can make a feature request here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • How do I view multiple images in one window?

    How do I view multiple images in one window?  I want to compare images side by side, not in tabs.

    Thank you, Barbara.  I found that I had to close the program after I turned on "allow floating documents" and restart, before I was able to go to "float all in windows". 

  • Open multiple websites in one window

    I would like to open multiple websites in one window with multiple tabs using VBA in Excel.  My present code opens each website in a separate window.
    Sub Weather()
    ' Look at weather websites
        Dim URL As String
        Dim ie As Object
        URL = "http://cleardarksky.com/c/AnaheimCAkey.html?1"
        Set ie = CreateObject("InternetExplorer.Application")
        ie.Visible = True
        ie.navigate URL
        Set ie = Nothing
        URL = "http://www.goes.noaa.gov/GSSLOOPS/wcir.html"
        Set ie = CreateObject("InternetExplorer.Application")
        ie.Visible = True
        ie.navigate URL
        Set ie = Nothing
        URL = "http://www.weather.com/weather/hourbyhour/l/92886:4:US"
        Set ie = CreateObject("InternetExplorer.Application")
        ie.Visible = True
        ie.navigate URL
        Set ie = Nothing
        URL = "http://www.wunderground.com/cgi-bin/findweather/getForecast?query=92886"
        Set ie = CreateObject("InternetExplorer.Application")
        ie.Visible = True
        ie.navigate URL
        Set ie = Nothing
    End Sub

    Hi,
    It depends on your popup blocker (built-in or Addon toolbar), tabbed browser settings and IE security settings.
    See general tab of Internet Options, Tabs button.
    you can specify a target parameter in the navigate method to reuse the one IE window and open each site in a new tab (depending on your settings above).
    window.navigate method
    Regards.
    Rob^_^

  • Multiple JScrollPanes in one window

    Hi.
    I've been trying to figure out how to make multiple scrollable text areas in one window. I'm trying to use JEditorPanes for the text areas so that they can display html. Does anyone know how I can make multiple scrollable JEditorPanes appear side by side in one window? I tried just adding many JScrollPanes to the window, but that doesn't seem to work - it only displays the first one.
    Thanks.

    Just to help since no one's said anything for so long.
    The only way I know how may be to use a JSplitPane and add the components to the splitpane. This allows for resizing but I'm not very sure if it will exactly resize the components in them
    Check the Java Demos in your SDK (Swing Set 2) I believe the demo splitpanes should give you enough go ahead to start using split panes effectlvely
    ICE

  • Multiple sheets in one window - Windows compatible application?

    Is there a Windows compatible application that can view a spreadsheet saved from Numbers '09 so the sheets all show up in one window? When I export using the various options in Numbers, then try to open in Excel, I get separate sheets.
    I need to work on a project with some Windows techs, would love to be able to do in Windows what we do on Mac...gang up multiple sheets in a single window.
    Thanks,
    Don

    In Excel you can open multiple windows of the same spreadsheet and thereby have more than one sheet viewable at the same time. For Mac it is the menu item Window/New Window. Then you can arrange them on the screen with Window/Arrange. I do not know the equivalent way to do this in the PC version but I'm sure the feature is there. It is useful for viewing 2-4 sheets at the same time but not much more.

  • Multiple movies in one session in L9?

    From the web page "Flexible video display options let you view synchronized QuickTime movies within the interface or on a separate monitor using output options like Digital Cinema Desktop."
    Does that mean multiple QT movies in one session? I'd kill for that feature, PT has had it for years and it's a huge time saver. Anybody know?

    Nope, looks like still only one movie per session. That's a big disappointment, especially after having to go back to Logic after being able to do it in other apps.

  • Syncying multiple ipods to one windows pc

    Hi,
    What happens when you sync multiple ipod touchs to one windows pc ?
    In particular what happens if all 3 of them have the same app in common (same version of Angry Birds for example) along with many different ones
    Will i have 3 seperate versions/"copies" of the apps they have in common on my pc or will the later one over write the earlier one's?
    Thanks in advance

    This is a good resource:
    How to use multiple iPods with one computer

  • How do I get multiple reports in one window (using windows app)?

    Our users want to be able to launch a "package" of reports.  Meaning, that you can select more than one report to print/preview at once (using .Net 2.0 WinForms).  We are having a tough time getting more than one report to display in one window (or at least, with simple navigation). 
    Any suggestions?

    Hi Christian,
    Download Sample codes from [here|https://boc.sdn.sap.com/codesamples] and have a look to [Dev library|https://boc.sdn.sap.com/developer/library]
    Hope that helps!!
    Regards,
    Shweta

  • Ichat 5.0 multiple chats in one window

    Hi,
    I just updated to snow leopard last week and since my ichat was also updated all of my chats are always in window.
    For example, If I am in a chat and receive a new message from a different buddy, no new window opens. The same window will simply say "now chatting with screen name".
    I changed all the message settings in the preference section but nothing seems to work?
    Any help?

    Hi,
    It is collecting all chats into one window when I do not want it to. I never had this issue before I updated to snow leopard.
    The option to collect chats into one window is not selected. I am not using chax.
    It's just annoying because if somebody new IMs me it automatically goes into that chat with out any notice.
    It also has a new drop down menu which I pointed an arrow towards in the screen shot below.
    I am only using one AIM account btw if that helps. Thanks in advance.
    Here is the screen shot.......

  • Burning multiple movies to one DVD

    I want to burn 8 short movies to one DVD. Do I have to use a DVD RW or is there a way to burn all 8 to a DVD-R?

    You probably only have a single-layer drive so you
    will be limited to a maximum playing time of about
    120 minutes in Best Quality mode. We recommend
    Verbatim or Maxell DVD-R for single-layer discs.
    BTW, iDVD compresses everything to mpg-2 so the
    playing time of your content in minutes is the
    important factor - the size of your original files in
    MB doesn't come into play.
    F Shippey
    thanks for the tip on type of DVD, but my immediate problem is that when I burn to a DVD, I can only do one movie. I am looking for a way to select all of them vs 1 at a time. I tried the advanced & edit DVD contents but I still have the problem that the program will only burn one movie at a time & then because it is DVD-R, I can't add another. I need to be able to put all 8 on at once (or at least one after another). Is there a way to "combine" them for burning?

  • Multiple videos in one window

    Just starting out with captivate and have a query I'm hoping someone can answer - Is it possible to have one video window/player with different buttons next to it, and depending on what button the user selected, it would play a different video? For example, I have three videos, but only want one to play if the user selects it. They could then click a different button to view another video in the same window.
    Thanks

    Hello and welcome to the forum.
    Why should this be on the same slide? You can have three slides, each with all buttons and the three videos and have the buttons navigate to the proper slide where the video will play. For the user this will not be visible, but it is way more simple than trying to achieve this on one slide. It can be done with advanced actions, hide and show, some micro-navigation but since you tell that you are a newbie, I think this will be too advanced for the moment. And I hope you are talking about slide video or inserted FLV, not about separate Captivate movies.
    Lilybiri

  • Play multiple movies in same window area

    Hello,
    I'm sure this question has come up before, but couldn't find it.
    On my html page I want to have a number of links to my Captivate movies down column on left, and then one movie container on the right, so each time a movie link is clicked, the movie will play within the same container on the right.
    I'm using RoboHelp 8 to import and publish my movies. Can import a movie onto my page, but do not see the ability to put a placeholder container on my page so each movie could play within same container.
    Thanks!

    You're on the right path but a little confused.
    You adjust a video track location by using the offset. Default location is 0,0 (upper left corner). You may need your calculator to do the math.
    Another concept that escapes new users of QT Pro is negative values. You can use a negative value (say -320, 0) to position a track 320 pixels from the original upper left corner. This will put two 320X240 movies in a side by side 640X240 player window.
    Don't forget to adjust the track layers. If they are all going to play at the same time they should all have the same layer number.

  • How can I change the Genre of multiple movies at one time?

    I have a ton of movies on my server as I have a Macbook Air with very little HD space. I want to change the Genre for them but would rather not do it one ata a time. Any Ideas? Is it possible to do multiples?

    I have a ton of movies on my server as I have a Macbook Air with very little HD space. I want to change the Genre for them but would rather not do it one ata a time. Any Ideas? Is it possible to do multiples?

Maybe you are looking for