Jump to content

minimax

Members
  • Posts

    7
  • Joined

  • Last visited

minimax's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Now it works. (Tested at Windows 7 this morning i got a "Connection to page rejected" instead of only a white page wihout any message. Strange. From the AutoIt files, installed the same way, i had nothing to unblock) Thanks.
  2. Both from within SciTE via 'Help' -> 'SciTE Help' does not work correctly ('Help' -> 'Help' (AutoIt helpfile) does work). Same with opening the .chm files directly.
  3. Hello, I have installed SciTE4AutoIt3.zip (4/5/2013 version) today, downloaded from www.autoitscript.com, and the SciTE4AutoIt3 Helpfile (SciTE4AutoIt3.chm) does only show white pages. Can´t/Won't try the .exe installer because i have even AutoIt installed from ZIP Archive and AutoIt and its Helpfile does work without problems. P.S.: Windows 8 Pro x64
  4. >"C:\Program Files (x86)\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Users\minimax\Desktop\test2.au3" Col: 000000 BkCol: FFFFFF Col: 000000 BkCol: 000000 >Exit code: 0 Time: 0.243 BTW: Doing this #include "Toast.au3" ConsoleWrite("Col: " & Hex($iToast_Message_Col, 6) & @CRLF) ConsoleWrite("BkCol: " & Hex($iToast_Message_BkCol, 6) & @CRLF) _Toast_Set(1, 0xFF0000, 0x00FF00, 0xFF0000, 0x00FF00);change first (just to be sure) _Toast_Set(Default);reset completely _Toast_Set(0, 0xFF0000, 0x00FF00) ConsoleWrite("Col: " & Hex($iToast_Message_Col, 6) & @CRLF) ConsoleWrite("BkCol: " & Hex($iToast_Message_BkCol, 6) & @CRLF) i got correctly >"C:\Program Files (x86)\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Users\minimax\Desktop\test3.au3" Col: 000000 BkCol: FFFFFF Col: 000000 BkCol: FFFFFF >Exit code: 0 Time: 0.277 And, after a closer look, Code snippets from "Toast.au3": Func _Toast_Set... ... Switch $iMsg_BkCol Case Default $aRet = DllCall("User32.dll", "int", "GetSysColor", "int", 8) ; $COLOR_WINDOWTEXT = 8 $iToast_Message_BkCol = $aRet[0] ... Switch $iMsg_Col Case Default $aRet = DllCall("User32.dll", "int", "GetSysColor", "int", 8) ; $COLOR_WINDOWTEXT = 8 $iToast_Message_Col = $aRet[0] ... With the "Toast.au3" code from your Post #1, are you sure?
  5. >"C:\Program Files (x86)\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Users\minimax\Desktop\test.au3" Col: 000000 BkCol: FFFFFF >Exit code: 0 Time: 0.446
  6. Is there an error resetting "Toast" colours to Default? My System colours: Black, White, White, Black (Colours at first Toast_Example.au3 "Toast") after trying to reset partially at my own script ... _Toast_Set(4, 0x00FF00, 0x000000, Default, Default) ... it changes to Green, Black, Black, Black instead of Green, Black, White, Black (Win7 x64)
  7. Sure? What about searching within the array returned by WinList() for the last match of the title and using that handle. (Maybe the last one started, and not the last one the user had active.)
×
×
  • Create New...