Valuater Posted October 5, 2006 Posted October 5, 2006 (edited) here is an example of my effort expandcollapse popup#include <GuiConstants.au3> AutoItSetOption("GUIOnEventMode", 1) Opt("TrayIconDebug", 1) GUICreate("Tester") $Button_1 = GUICtrlCreateButton("Test", 110, 100, 190, 20) GUICtrlSetOnEvent(-1, "GetiT") $Button_2 = GUICtrlCreateButton("Exit", 110, 130, 190, 20, "LeavePrime") GUICtrlSetOnEvent(-1, "LeaveiT") GUISetState() While 1 Sleep(10) WEnd Func GetiT() $XSTitle = "Browse For Folder" $XSPrompt = "Folders" HideiT($XSTitle, $XSPrompt) EndFunc ;==>GetiT Func LeaveiT() Exit EndFunc ;==>LeaveiT Func HideiT($XSTitle, $XSPrompt = "") FileDelete(EnvGet('temp') & 'XSkinit.txt') Local $XSfile = FileOpen(EnvGet("temp") & "XSkinit.au3", 2) If $XSfile = -1 Then MsgBox(0,0,0) AutoItSetOption("WinTitleMatchMode", 4) AutoItSetOption("WinWaitDelay", 145) ; less than 100 and it doesnt work at all Opt("WinDetectHiddenText", 1) Local $XSline1 = '#NoTrayIcon' Local $XSline2 = '$ret = FileSelectFolder("Folders", @ProgramsDir, 2)' Local $XSline3 = 'FileWrite(EnvGet("temp") & "XSkinit.txt", $ret) ' FileWrite($XSfile, $XSline1 & @CRLF & $XSline2 & @CRLF & $XSline3) FileClose($XSfile) $iPID = Run(@AutoItExe & ' /AutoIt3ExecuteScript "' & EnvGet('temp') & 'XSkinit.au3"', '', @SW_HIDE) WinWait($XSTitle) WinSetState( $XSTitle, $XSPrompt, @SW_HIDE ) Sleep(2000) WinSetState( $XSTitle, $XSPrompt, @SW_SHOW ) Sleep(2000) WinClose( $XSTitle, $XSPrompt) EndFunc thx 8) Edited October 5, 2006 by Valuater
Valuater Posted October 6, 2006 Author Posted October 6, 2006 No one???? I tried WinMove() and everything i could think of ???? 8)
Xenobiologist Posted October 6, 2006 Posted October 6, 2006 Hi, :"> what is your problem? So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Valuater Posted October 6, 2006 Author Posted October 6, 2006 if you run the script... you can see the FileSelectFolder for a brief ( 1/2 second ) period... i dont want to see it at all .... until i set the state to show thx 8)
Xenobiologist Posted October 6, 2006 Posted October 6, 2006 HI, okay after I changed the title to the German ones - now I see your problem. First thought was: expandcollapse popup#include <GuiConstants.au3> AutoItSetOption("GUIOnEventMode", 1) Opt("TrayIconDebug", 1) GUICreate("Tester") $Button_1 = GUICtrlCreateButton("Test", 110, 100, 190, 20) GUICtrlSetOnEvent(-1, "GetiT") $Button_2 = GUICtrlCreateButton("Exit", 110, 130, 190, 20, "LeavePrime") GUICtrlSetOnEvent(-1, "LeaveiT") GUISetState() While 1 Sleep(10) WEnd Func GetiT() $XSTitle = "Ordner suchen" $XSPrompt = "Folders" HideiT($XSTitle, $XSPrompt) EndFunc ;==>GetiT Func LeaveiT() Exit EndFunc ;==>LeaveiT Func HideiT($XSTitle, $XSPrompt = "") FileDelete(EnvGet('temp') & 'XSkinit.txt') Local $XSfile = FileOpen(EnvGet("temp") & "XSkinit.au3", 2) If $XSfile = -1 Then MsgBox(0,0,0) AutoItSetOption("WinTitleMatchMode", 4) AutoItSetOption("WinWaitDelay", 145) ; less than 100 and it doesnt work at all Opt("WinDetectHiddenText", 1) Local $XSline1 = '#NoTrayIcon' Local $XSline2 = '$ret = FileSelectFolder("Folders", @ProgramsDir, 2)' Local $XSline3 = 'FileWrite(EnvGet("temp") & "XSkinit.txt", $ret) ' FileWrite($XSfile, $XSline1 & @CRLF & $XSline2 & @CRLF & $XSline3) FileClose($XSfile) $iPID = Run(@AutoItExe & ' /AutoIt3ExecuteScript "' & EnvGet('temp') & 'XSkinit.au3"', '', @SW_HIDE) WinSetOnTop("Tester", "", 1) WinWait($XSTitle) WinSetState( $XSTitle, $XSPrompt, @SW_HIDE ) WinSetOnTop("Tester", "", 0) Sleep(2000) WinSetState( $XSTitle, $XSPrompt, @SW_SHOW ) Sleep(2000) WinClose( $XSTitle, $XSPrompt) EndFunc PS: Surely, not what you want, but .. :"> So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Valuater Posted October 6, 2006 Author Posted October 6, 2006 I appreciate the effort... but yea, that wont work because i also plan to include other dialogs... and they appear at the top left corner... but, thanks for the try 8)
cppman Posted October 6, 2006 Posted October 6, 2006 (edited) expandcollapse popup#include <GuiConstants.au3> AutoItSetOption("GUIOnEventMode", 1) Opt("TrayIconDebug", 1) GUICreate("Tester") $Button_1 = GUICtrlCreateButton("Test", 110, 100, 190, 20) GUICtrlSetOnEvent(-1, "GetiT") $Button_2 = GUICtrlCreateButton("Exit", 110, 130, 190, 20, "LeavePrime") GUICtrlSetOnEvent(-1, "LeaveiT") GUISetState() While 1 Sleep(10) WEnd Func GetiT() $XSTitle = "Browse For Folder" $XSPrompt = "Folders" HideiT($XSTitle, $XSPrompt) EndFunc ;==>GetiT Func LeaveiT() Exit EndFunc ;==>LeaveiT Func HideiT($XSTitle, $XSPrompt = "") FileDelete(EnvGet('temp') & 'XSkinit.txt') Local $XSfile = FileOpen(EnvGet("temp") & "XSkinit.au3", 2) If $XSfile = -1 Then MsgBox(0,0,0) AutoItSetOption("WinTitleMatchMode", 4) ;AutoItSetOption("WinWaitDelay", 145) ; less than 100 and it doesnt work at all Opt("WinDetectHiddenText", 1) Local $XSline1 = '#NoTrayIcon' Local $XSline2 = '$ret = FileSelectFolder("Folders", @ProgramsDir, 2)' Local $XSline3 = 'FileWrite(EnvGet("temp") & "XSkinit.txt", $ret) ' FileWrite($XSfile, $XSline1 & @CRLF & $XSline2 & @CRLF & $XSline3) FileClose($XSfile) $iPID = Run(@AutoItExe & ' /AutoIt3ExecuteScript "' & EnvGet('temp') & 'XSkinit.au3"', '', @SW_HIDE) WinWait($XSTitle) WinSetState( $XSTitle, $XSPrompt, @SW_HIDE ) Sleep(2000) WinSetState( $XSTitle, $XSPrompt, @SW_SHOW ) Sleep(2000) WinClose( $XSTitle, $XSPrompt) EndFunc ? works somewhat better Edited October 6, 2006 by CHRIS95219 Miva OS Project
Valuater Posted October 8, 2006 Author Posted October 8, 2006 any dev's want to tell me i can or can't get this???? thx 8)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now