resize in kiosk mode

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • waynenort
    Forum Member
    • Oct 2008
    • 4

    resize in kiosk mode

    Hi Guys,

    I'm running 7.0

    Is there a way of setting my autoplay to display full screen in kiosk mode. Or is there another way to get a similar result - prefered with no border

    Any suggestions would be great

    Thanks,
    Wayne
  • jackdaniels
    No longer a forum member
    • Mar 2007
    • 533

    #2
    Well if I understand you correctly ; you want to maximize kiosk
    then just choose kiosk from settings and put this code on preload
    Code:
    Window.Maximize(Application.GetWndHandle());

    Comment

    • ShadowUK
      No longer a forum member
      • Oct 2007
      • 1322

      #3
      Originally posted by waynenort View Post
      Hi Guys,

      I'm running 7.0

      Is there a way of setting my autoplay to display full screen in kiosk mode. Or is there another way to get a similar result - prefered with no border

      Any suggestions would be great

      Thanks,
      Wayne
      Set type to Flat, then stick this in On Startup or On Preload.

      Code:
      Window.SetPos(Application.GetWndHandle(), 0, 0);
      Window.SetSize(Application.GetWndHandle(), System.GetDisplayInfo().Width, System.GetDisplayInfo().Height);

      Comment

      • Worm
        Indigo Rose Customer
        • Jul 2002
        • 3971

        #4
        Here's an example project

        Comment

        • waynenort
          Forum Member
          • Oct 2008
          • 4

          #5
          Cheers for the help...
          The one that sort of work with the version I'm running is ShadowUK's
          Code:
          Window.SetPos(Application.GetWndHandle(), 0, 0);
          Window.SetSize(Application.GetWndHandle(), System.GetDisplayInfo().Width, System.GetDisplayInfo().Height);
          But it seems to resize the stage and not the content, being Flash in this case. I don't wan't to boot the Flash doc on startup because the functions that setup won't work how they should with Autoplay.
          Attached are a couple of screen captures to show whats happening.
          I'm sorry if I wasn't that clear, but can the Flash doc also be resized to full screen.

          Thanks Wayne

          Comment

          Working...
          X