Indigo Rose Software

Professional Software Development Tools

 
Page 1 of 2 1 2 LastLast
Results 1 to 15 of 19
  1. #1
    Join Date
    Oct 2004
    Location
    Chicago area
    Posts
    30

    Full screen video questions

    I'm a relatively new user of AutoPlay Pro and have a question regarding full-screen video. I'm trying to make a simple autoplay CD for a client where they load the CD, the movie (an MPEG-1) comes up and plays for its full 15 minute runtime (after you hit the play button). I have been able to get the basics done, including the full screen, but I'm curious if there's an easy way to stop, start, and resume the full screen mode?

    Right now, using the mouse anywhere on the full screen video playback causes the video to go back to the original smaller size. To get it back to full screen, I have to hit play again. I want to be able to stop it, and resume it at full screen.

    Thanks for any advice on this.

    Stuart

  2. #2
    Join Date
    Dec 2003
    Posts
    891

    WMP Plugin

    If you use the windows media player plugin, you can just right click and toggle full screen at any time. I think you have to have the "show context menu" enabled in the media player properties window.
    You can get it here free wmp plugin

  3. #3
    Join Date
    Oct 2004
    Location
    Chicago area
    Posts
    30

    Full screen video

    Okay, I downloaded the plug-in but am still a bit confused.

    When I add a video object, it automatically puts in player controls. When I added the WM plug-in, the controls were not active. Do I have to disable the original video object controls?

  4. #4
    Join Date
    Oct 2004
    Location
    Chicago area
    Posts
    30

    More problems

    Okay, I tried using the sample template that came with the plug-in. I then loaded a video object and made it invisible.

    When the project plays back, the video stutters like crazy. When I use the same exact video clip without the WM plug-in, there is no stuttering.

    The controls on the WM plug-in seem to work fine after I locate the video in the "load file" button, but the stuttering is unacceptable. Also, is there a way to make the video on the CD load automatically without having to make the client look for it in the video folder of the application?

    Thanks.

    Stuart

  5. #5
    Join Date
    Dec 2003
    Posts
    891

    try this

    Here is an apz with a .jpg instead of a video. I don't have a small video handy, so just substitute your vid in its place.
    Be sure to rename the file in the lad action.
    Notice that after you start the vis, you can right click on the player and toggle full screen, even when it is paused or stopped.
    If you are still having stuttering problems, close AMS and re-install the plugin.
    Attached Files

  6. #6
    Join Date
    Oct 2004
    Location
    Chicago area
    Posts
    30

    video full screen

    THANKS! I'll work on it tonight and let you know.

    Stuart

  7. #7
    Join Date
    Dec 2003
    Posts
    891

    auto load

    You only have one vid to show? If so, create another page and put a wmp plugin object on it. put the MediaPlayer.Load function in the PAGE preload action. Then just put a button on the first page to jump to the page with the player object. the vid should load and play automatically.

  8. #8
    Join Date
    Dec 2003
    Posts
    891

    more

    Here is .apz for page preload
    Attached Files

  9. #9
    Join Date
    Oct 2004
    Location
    Chicago area
    Posts
    30

    full screen saga continued

    I think I've got it, but I still can't figure out where and what to put in to get it to play at full screen resolution - at least not in the page preview.

    Once I've got that, I'm set - thanks to your help. I've tried the settings on the plug-in help page, but they're not getting me full screen. My placement of the text/syntax must be wrong.

    Stuart

  10. #10
    Join Date
    Oct 2001
    Location
    Norway
    Posts
    939
    I'm far from being a video expert (that's why I read this thread and downloaded Roboblue's example).

    To toggle full screen: Double-click the video/image.

    (I have WMP ver. 10).

  11. #11
    Join Date
    Dec 2003
    Posts
    891

    full screen start up

    I don't believe there is a way to start the player in full screen. You can put in a dialog box that tells about the double-click/right click toggle. Have it show before loading the vid. Or, you can put a small instruction label on the jump from page, or even put a help button that is on each page that has some instructions for the whole project.

  12. #12
    Join Date
    Dec 2003
    Location
    Location! Location!
    Posts
    6,137
    I wonder if you use Worm's KEYSTROKE.dll and then pass the key combo Alt+Enter (Full-Screen mode) in via such... if that would work.
    Intrigued

  13. #13
    Join Date
    Sep 2002
    Location
    Sol 3
    Posts
    3,160
    IF you are using the MediaPlayer object, have you tried to place code like this in the [On Play] event

    MediaPlayer.SetFullScreen(this, true)

    If you are working on trying to load the movie into an external WMP object, you could use LuaCOM to create and play an external WMP object and set it to full screen. I don't know exactly how, but www.msdn.com has information on the ActiveX objects for WMP

    Tigg
    TJ-Tigger
    "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
    "Draco dormiens nunquam titillandus."
    Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

  14. #14
    Join Date
    Dec 2003
    Posts
    891

    I'll be, works A-OK

    TJ
    I looked thru the mediaplayer plugin info and didn't see this. I didn't scroll down far enough. I have been having problems with my keyboard and finally figured out this afternoon that the batteries were dead.
    Good excuse, huh.

  15. #15
    Join Date
    Dec 2003
    Location
    Location! Location!
    Posts
    6,137
    To add to TJ_TIGGER's post:

    For the Windows Media Player 10

    http://msdn.microsoft.com/library/de...vexcontrol.asp

    PARAM tags (control the player):

    http://msdn.microsoft.com/library/de...ayerobject.asp

    and...

    http://msdn.microsoft.com/library/de.../paramtags.asp

    Sample complete code for say a Web page in a Web Object in AMS 5:

    Code:
    <HTML>
    <HEAD>
    </HEAD>
    <BODY>
    <OBJECT ID="Player" height="0" width="0"
      CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
    </OBJECT>
    <INPUT TYPE="BUTTON" NAME="BtnPlay" VALUE="Play" OnClick="StartMeUp()">
    <INPUT TYPE="BUTTON" NAME="BtnStop" VALUE="Stop" OnClick="ShutMeDown()">
    <SCRIPT>
    <!--
    
    function StartMeUp ()
    {
        Player.URL = "laure.wma";
    }
    
    function ShutMeDown ()
    {
        Player.controls.stop();
    }
    
    -->
    </SCRIPT>
    </BODY>
    </HTML>
    This below is for the Windows Media Player 6.4:

    http://msdn.microsoft.com/library/de...rsion64sdk.asp
    Last edited by Intrigued; 02-16-2005 at 06:37 PM.
    Intrigued

Page 1 of 2 1 2 LastLast

Similar Threads

  1. Video playing full screen on projector when it shouldn't
    By Dododi in forum AutoPlay Media Studio 5.0
    Replies: 10
    Last Post: 10-07-2004, 06:50 PM
  2. full screen video stretched incorrectly
    By Anthony Be in forum AutoPlay Media Studio 5.0
    Replies: 2
    Last Post: 09-08-2004, 12:37 PM
  3. Playing a Video Using Full Screen Mode
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 09-26-2003, 12:40 PM
  4. HOWTO: Make a Media Player Object Go Full Screen
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-23-2002, 11:23 AM
  5. Ok, best way to simulate INTRO video, Full screen?
    By Joe Sloppy in forum AutoPlay Media Studio 4.0
    Replies: 6
    Last Post: 09-21-2002, 01:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts