Welcome to TalkGraphics.com
Results 1 to 8 of 8

Thread: full screen

  1. #1
    Join Date
    Jul 2008
    Location
    Montevideo, Uruguay
    Posts
    1,345

    Default full screen

    I have a place holder with a html code to reproduce a video *.avi, my default player is windows media.
    If I double click over the video it goes to fullscreen, I want to avoid that.
    I set windows media to eliminate full screen but every time I call this web page and double click over the video it enters to full screen.
    The current html code is:
    <html>
    <title>Prueba1</title>

    <body>



    <embed src="c:\compartido\jlc.avi"
    loop=true
    autostart=true
    showcontrols=0
    hidden=false
    width=640
    height=480>




    </body>

    </html>


    Best regards
    Javier

  2. #2
    Join Date
    Jul 2009
    Location
    Bonnie Scotland
    Posts
    37

    Default Re: full screen

    hi jvila,

    The embedded code has the size of your display avi at 640x480 you might try to reduce the size of the display to 320x240 and test it again then adjust to the size you require.

    Also your code is referring to a file on your local computer hard drive (c:\) have you uploaded your avi to your server ?

    cheers
    mearnswood
    Last edited by mearnswoodtech; 28 July 2009 at 10:21 PM.

  3. #3

    Default Re: full screen

    If I double click over the video it goes to fullscreen, I want to avoid that.
    I don't think it's possible Javier.

    Here's a list of valid PARAMS.

    @mearnswood
    I would think Javier is simply testing the placeholder by using a local file.

  4. #4
    Join Date
    Jul 2008
    Location
    Montevideo, Uruguay
    Posts
    1,345

    Default Re: full screen

    yes, i'm testing it with a place holder.

    Steve, about your comment, I'm not know anything about html, I'll have to learn, but I wonder if it it possible to set this
    SendMouseClickEvents false to eliminate clikcs over video, and double click will be ignored, may be it is enough because the video is unatended and I don't need to click over it, that is to say, it is usefull that any click over the video is ignored.
    Is it understandable?.
    If it works I don't know how to add that command to the html on place holder
    Best regards
    Javier

  5. #5

    Default Re: full screen

    Disabling mouse clicks in the browser window will probably only work when clicking over text and images. The video is playing in Windows Media Player but 'embedded' via a browser plugin, so the controls and right-click context menus are controlled by the plugin and not the browser when the mouse cursor is over the video window.

  6. #6
    Join Date
    Jul 2008
    Location
    Montevideo, Uruguay
    Posts
    1,345

    Default Re: full screen

    Quote Originally Posted by sledger View Post
    Disabling mouse clicks in the browser window will probably only work when clicking over text and images. The video is playing in Windows Media Player but 'embedded' via a browser plugin, so the controls and right-click context menus are controlled by the plugin and not the browser when the mouse cursor is over the video window.
    Ok, but if I want to add that sentence how do I have to do it?.
    Could you send me an example?.
    Best regards
    Javier

  7. #7

    Default Re: full screen

    Sorry Javier, we're crossing.
    The parameter you mentioned would be added to the code:

    <param name="SendMouseClickEvents" value="false">
    But does not work to disable full screen.
    See: http://msdn.microsoft.com/en-us/library/ms930677.aspx

  8. #8
    Join Date
    Jul 2008
    Location
    Montevideo, Uruguay
    Posts
    1,345

    Default Re: full screen

    Quote Originally Posted by sledger View Post
    Sorry Javier, we're crossing.
    The parameter you mentioned would be added to the code:

    <param name="SendMouseClickEvents" value="false">
    But does not work to disable full screen.
    See: http://msdn.microsoft.com/en-us/library/ms930677.aspx
    Ok Steve, thank you very much
    Javier

 

 

Bookmarks

Posting Permissions

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