Showing video window in the same scene

Hi there
I´m doing a project for university and i have a section
just for videoclips.
I want to have a menu list on the left of the screen that
when the user presses each element in the list a video will show up
in the middle of the screen.
I was thinking in linking the video to another scene like i
was doing already but perhaps instead of giving the user another
level to go i just show the video in the same scene.
How do i do that?
Also, is it possible to have control buttons like stop and
play that stay static in the scene and work in each of the videos
that open in that screen?

Yes, you can do that. Just set one sprite channel to hold the
digital video. Then use your menu to select the video. Set the
member of the digital video sprite to that member.
The play and stop controls can work the same way. They will
play that sprite, regardless of the member that's currently
occupying the sprite.

Similar Messages

  • How to  show additional items in the same window using stacked canvas

    How to show additional items in the same window using stacked canvas.
    My content canvas has 14 items, and I have to include more.
    I want to know how I can use a stacked canvas to show these additional items in the same window, so that I can scroll through horzontally , as if all the items are on one canvas.

    Well, I intially navigate into my content canvas. At this stage the stacked canvas is not visible, then how should I navigate to an item on the stacked canvas to make it visible?

  • Multiple Youtube embedded videos in the same scene

    Hi guys,
    So, I looked for a AS code in order to embed a Youtube video in a scene. Ok. I found it in the Adobe Forum and it's working like a charm (see bellow). However I have to embed 3 more videos in the same scene.
    I copied the code and changed the Youtube ID for the other videos. and of course a conflict came up.
    So, Im wondering what should I do to get rid of this conflict. I supose that I have to change some parameters or names; I guess. (Im newbie in AS)
    Could anyone help me?
    Thanks!
    Security.allowDomain("www.youtube.com");
    Security.allowDomain("youtube.com");
    Security.allowDomain("s.ytimg.com");
    Security.allowDomain("i.ytimg.com");
    Security.loadPolicyFile("http://i.ytimg.com/crossdomain.xml");
    Security.loadPolicyFile("http://www.youtube.com/crossdomain.xml");
    Security.loadPolicyFile("http://s.ytimg.com/crossdomain.xml")
    var player:Object;
    var loader:Loader = new Loader();
    loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);
    loader.load(new URLRequest("http://www.youtube.com/v/XXXXXXX?version=3"));
    function onLoaderInit(event:Event):void {
        addChild(loader);
        loader.content.addEventListener("onReady", onPlayerReady);
        loader.content.addEventListener("onError", onPlayerError);
        loader.content.addEventListener("onStateChange", onPlayerStateChange);
        loader.content.addEventListener("onPlaybackQualityChange",
            onVideoPlaybackQualityChange);
    function onPlayerReady(event:Event):void {
             trace("player ready:", Object(event).data);
        player = loader.content;
        player.setSize(365, 265);
        loader.x= 540,95
        loader.y= 264,50
    function onPlayerError(event:Event):void {
            trace("player error:", Object(event).data);
    function onPlayerStateChange(event:Event):void {
            trace("player state:", Object(event).data);
    function onVideoPlaybackQualityChange(event:Event):void {
            trace("video quality:", Object(event).data);

    you're missing code.
    you need to use 3 different loaders and 3 different players.

  • Multiple windows of the same class with a different argument

    Suppose I have a main window with a list of users. If I click on any one user, the "chat window" should open with the argument as that "user".
    If i click on another, a similar "chat window" should open but with a different user.
    I can't have so many stages because I don't know how many users are there.
    How do I open multiple windows of the same class but with a different argument?

    Here is a sample (opens, at random locations, a bunch of child windows parameterized by color).
    Could be simpler, but hopefully you get the gist.
    import java.util.Random;
    import javafx.application.Application;
    import javafx.geometry.Rectangle2D;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.layout.StackPane;
    import javafx.stage.*;
    public class ColoredStages extends Application {
      final String[] colors = { "firebrick", "palegreen", "azure", "chocolate", "goldenrod" };
      final Random random = new Random(42);
      Rectangle2D screenBounds;
      public static void main(String[] args) { launch(args); }
      @Override public void start(Stage stage) {
        screenBounds = Screen.getPrimary().getVisualBounds();
        stage.setTitle("Primary");
        stage.setScene(new ColoredScene("cornsilk"));
        stage.show();
        for (String color : colors) {
          Stage coloredStage = new ColoredStage(stage, color);
          coloredStage.show();
      class ColoredStage extends Stage {
        ColoredStage(Stage owner, String color) {
          super();
          initOwner(owner);
          initStyle(StageStyle.UTILITY);
          setX(screenBounds.getMinX() + random.nextInt((int) screenBounds.getWidth()));
          setY(screenBounds.getMinY() + random.nextInt((int) screenBounds.getHeight()));
          setScene(new ColoredScene(color));
      class ColoredScene extends Scene {
        ColoredScene(String color) {
          super(new StackPane());
          StackPane layout = (StackPane) getRoot();
          layout.getChildren().addAll(new Label(color));
          layout.setStyle("-fx-font-size: 20px; -fx-padding: 30px; -fx-background-color: " + color);
    }

  • Is there a way to add two windows in the same window?

    is there a way to add two windows in the same window?

    what do you mean by your first use of the word "window"? do you mean a visible frame? a section of the gui that the user doesnt see?
    or perhaps you mean you want to add multiple tabs to a single window, so that switching between tabs shows different windows?

  • Is there a way to create a thumbnail for QuickTime videos on a PC?  All the videos currently have the same QuickTime logo as there thumbnail.

    Is there a way to create a thumbnail for QuickTime videos on a PC?  (Windows XP)  All the the videos currently have the same QuickTime logo as their thumbnail.

    Abdur,
    In the sheet :: table :: cell that is going to receive the data, type an equals sign, then click on the cell that the data will come from and press Return.
    This will require that you navigate to the origin cell by choosing the proper sheet.
    Jerry

  • Play two video files at the same time.

    I am trying to play two video files at the same time. I create two threads, each of which has its own frame, playing button, and builds its own graph to play the file. Now everything seems works except that when the first file is being played and I hit PLAY
    to play the second file, the program plays the second file but the first one is paused; furthermore the control button has no response for the first one. Did I miss anything? Can anyone help me figure out the problem?
    Best,
    Fayin

    You don't need separate threads for 2+ playback pipelines because the filters create worker threads internally and don't block execution on calling thread.
    If you decide to keep separate threads, you will have to follow Michel's advice and have message pumps on those threads.
    You can also have both files in the same graph, in which case you have perfect sync between them (both start playing together in sync), however you cannot pause/stop/run files separately.
    The problem you described is most likely not a DirectShow problem and is rather about generic threading, COM or window messaging.
    http://alax.info/blog/tag/directshow

  • Any Function in a PDF form opens a different window of the same form

    Hello,
    I have a customer who uses forms pulled from our company's SharePoint site. Within the form there is an "Open" button that she clicks on which opens a window within Adobe Pro to the location on our SharePoint site that stores her completed PDF forms. In SharePoint, there is a "copy" option which obviously creates a copy of the selected form into the storage location. The issue is, that when she clicks on copy, another window to the same storage location opens, this time in her web browser. In the past she would click on "copy" and, from within Adobe Pro, the page would simply update and show the copy of the document.
    Additionally, when she clicks on any function or button from within the document a new version of the same document reopens in a different window. By the time she's completed working on a form she has roughly 6 or 7 windows open.
    Any help would be appreciated.

    I forgot to mention that she is running Adobe Acrobat Pro 9.0 on a Windows 7 64Bit machine.

  • HT1451 How do I consolidate album songs in my itunes library? The songs are showing up separately under the same album cover.

    How do I consolidate album songs in my itunes library? The songs are showing up separately under the same album cover.

    Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    BTW, are you really still using Windows 2000?
    tt2

  • Multiple video icons of the same movie in my "Video" app

    my iPad shows 10 icons of the same movie I've purchased from iTunes. To be clear, they don't reside on my iPad (you can see the little white cloud icon in the lower right corner)but are in the cloud. I can't delete any of them (using the traditional method of holding down until they wiggle with the little 'X'). Since they're in the cloud they don't take up any space but its just a real pain. None of my other 3 iPads have this problem and two of them are iOS 7 and the 3rd is iOS 5 (1st generation iPad- so can't update the iOS)
    help...

    Try closing the videos app and reset the iPad. See if that fixes the duplicates issue for you.
    In order to close apps in iOS 7, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • 2 NTSC clips that shot the same scene but are not syncing

    Another newbie question. I've got something strange here. 2 standard NTSC clips about an hour long. Each, started at different times but filmed the same scene from different angles. I am trying to sync them so that I can do a multi-camera edit switching from one to the next back and forth.
    About 2 minutes into the clips, they start unsyncing! They are the same framerate, 29.97. Please help!
    With much appreciation and thanks,
    Jonathan

    I would do do some investigation of the clips using gspot or similar to see if they are what you think they are. Also, I would inspect them (on the time line) carefully to see if each clip is in sync (video/audio), then try to sort out whether they are gradually going more and more out of sync, or whether it happens at one or more points.

  • Is there a way to show two angles at the same time in the final edit rather than switch between them with Multicam?

    Can I show two angles at the same time in the final edit rather than alternate with Multicam?

    Stack two clips on top of each other and reduce the sizes. I think that's what you want.

  • 2 videos playing in the same page

    Hi All
    I've got a new issue, I have a page with 2 animated graphs (as MP4). It seems that there is a conflict to auto play the both video, because one appear with a skin controler (not asked to) + the video stop before finishing to play.
    I've test by deleting the second video... Then it works....
    How do you manage to have 2 videos in the same page ?? do you have the same problem?
    I want to avoid Jpg Sequences as they are much more heavy

    Apple does not allow playing multiple videos at the same time. they are
    affraid your ipad will crash vecause of it's limited memory
    never tried multiple videos after each other.
    (mobil gesendet)
    Am 27.10.2011 10:23 schrieb "minia92" <[email protected]>:
       Re: 2 videos playing in the same page  created by minia92<http://forums.adobe.com/people/minia92>in
    Digital Publishing Suite - View the full discussion<http://forums.adobe.com/message/3992755#3992755>

  • Open new window in the same form

    Hi
    I created a form with 6 records displayed. I have a check box for each record. I would like to select a record and make the check box checked. Once I check a checkbox I would like to automatically open a new window in the same form with further details of the checked record. Could you please help me how I could work on this.

    Dear you have to create relation between the blocks then you can achieve this like:
    1) Create two canvases in your form (canvas1 and canvas2).
    2) Create a window in your form with name Window2 now you have two windows (Window1 and Window2).
    3) now set the property 'Primary Canvas' of each window (Window1 = Canvas1, window2 = Canvas2)
    4) Now create database block of you main table with (CAT, NAME, DEPT) fields and select the Canvas1 in the layout wizard.
    5) Create another database block with same table but this time select only 3 fields (CAT,SAL, DATE) and at the time of creation mention relation between blocks in the Data block wizard (block1.cat = block2.cat) and select the Canvas2 in the layout wizard.
    6) Now create check box field name MASTER_CHBOX in first block and set Database Item property no of this check box item and set the Value When Checked property to Y and N for Value When unChecked.
    7) Create a trigger on CheckBox Item and paste below code in it.
    if :MASTER_CHBOX = 'Y' then
    show_window('WINDOW2');
    go_item('SAL');
    end if;
    Regards.
    Omer

  • Open new window in the same Window

    Im developing a project in JavaFX where I wish to open the new window in the same window
    Here is my code :
    Stage st=(Stage)((Node)t.getSource()).getScene().getWindow();
    I tried this but its giving an exception

    It is possible to specifiy a named window instead of _blank.
    So you could use the following instead:
    web.show_document('html/hello.htm','my_window');
    where my_window can be anything you want to call that browser window.
    However, I have discovered that if you put this in a button trigger, the second time you press the button (if the window is still open) it will not take focus - ie. it remains in the background.
    You can get around this by closing the window if it is already open:
    web.show_document('html/close.htm','my_window');
    web.show_document('html/hello.htm','my_window');
    The close.htm needs to contain some javascript to close the window:
    <html>
    <body onload="closeit()">
    <script>
    function closeit()
    window.opener = top;
    window.close();
    </script>
    </body>
    </html>
    Apparently XP SP2 is a little stricter with javascript and may not allow this. Also, not sure if this works in all browsers, I only tried IE6.

Maybe you are looking for

  • I get this error message when hitting send. I dont know what to do. I

    An error occurred while sending mail. The mail server responded: 5.7.0 Must issue a STARTTLS command first. u5sm5345151wia.17 - gsmtp. Please verify that your email address is correct in your Mail preferences and try again. have tried putting in STAR

  • Restoring and backing up my 2nd hand computer

    I own a macbook pro....i bought it from my uncle who previously owned it. I want to back up all my files and restore it to original factory settings. how do i save all my data and a few of my programs? It is running slow, and i know there is too much

  • How do you change network location type on Server 2012?

    Within Network & Sharing Center there appears to be no options available to change a network type as you could do in Server 2012? Within Network List Manager policies everything is set to "not configured" so this should not be disabling any functiona

  • Endless Signing-In Loop

    When I signed in a few minutes ago, the www asked me to allocate a communities username. So I entered the name I normally use and was told that it existed. This is strange as it is a very unusual combination of letters etc. The first question is:    

  • Photoshop 7: "Scratch Disk Full" with a 1.T HD (too big?)

    I bought a new 64-bit Windows 7 based machine with 8G of RAM and a single internal 1.5T HD (almost empty). The system is also hooked up to an external HD with 1T space (about half full). It uses a RAID system as well. It installed fine. But when I tr