QT Playlist, or Run movies one afther another in same window maybe?

What am i missing here?
Is it possible that QT can't open and run more movies and play it one after another in the same window?
Let's say if i dont want to use VLC or any other player, or PlayList plug inn's etc... (they are ugly ) and want to go to my movies, select two new movie trailers, want to show it, par example, to friend, and clik "open" ,"open with QT" or cmnd+O, whatsoever...but what happens? I get 2 movie windows on desktop. But i want to watch one (or many as i want) trailers after another, and got less desktop space used... :S
Hm, is this some weird Apple principle, or what?
What solutions do you guys use?
FrontRow looks like goodone but i got PPC G4 iMac, and i wont buy new one just for that!

This is beyond anything I have ever tried. But I think I know what you have in mind, and you should be able to do it using JavaScript. I did it with still images on this page:
http://capital2.capital.edu/admin-staff/dalthoff/adventures/tr2005/ohfair2.html
You would need to give the movie container a name so that you can access it from JavaScript, and you have the added problem of needing to control the QuickTime object from JavaScript. Have a look at the QuickTime JavaScript API; it might be helpful:
http://developer.apple.com/documentation/quicktime/Conceptual/QTScripting_JavaSc ript/index.html
In spite of the code on that gallery page I linked above, I really don't speak JavaScript, and I barely understand how my own code works. But I think JavaScript will allow you to do what you want to do, and you can probably even write a custom controller for the movie right into your web page.
--Dave Althoff, Jr.

