Jump to content

simple script show full screen picture?


Recommended Posts

There are most likely a variety of ways, but the first that springs to mind for me is SplashImageOn(), you will find that in the helpfile, but I think its image type is limited to BMP, GIF, and JPG.

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

Link to comment
Share on other sites

#Include <GUIConstantsEx.au3>
#Include <WindowsConstants.au3>

GUICreate('MyGUI', @DesktopWidth, @DesktopHeight, 0, 0, BitOR($WS_POPUP, $WS_EX_TOPMOST))
GUICtrlCreatePic(@WindowsDir & '\Web\Wallpaper\Ascent.jpg', 0, 0, @DesktopWidth, @DesktopHeight)
GUISetState()

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...