Jump to content

Set window to be always on bottom


Recommended Posts

Hello all, this is my first post here. First thing I'd like to say that autoit is awesome, but me and my friends are novice, and we really need to make something. Basically we have a window/layer, and it must be always on bottom, it should be below all other windows and desktop items. Any help?

Link to comment
Share on other sites

Welcome fediaFedia to AutiIT Forum,

Look in the help file for WinSetOnTop.

jfcby

Determined -- Devoted -- Delivered Make your mind up -- to seriously apply yourself -- accomplishing the desired results. **** A soft answer turneth away wrath: but grievous words stir up anger. Proverbs 15:1 KJB ****

Link to comment
Share on other sites

Hello all, this is my first post here. First thing I'd like to say that autoit is awesome, but me and my friends are novice, and we really need to make something. Basically we have a window/layer, and it must be always on bottom, it should be below all other windows and desktop items. Any help?

This was from a post somewhere.

;by pica892

#Include <WinAPI.au3>
Run ("notepad.exe", "", @SW_HIDE)
$handle=WinGetHandle("Untitled - Notepad")
$origParent = DllCall("user32.dll", "int", "SetParent", "hwnd", $handle, "hwnd", WinGetHandle("Program Manager"))
_WinAPI_ShowWindow($handle, @SW_SHOWNOACTIVATE)

;$origParent2 = DllCall("user32.dll", "int", "SetParent", "hwnd", $handle, "hwnd", $origParent[0])
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
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...