Similar Messages

  • Is there a way to move a group of tabs to a new window? I know how to move one tab to a new window, but is there a way to mark a group of tabs and move them to a new window?

    Is there a way to move a group of tabs to a new window? I know how to move one tab to a new window, but is there a way to mark a group of tabs and move them to a new window?

    * Tab Mix Plus: https://addons.mozilla.org/firefox/addon/tab-mix-plus/

  • Run Jobs One After Another

    I know this is possible, I'm not sure how to go about it using Oracle's Scheduler. I simply want to create a special "queue" that I can submit jobs to which will run one after another. After they run, then then are gone. There many be no jobs at anyone time, and then at other times I may submit 10 jobs to the queue. Currently when I submit jobs they all run parrallel, this is not what I want. I guess I don't understand why Oracle calls it a Job Queue when all my jobs run in parrallel and not in a queue as the name implies.
    This is not say that I don't have other jobs which I would not want to send to this "queue". In other cases I would just want to submit the job and let it run right away and not wait on anything.
    I'm currently using the DBMS_JOB package, which I'm pretty sure won't let me do what I want.
    Any help would be greatly appreciated.
    Thanks,
    Joe

    Here is and example that creates Resource Manager objects and
    two job classes that will permit 1 and 3 jobs to
    run in parallel. Note this will work in 11R1 and 10.2.4
    Assumes user user scott/tiger exists.
    --  Remove existing scheduler objects, jobs and classes
    CONNECT /  as sysdba
    BEGIN
       DBMS_SCHEDULER.DROP_JOB_CLASS(
          JOB_CLASS_NAME => 'JOBQ_WIDTH_1_CLASS'
    END;
    BEGIN
       DBMS_SCHEDULER.DROP_JOB_CLASS(
          JOB_CLASS_NAME => 'JOBQ_WIDTH_3_CLASS'
    END;
    BEGIN
      FOR I IN 1..30 LOOP
      BEGIN
        SYS.DBMS_SCHEDULER.DROP_JOB(JOB_NAME => 'SCOTT.SERIAL_' || I, FORCE=>TRUE);
      EXCEPTION WHEN OTHERS THEN NULL;
      END;
    END LOOP;
    END;
    BEGIN
      FOR I IN 1..90 LOOP
      BEGIN
        SYS.DBMS_SCHEDULER.DROP_JOB(JOB_NAME => 'SCOTT.PAR3_' || I, FORCE=>TRUE);
      EXCEPTION WHEN OTHERS THEN NULL;
      END;
    END LOOP;
    END;
    ALTER SYSTEM SET RESOURCE_MANAGER_PLAN='';
    set echo on
    --  Remove previously defined  resource plan, resource plan
    --  directives, and resource consumer groups  for this test
    BEGIN
        -- Prepare the pending area
        DBMS_RESOURCE_MANAGER.CLEAR_PENDING_AREA;
        DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA;
        -- Delete resource plan, its resource plan directives, and
        -- any associated resource groups
        DBMS_RESOURCE_MANAGER.DELETE_PLAN_CASCADE(
           plan => 'JOBQS_PLAN'
        -- Submit the changes
        DBMS_RESOURCE_MANAGER.VALIDATE_PENDING_AREA;
        DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA;
    END;
    -- Create resource manager objects
    BEGIN
       DBMS_RESOURCE_MANAGER.CLEAR_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP (
            CONSUMER_GROUP => 'JOBQ_WIDTH_1_GROUP',  
            COMMENT => 'Consumer group to force jobs to execute in serial'
       DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP (
            CONSUMER_GROUP => 'JOBQ_WIDTH_3_GROUP',  
            COMMENT => 'Consumer group to allow jobs to run in parallel 3'
       DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA();
    END;
    BEGIN
       DBMS_RESOURCE_MANAGER.CLEAR_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.CREATE_PLAN
          ('JOBQS_PLAN', 'PLAN TO SUPPORT JOBQS');
       DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(
          PLAN => 'JOBQS_PLAN',
          GROUP_OR_SUBPLAN => 'JOBQ_WIDTH_1_GROUP',
          COMMENT=>'Associates with job class JOBQ_WIDTH_1_CLASS',
          CPU_P1 => 25,
          PARALLEL_DEGREE_LIMIT_P1 => 1,
          ACTIVE_SESS_POOL_P1 =>1
       DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(
          PLAN => 'JOBQS_PLAN',
          GROUP_OR_SUBPLAN => 'JOBQ_WIDTH_3_GROUP',
          COMMENT=>'Associates with job class JOBQ_WIDTH_3_CLASS',
          CPU_P1 => 75,
          PARALLEL_DEGREE_LIMIT_P1 => 2,
          ACTIVE_SESS_POOL_P1 =>3
       DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE(
          PLAN => 'JOBQS_PLAN',
          GROUP_OR_SUBPLAN => 'OTHER_GROUPS',
          CPU_P1 => 0,
          CPU_P2 => 100,
          COMMENT=>'Required'
       DBMS_RESOURCE_MANAGER.VALIDATE_PENDING_AREA();
       DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA();
    END;
    -- Create scheduler classes
    BEGIN
       DBMS_SCHEDULER.CREATE_JOB_CLASS(
          JOB_CLASS_NAME => 'JOBQ_WIDTH_1_CLASS',
          LOGGING_LEVEL => DBMS_SCHEDULER.LOGGING_FULL,
          LOG_HISTORY => 5,
          RESOURCE_CONSUMER_GROUP => 'JOBQ_WIDTH_1_GROUP',
          COMMENTS => 'Force jobs to run in serial, through plan JOBQ_PLAN and group JOBQ_WIDTH_1_GROUP'
    END;
    BEGIN
       DBMS_SCHEDULER.CREATE_JOB_CLASS(
          JOB_CLASS_NAME => 'JOBQ_WIDTH_3_CLASS',
          LOGGING_LEVEL => DBMS_SCHEDULER.LOGGING_FULL,
          LOG_HISTORY => 5,
          RESOURCE_CONSUMER_GROUP => 'JOBQ_WIDTH_3_GROUP',
          COMMENTS => 'Allow up to 3 jobs in parallel, enforced by plan JOBQ_PLAN and group JOBQ_WIDTH_3_GROUP'
    END;
    connect / as sysdba
    grant execute on jobq_width_1_class to scott;
    grant execute on jobq_width_3_class to scott;
    begin
      dbms_resource_manager_privs.grant_switch_consumer_group('scott','JOBQ_WIDTH_1_GROUP',false);
      dbms_resource_manager_privs.grant_switch_consumer_group('scott','JOBQ_WIDTH_3_GROUP',false);
    end;
    alter system set resource_manager_plan='';
    connect scott/tiger
    begin
      for i in 1..30 loop
      sys.dbms_scheduler.create_job(job_name => 'scott.serial_' || i,
          job_type=>'plsql_block', job_action=>'dbms_lock.sleep(2);',
          job_class=>'jobq_width_1_class',
          enabled=>true);
      end loop;
    end;
    begin
      for i in 1..90 loop
      sys.dbms_scheduler.create_job(job_name => 'scott.par3_' || i,
          job_type=>'plsql_block', job_action=>'dbms_lock.sleep(2);',
          job_class=>'jobq_width_3_class',
          enabled=>true);
      end loop;
    end;
    /-- The par3_90 job should finish about the same time as the serial_30 job since
    -- we run 3 jobs in paralled and serial respectively.
    -- check user_scheduler_job_run_details for after the test completed to verify.

  • Automatically playing multiple movies one after another

    I want to put in my DVD and see a menu of 6 separate movie files (ie, I do NOT want to auto play the first movie).
    But when I do click play on the first movie, I want it to automatically go to the 2nd movie and play that, then the 3rd, etc.
    Is this possible?

    Hi cornfellow
    Welcome to apple discussions. If you happen to be working with chapter markers in either FCP or iMovie (version 6 for example) then iDvd has the ability to generate a play all button. But short of this, there is no way I'm aware of within iDVD alone to link different videos together like there is in DVDSP or Roxio Toast. I believe this has been covered a number of times on apple discussions / forums. For example:
    http://discussions.apple.com/thread.jspa?threadID=1381250
    iDvd does not have a play all check box like Toast does unfortunately (ie, see bottom left corner of image below). As already mentioned above, Toast is likely your best and most affordable option here. But if you have the time and extra money, then I highly recommend learning to use DVDSP also.
    click here
    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software / products that may be mentioned in this topic. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information above at your own discretion.

  • Repeating same song one after another from same album.

    Hey there,
    I'm using my iPhone as a playlist for a Cinema I work in, on the iPhone it has some advertisements, but I want it so that it doesn't repeat another advert if it's just played one.
    How can I do this?
    Kind Regards

    I had a feeling it might have to do with rebuilding the library, so I did a search on that and came up with this link for iPhoto 08, which also works for this current version. Apparently it's not uncommon to corrupt the library when updating iPhoto (doesn't happen with my other programs, though, so maybe iPhoto people need to improve the system better.)
    http://www.simplehelp.net/2008/06/20/how-to-rebuild-a-corrupt-iphoto-08-database /
    After rebuilding it, I actually did have the same dialog box come up twice, deleting two more albums, but that was it, leaving 30 plus albums intact. So in the end, I don't know what exactly the problem was, nor whether what I did solved it. However, if anybody is interested, the rebuild dialog box opens if you hold the "option" and "command" keys down while opening iPhoto. I checked off each box there and rebuilt.

  • More than one SAP systems on same Windows Server 2003 - Oracle 10g

    Hello Experts,
    We have Windows Server 2003 with 32 GB RAM, 2 quadcore CPU, plenty of space. Already running with NW 700 AS Java on Oracle 10g.
    Now we need to install a seperate NW 700 AS Java central instance - so please help me in clarifying following doubts - we don't want to use MCOD.
    1. Do we need to install Oracle 10g software again or we can use the existing Oracle 10g installed files. If yes then will the Oracle Home for both the SAP instances will be same - any steps needs to be done for that.
    2. Any other steps which needs to be taken care before and after the second instance installation.
    3.SAP Note 98252 - speaks about changes in oraInst.loc before the second instance installation - Does it applicable for Windows - Oracle environment also. I am not able to find out this file.
    Listener and Tnsnames file changes mentioned in this note seems to be applicable on windows platform also.
    Pointers to related documentation would be highly appreciated.
    Thanks
    Davinder

    Hello Davinder,
    > 1. Do we need to install Oracle 10g software again or we can use the existing Oracle 10g installed files. If yes then will the Oracle Home for both the SAP instances will be same - any steps needs to be done for that
    Theoretical you can use the same ORACLE_HOME, but i would really recommend to install the database software again in a different ORACLE_HOME. It will make a lot of things easier
    > 2. Any other steps which needs to be taken care before and after the second instance installation.
    The same as by the first installation, but keep in mind of the listener port - you will need to specify a different one.
    > Does it applicable for Windows - Oracle environment also. I am not able to find out this file.
    On windows it is a registry key (for more information please take a look at metalink note #564192.1)
    C:\>reg query HKLM\SOFTWARE\ORACLE /v inst_loc
    Regards
    Stefan

  • How can I make my movies to play one after another automatically?

    I couldn't find the settings to play all my movies one after another.
    Any idea?

    Given the number of threads bemoaning the lack of such features (mostly for music videos) and countless enhancement requests sent here:
    http://www.apple.com/feedback/appletv.html
    ..and the lack of the facility being added in over a year make me think it's unlikely to ever happen but I'd love ot be proved wrong!
    AC

  • Calling 3 different movies by one click, One after another.

    Hi,
    I have 9 small movies. I want to make a combo box and,
    provide 3 options to choose from. But each option should call 3
    movies ONE AFTER ANOTHER WITHOUT USER INTERFERENCE. I want movies
    to stream one by one to save bandwidth and delay. Following is the
    option for calling one movie by choosing one option but I want to
    start 2nd and 3rd movie without user interference. How do I do
    that?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable] private var swfDP:ArrayCollection = new
    ArrayCollection([
    {label:"Choose a Movie", data:""},
    {label:"Movie1", data:"myMovie.swf"},
    {label:"Movie2", data:"myMovie2.swf"},
    {label:"Movie3", data:"myMovie3.swf"}]);
    private function onComboChange(event:Event):void {
    // => Check to see if swf location exists, if it does then
    load the new swf.
    (event.currentTarget.selectedItem.data != "") ?
    loader.load(event.currentTarget.selectedItem.data) : "";
    ]]>
    </mx:Script>
    <mx:ComboBox dataProvider="{swfDP}"
    change="onComboChange(event)" />
    <mx:SWFLoader id="loader" width="800" height="600" x="200"
    y="50" />
    </mx:Application>

    Hi,
    I have 9 small movies. I want to make a combo box and,
    provide 3 options to choose from. But each option should call 3
    movies ONE AFTER ANOTHER WITHOUT USER INTERFERENCE. I want movies
    to stream one by one to save bandwidth and delay. Following is the
    option for calling one movie by choosing one option but I want to
    start 2nd and 3rd movie without user interference. How do I do
    that?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable] private var swfDP:ArrayCollection = new
    ArrayCollection([
    {label:"Choose a Movie", data:""},
    {label:"Movie1", data:"myMovie.swf"},
    {label:"Movie2", data:"myMovie2.swf"},
    {label:"Movie3", data:"myMovie3.swf"}]);
    private function onComboChange(event:Event):void {
    // => Check to see if swf location exists, if it does then
    load the new swf.
    (event.currentTarget.selectedItem.data != "") ?
    loader.load(event.currentTarget.selectedItem.data) : "";
    ]]>
    </mx:Script>
    <mx:ComboBox dataProvider="{swfDP}"
    change="onComboChange(event)" />
    <mx:SWFLoader id="loader" width="800" height="600" x="200"
    y="50" />
    </mx:Application>

  • How do I move several songs with the SAME NAME?? to a windows folder??

    Now for my next question ( i'll also post this as a new question)
    I have 15 versions of the surf song "Apache" but when I try to move the songs via drag and drop in itunes to a windows folder, after the first version, it asks " you already have a file names "apache" would you like to overwrite it?"
    which I don't.
    Even when I rename the file to "apache two" it still says I already have "apache" in that folder. They are all different versions by different groups.
    How can I move them all to the same windows folder??.
    thanks
    Alan

    Most iTunes users don't look directly at the songs in the windows folders, but if you intend to, you better give the files unique names: "Shadows - Apache," "Ventures - Apache," and so on. When you first change the name, you will have to reasssociate the file in iTunes, but then you will get no conflict when you drag them into a folder.

  • Is it possible to run LabVIEW 7.1 and 8.5 under the same Windows installation?

    We have an older version of LabVIEW (7.1) which includes functionality for Event Notifications and the base version of LV8.3, which does not seem to contain this functionality. 
    Is it possible to run both of these from the same Windows Installation?  If not I plan to create a new partition and a new Windows installation just to accomodate the two of them.

    Something else to consider is windows compatibility. If you are running LabVIEW on Vista, I would highly discourage installation of Lv 7.1 and 8.5 on the same machine (even if they were different partitions), since there are some significant issues in terms harware compatibility.I am running windows 7.1 and 8.2.1 on a test station with no problems, but the OS is Win XP. My biggest gripe about the dual software system is when a v 7.1 files is opened up by 8.2.1. There is not a system to prevent it from happening, and once we accidentally save a 7.1 app in 8.2,1, going back to 7.1 is a big headache.  

  • Just bought Photoshop Elements 13...I'm trying to make a slideshow but can't figure out how to alter duration time that the slide is on the screen.  They presently move from one to another way too quickly...also need a different pan and zoom option.  Wher

    Just bought Photoshop Elements 13...I'm trying to make a slideshow but can't figure out how to alter duration time that the slide is on the screen.  They presently move from one to another way too quickly...also need a different pan and zoom option.  Where are all the options I had in PS10?  Also...Can I burn this to a DVD?

    The changes have brought improvements but also drawbacks compared with the old slideshow editor.
    The templates are now fairly fixed but I find the “Classic Dark” gives reasonable results with some panning and you can click the audio button and browse you PC for any track. Unfortunately there are only three speed choices linked to the music track. The improvement for most people is that you can now export to your hard drive at 720p or 1080p and upload to sites like YouTube and Vimeo.

  • Playing movies in Front Row one after another automatically?

    I have a number of short video clips that I can watch with Front Row. However, every time a clip ends, I have to go and click “play” on the next clip and this is annoying. I am wondering if there is a way to make movies play one after another without stopping. Thanks for the help!

    David,
    Thanks for the help. I'm still thinking there must be SOME way to pull this off. It seems like Mac's can do just about anything if you take the time to figure it out. Why wouldn't the people who designed Front Row not add this feature? It doesn't make any sense. There has to be a way. Anybody else have any ideas?

  • Can i save a query in one package and then can i move it into another .....

    can i (in bw 3.5)save a query in one package and then, can i move it into another package? if yes what is the procedure? if no, why? if yes , after moving can i see that query in one package or both? plzzzzzzzz its urgent....

    Hi Neeraja,
    Yes, you can save a query in one package and then move it into another package and transport the query with new package.
    There are two ways...
    1. You can change  the package assignment from one to another with the same request and transport the objects with request assigned to the new package.
    2. You can create a new request and assign the new request to new package and transport the new request with new package assignment.
    For first one, follow below process...
    Changing the assignment:
           1.      Choose  Package in the toolbar of screen area Collected Objects in RSA1 --> Transport Connection.
    The Select Objects for Changing package dialog box appears.
           2.      Select the objects whose package assignment you want to change.
    This procedure is especially useful for changing all collected objects, or a large number of them. For this reason, all indicators are set by default. Remove the indicators for individual objects where necessary.
    Note: You can only use  Details to display the details for an individual object when this is the only object that is selected.
           3.      Choose  Copy. The Change Object Directory Entry dialog box appears.
           4.      Enter the new package.
    For second one, you need to add the query in the transport organiser and assign new request and transport package and then go for transport. But this will create two requests on the same query. So, don't go for this. First step is preferable.
    Hope this helps u...
    Regards,
    KK.

  • Can i save a query in one package and later can i move it into another ....

    can i save a query in one package and then can i move it into another package? if yes what is the procedure? if no, why? if yes , after moving can i see that query in one package or both? plzzzzzzzz  its urgent....

    I'm not sure about Queries, but most (all) development objects can be reassigned. This is done in transaction SE09. Press the icon with the hammer. On next screen mark node which says something like:
    change object entry, or something like it.
    and press execute button.
    On the next screen enter the object R3TR and object name for Queries. In the input field fill in the name of the Query and press F8. On the final screen you can change the package assignment.
    You could possibly also do this via menu of the query screen itself. Must be somewhere in the menu (object entry, object directory, or....).
    If you have done this, you will see the query no longer in the old package, but only in the new one.
    Good luck.

  • How can I decrease my font size in mail?  I have it set to small and yet it is enormous, letters running into one another.  I have rebooted and more.  Something is over riding my setting.  Any suggestions?

    How can I decrease my font size in mail?  I have it set to small and yet it is enormous, letters running into one another.  I have rebooted and more.  Something is over riding my setting.  Any suggestions?

    You haven't mentioned which mail it is,
    If it is G-mail go to settings --> general tab--> default text style , you can change your font size & then save at the bottom of the page

Maybe you are looking for

  • TAX not appearing in PO

    hi Friends, I have created new tax code V1 :15% input tax. condition recored is maintained for that. When I do not enter plant in invoice tab it shows tax details.but i cannot save po without plant. But when i enter plant ,invoice tab is not working.

  • Communicate large number of parameters and variables between Verstand and Labview Model

    We have a dyno setup with a PXI-E chassis running Veristand 2014 and Inertia 2014. In order to enhance capabilities and timing of Veristand, I would like to use Labview models to perform tasks not possible by Veristand and Inertia. An example of this

  • Commit delay when using alerts

    I know that using Headstart it is possible to have the standard FRM messages displaying either in an alert box or in the status bar at the bottom of the screen. I have been involved with two applications that are 100% generated using Headstart and we

  • Finder keeps quiting

    I just updated my system today and after restarting the computer and all updates taking effect, when I turn on my computer Finder keeps quitting unexpectedly.  I can not do anything as the box keeps popping up with finder quiting.  What is wrong?  An

  • Can't launch default browser to view help

    when I go to the help section it states there was an error launching the default browser and than I may need to reinstall the application and the help component.....how do I do this and what caused this to start happening....thanks [ title changed to