Jump to content

t2d2c2

Members
  • Posts

    19
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

t2d2c2's Achievements

Seeker

Seeker (1/7)

1

Reputation

  1. Today I have 2 questions, please help me. Question 1: MouseWheel() function will scroll window up/down. Today I want to scroll window horizontally, how can I make that? Question 2: Example I'm at Firefox browser (or any software). Now, I click on "arrow icon" of scroll-bar, how to determine the distance moved? (vertical or horizontal)
  2. Snagit is free software for capture screen, it also support to capture scrolling webpage. But it use Web-browser scroll bar.I have a website = flex, it have itself scroll bar. How can I capture all website? (Snagit only scroll on web-borwser), I need scroll on flex-scroll. Please help me software name OR autoIT code.
  3. How to set drag-area (rectangle - area within border) with color?
  4. Please check tp help me
  5. Oh oh, it's wokring, thank you very much
  6. No, now when right click on menutray, and not click "Exit" item, but GUI is closed
  7. No, right click on trayicon, show menu tray OK, but when click on item on meutray --> NOT DETECT click on item
  8. still nobody view and help, sorry to bother, good luck
  9. #include <Constants.au3> #include <GUIConstants.au3> #include <WinAPI.au3> Opt('GUIOnEventMode', 1) Opt('TrayOnEventMode', 1) Opt("TrayMenuMode",1) TraySetClick(8) $exititem = TrayCreateItem("Exit") Global Const $IDANI_OPEN = 1 Global Const $IDANI_CAPTION = 3 Global $hGUI = GUICreate('Test', 200, 200) Global $fMinimized = False Global $hTray = ControlGetHandle('[CLASS:Shell_TrayWnd]', '', 'TrayNotifyWnd1') TraySetOnEvent($TRAY_EVENT_PRIMARYDOWN, '_Restore') ; TraySetClick(16) GUISetOnEvent($GUI_EVENT_CLOSE, '_Minimize') GUISetState() While 1 Switch TrayGetMsg() Case $exititem Exit EndSwitch WEnd Func _Minimize() Local $tRcFrom , $tRcTo If Not $fMinimized Then $tRcFrom = _WinAPI_GetWindowRect($hGUI) $tRcTo = _WinAPI_GetWindowRect($hTray) _WinAPI_DrawAnimatedRects($hGUI, $IDANI_CAPTION, DllStructGetPtr($tRcFrom), DllStructGetPtr($tRcTo)) GUISetState(@SW_HIDE) $fMinimized = True EndIf EndFunc Func _Restore() If $fMinimized Then $tRcFrom = _WinAPI_GetWindowRect($hTray) $tRcTo = _WinAPI_GetWindowRect($hGUI) _WinAPI_DrawAnimatedRects($hGUI, $IDANI_CAPTION, DllStructGetPtr($tRcFrom), DllStructGetPtr($tRcTo)) GUISetState(@SW_SHOW) $fMinimized = False EndIf EndFunc Func _WinAPI_DrawAnimatedRects($hWnd, $iAnim, $pRectFrom, $pRectTo) Local $aResult $aResult = DllCall('user32.dll', 'int', 'DrawAnimatedRects', 'hwnd', $hWnd, 'int', $iAnim, 'ptr', $pRectFrom, 'ptr', $pRectTo) If @error Then Return SetError(1, 0, 0) Return $aResult[0] EndFunc This is my code, when click (x) button on GUI --> HIDE GUI When left click on trayicon --> SHOW GUI When right click on trayicon --> show tray menu --> BUT click on tray menu item --> don't working Help me fixed it
  10. #include <GUIConstantsEx.au3> Global $hGUI2 = 9999, $hButton3 = 9999 ; Predeclare the variables with dummy values to prevent firing the Case statements gui1() Func gui1() $hGUI1 = GUICreate("Gui 1", 200, 200, 100, 100) $hButton1 = GUICtrlCreateButton("Msgbox 1", 10, 10, 80, 30) $hButton2 = GUICtrlCreateButton("Show Gui 2", 10, 60, 80, 30) GUISetState() While 1 $aMsg = GUIGetMsg(1) ; Use advanced parameter to get array Switch $aMsg[1] ; check which GUI sent the message Case $hGUI1 Switch $aMsg[0] ; Now check for the messages for $hGUI1 Case $GUI_EVENT_CLOSE ; If we get the CLOSE message from this GUI - we exit <<<<<<<<<<<<<<< ExitLoop Case $hButton1 MsgBox("", "MsgBox 1", "Test from Gui 1") Case $hButton2 GUICtrlSetState($hButton2, $GUI_DISABLE) gui2() EndSwitch Case $hGUI2 Switch $aMsg[0] ; Now check for the messages for $hGUI2 Case $GUI_EVENT_CLOSE ; If we get the CLOSE message from this GUI - we just delete the GUI <<<<<<<<<<<<<<< GUIDelete($hGUI2) GUICtrlSetState($hButton2, $GUI_ENABLE) Case $hButton3 MsgBox("", "MsgBox", "Test from Gui 2") EndSwitch EndSwitch WEnd EndFunc ;==>gui1 Func gui2() $hGUI2 = GUICreate("Gui 2", 200, 200, 350, 350) $hButton3 = GUICtrlCreateButton("MsgBox 2", 10, 10, 80, 30) GUISetState() EndFunc ;==>gui2 Above is my exampe code, Main GUI has 1 button, click this button is clicked, open SUB GUI (new open -> SUB GUI on TOP desktop). Now, I'm choice (Firefox, Skype v.v...) --> SUB GUI not on TOP desktop, I want to delete SUB GUI. Please help me, thank you so much.
  11. WM_DROPFILES_FUNC wrong when filename contains Japanese characters. Ex: BigProjectアドバイスパターン表.xls ---> Function return is BigProject???????.xls Please help me.
  12. Thanks star2 vey much . Ok, My OS is WinXP SP2 . I will test with your code . Thanks .
  13. Sorry all,my English very bad . I want format driver G: , and code by AutoIT script . ( use conmandline DOS ) But if I use conmand is : format C: DOS will question very infomations . I want Run program,will format and no question . Help me .
×
×
  • Create New...