Jump to content

Search the Community

Showing results for tags 'Background Picture GUI'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. So I'm trying to create a background picture for my gui, but the picture keeps coming on top of the buttons. Here's the code for my GUI: #NoTrayIcon #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form=C:UsersDad & MomDocumentsAutoit ScriptsHunter Gametype ChangerHunter client changer.kxf $Form1 = GUICreate("Adam's Minecraft Gametype Changer", 630, 346, 392, 196) $MenuItem4 = GUICtrlCreateMenu("&File") $MenuItem6 = GUICtrlCreateMenuItem("Help", $MenuItem4) $MenuItem7 = GUICtrlCreateMenuItem("Exit", $MenuItem4) $MenuItem5 = GUICtrlCreateMenu("&Change Mode") $MenuItem2 = GUICtrlCreateMenuItem("Backup and Restore", $MenuItem5) $MenuItem3 = GUICtrlCreateMenuItem("Server Gametype Changer", $MenuItem5) GUISetBkColor(0x00FF00) $Label1 = GUICtrlCreateLabel("Adam's Minecraft Gametype changer for Hunter", 86, 16, 456, 28) GUICtrlSetFont(-1, 15, 800, 0, "arial") $Button1 = GUICtrlCreateButton("1.1.0", 256, 88, 113, 41) $Button2 = GUICtrlCreateButton("1.0.0 with mods", 256, 144, 113, 41) $Button3 = GUICtrlCreateButton("1.0.0 without mods", 104, 144, 113, 41) $Button4 = GUICtrlCreateButton("1.8.1 Beta", 409, 88, 113, 41) $Label2 = GUICtrlCreateLabel($Version, 125, 48, 42, 20) GUICtrlSetFont(-1, 10, 400, 0, "arial") $Button6 = GUICtrlCreateButton("Start Minecraft", 178, 248, 113, 41) $Button13 = GUICtrlCreateButton("1.2.0", 104, 88, 113, 41) $Group1 = GUICtrlCreateGroup("Gametypes", 96, 72, 433, 121) GUICtrlCreateGroup("", -99, -99, 1, 1) $Button14 = GUICtrlCreateButton("Start Server", 336, 248, 113, 41) $Group2 = GUICtrlCreateGroup("Start Services", 168, 232, 289, 65) GUICtrlCreateGroup("", -99, -99, 1, 1) GUICtrlSetState(-1,$GUI_DISABLE) $Pic1 = GUICtrlCreatePic("C:UsersDad & MomDownloadsminecraft.jpg", 0, 0, 629, 325) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### So how would I make pic1 appear behind the buttons, labels, and groups when I run the program?
×
×
  • Create New...