This all looks ok, though i never tried fplaunch on 64bit win7, only on 32 bit.
Put debug mode to file, debug mode true creates tooltips on screen which can change behavior of the script.
Then install ahk basic version (if you don't have it already) and then run fplaunch.ahk directly (not .exe but .ahk), without hyperpin - you will get launcher window to select table, then after the game launches when you get vp editor window on screen click on playfield and when you get vp editor again - go to taskbar (press t to show taskbar and cursor), find ahk icon in tray, double click on it and send me command log, something like this:
Script lines most recently executed (oldest first). Press [F5] to refresh. The seconds elapsed between a line and the one after it is in parentheses to the right (if not 0). The bottommost line's elapsed time is the number of seconds since it executed.
417: hbm := DllCall("CreateDIBSection", "uint" , hdc2, "uint" , &bi, "uint" , 0, "uint*", ppvBits, "uint" , 0, "uint" , 0)
419: if !hdc
420: ReleaseDC(hdc2)
581: Return,DllCall("ReleaseDC", "uint", hwnd, "uint", hdc)
421: Return,hbm
980: hdc := CreateCompatibleDC()
483: Return,DllCall("CreateCompatibleDC", "uint", hdc)
981: obm := SelectObject(hdc, hbm)
511: Return,DllCall("SelectObject", "uint", hdc, "uint", hgdiobj)
982: G := Gdip_GraphicsFromHDC(hdc)
1195: DllCall("gdiplus\GdipCreateFromHDC", "uint", hdc, "uint*", pGraphics)
1196: Return,pGraphics
983: Gdip_SetInterpolationMode(G, 7)
2123: Return,DllCall("gdiplus\GdipSetInterpolationMode", "uint", pGraphics, "int", InterpolationMode)
986: Gui,2: -Caption +E0x80000 +LastFound +OwnDialogs +Owner +AlwaysOnTop
987: Gui,2: Show,NA,Loading
988: Return
884: IfWinActive,Visual Pinball Player,,DMD
885: loading = 0
886: }
887: }
888: Return
873: Return
847: if (Mod(A_Index, 20) = 0)
848: WinActivate,ahk_class VPPlayer,,DMD (0.03)
960: yLoadProgress := (yLoadProgress - dir)
961: if (yLoadProgress > pinend) || (yLoadProgress < pinstart)
963: Gdip_TranslateWorldTransform(G, xTranslation, yTranslation)
2178: Return,DllCall("gdiplus\GdipTranslateWorldTransform", "uint", pGraphics, "float", x, "float", y, "int", MatrixOrder)
964: Gdip_RotateWorldTransform(G, pinrot)
2168: Return,DllCall("gdiplus\GdipRotateWorldTransform", "uint", pGraphics, "float", Angle, "int", MatrixOrder)
965: Gdip_DrawImage(G, pBitmap, 0, 0, sLWidth, sLHeight, 0, 0, pLWidth, pLHeight)
1106: if (Matrix&1 = "")
1108: if (Matrix != 1)
1111: if (sx = "" && sy = "" && sw = "" && sh = "")
1127: E := DllCall("gdiplus\GdipDrawImageRectRect", "uint", pGraphics, "uint", pBitmap, "float", dx, "float", dy, "float", dw, "float", dh, "float", sx, "float", sy, "float", sw, "float", sh, "int"
1131: if ImageAttr
1133: Return,E
966: Gdip_DisposeImage(pBitmap)
1828: Return,DllCall("gdiplus\GdipDisposeImage", "uint", pBitmap)
967: Gdip_ResetWorldTransform(G)
2183: Return,DllCall("gdiplus\GdipResetWorldTransform", "uint", pGraphics)
968: dif := (rLHeight-sLHeight)/2
969: dif := -dif
970: movedyLoadProgress := Round(yLoadProgress+dif)
971: movedxLoadProgress := Round(xLoadProgress+dif)
972: UpdateLayeredWindow(hwLoadProg, hdc, movedxLoadProgress+1, movedyLoadProgress, rLWidth, rLHeight)
066: if ((x != "") && (y != ""))
067: VarSetCapacity(pt, 8), NumPut(x, pt, 0), NumPut(y, pt, 4)
069: if (w = "") ||(h = "")
072: Return,DllCall("UpdateLayeredWindow", "uint", hwnd, "uint", 0, "uint", ((x = "") && (y = "")) ? 0 : &pt, "int64*", w|h<<32, "uint", hdc, "int64*", 0, "uint", 0, "uint*", Alpha<<16|1<<24, "uint
973: SelectObject(hdc, obm), DeleteObject(hbm), DeleteDC(hdc)
511: Return,DllCall("SelectObject", "uint", hdc, "uint", hgdiobj)
526: Return,DllCall("DeleteObject", "uint", hObject)
597: Return,DllCall("DeleteDC", "uint", hdc)
974: Gdip_DeleteGraphics(G)
1835: Return,DllCall("gdiplus\GdipDeleteGraphics", "uint", pGraphics)
975: pinrot := pinrot + dir*5
976: Gdip_GetRotatedTranslation(sLWidth, sLHeight, pinrot, xTranslation, yTranslation)
2188: pi := 3.14159, TAngle := Angle*(pi/180)
2190: Bound := (Angle >= 0) ? Mod(Angle, 360) : 360-Mod(-Angle, -360)
2191: if ((Bound >= 0) && (Bound <= 90))
2192: xTranslation := Height*Sin(TAngle), yTranslation := 0
2199: }
977: Gdip_GetRotatedDimensions(sLWidth, sLHeight, pinrot, rLWidth, rLHeight)
2203: pi := 3.14159, TAngle := Angle*(pi/180)
2204: if !(Width && Height)
2206: RWidth := Ceil(Abs(Width*Cos(TAngle))+Abs(Height*Sin(TAngle)))
2207: RHeight := Ceil(Abs(Width*Sin(TAngle))+Abs(Height*Cos(Tangle)))
2208: }
978: pBitmap := Gdip_CreateBitmapFromFile(progPic)
1526: SplitPath,sFile,,,ext
1527: if ext in exe,dll
1577: if !A_IsUnicode
1579: VarSetCapacity(wFile, 1023)
1580: DllCall("kernel32\MultiByteToWideChar", "uint", 0, "uint", 0, "uint", &sFile, "int", -1, "uint", &wFile, "int", 512)
1581: DllCall("gdiplus\GdipCreateBitmapFromFile", "uint", &wFile, "uint*", pBitmap)
1582: }
1585: }
1586: Return,pBitmap
979: hbm := CreateDIBSection(rLWidth, rLHeight)
414: hdc2 := hdc ? hdc : GetDC()
541: Return,DllCall("GetDC", "uint", hwnd)
415: VarSetCapacity(bi, 40, 0)
416: NumPut(w, bi, 4), NumPut(h, bi, 8), NumPut(40, bi, 0), NumPut(1, bi, 12, "ushort"), NumPut(0, bi, 16), NumPut(bpp, bi, 14, "ushort")
417: hbm := DllCall("CreateDIBSection", "uint" , hdc2, "uint" , &bi, "uint" , 0, "uint*", ppvBits, "uint" , 0, "uint" , 0)
419: if !hdc
420: ReleaseDC(hdc2)
581: Return,DllCall("ReleaseDC", "uint", hwnd, "uint", hdc)
421: Return,hbm
980: hdc := CreateCompatibleDC()
483: Return,DllCall("CreateCompatibleDC", "uint", hdc)
981: obm := SelectObject(hdc, hbm)
511: Return,DllCall("SelectObject", "uint", hdc, "uint", hgdiobj)
982: G := Gdip_GraphicsFromHDC(hdc)
1195: DllCall("gdiplus\GdipCreateFromHDC", "uint", hdc, "uint*", pGraphics)
1196: Return,pGraphics
983: Gdip_SetInterpolationMode(G, 7)
2123: Return,DllCall("gdiplus\GdipSetInterpolationMode", "uint", pGraphics, "int", InterpolationMode)
986: Gui,2: -Caption +E0x80000 +LastFound +OwnDialogs +Owner +AlwaysOnTop
987: Gui,2: Show,NA,Loading
988: Return (0.03)
960: yLoadProgress := (yLoadProgress - dir)
961: if (yLoadProgress > pinend) || (yLoadProgress < pinstart)
963: Gdip_TranslateWorldTransform(G, xTranslation, yTranslation)
2178: Return,DllCall("gdiplus\GdipTranslateWorldTransform", "uint", pGraphics, "float", x, "float", y, "int", MatrixOrder)
964: Gdip_RotateWorldTransform(G, pinrot)
2168: Return,DllCall("gdiplus\GdipRotateWorldTransform", "uint", pGraphics, "float", Angle, "int", MatrixOrder)
965: Gdip_DrawImage(G, pBitmap, 0, 0, sLWidth, sLHeight, 0, 0, pLWidth, pLHeight)
1106: if (Matrix&1 = "")
1108: if (Matrix != 1)
1111: if (sx = "" && sy = "" && sw = "" && sh = "")
1127: E := DllCall("gdiplus\GdipDrawImageRectRect", "uint", pGraphics, "uint", pBitmap, "float", dx, "float", dy, "float", dw, "float", dh, "float", sx, "float", sy, "float", sw, "float", sh, "int"
1131: if ImageAttr
1133: Return,E
966: Gdip_DisposeImage(pBitmap)
1828: Return,DllCall("gdiplus\GdipDisposeImage", "uint", pBitmap)
967: Gdip_ResetWorldTransform(G)
2183: Return,DllCall("gdiplus\GdipResetWorldTransform", "uint", pGraphics)
968: dif := (rLHeight-sLHeight)/2
969: dif := -dif
970: movedyLoadProgress := Round(yLoadProgress+dif)
971: movedxLoadProgress := Round(xLoadProgress+dif)
972: UpdateLayeredWindow(hwLoadProg, hdc, movedxLoadProgress+1, movedyLoadProgress, rLWidth, rLHeight)
066: if ((x != "") && (y != ""))
067: VarSetCapacity(pt, 8), NumPut(x, pt, 0), NumPut(y, pt, 4)
069: if (w = "") ||(h = "")
072: Return,DllCall("UpdateLayeredWindow", "uint", hwnd, "uint", 0, "uint", ((x = "") && (y = "")) ? 0 : &pt, "int64*", w|h<<32, "uint", hdc, "int64*", 0, "uint", 0, "uint*", Alpha<<16|1<<24, "uint
973: SelectObject(hdc, obm), DeleteObject(hbm), DeleteDC(hdc)
511: Return,DllCall("SelectObject", "uint", hdc, "uint", hgdiobj)
526: Return,DllCall("DeleteObject", "uint", hObject)
597: Return,DllCall("DeleteDC", "uint", hdc)
974: Gdip_DeleteGraphics(G)
1835: Return,DllCall("gdiplus\GdipDeleteGraphics", "uint", pGraphics)
975: pinrot := pinrot + dir*5
976: Gdip_GetRotatedTranslation(sLWidth, sLHeight, pinrot, xTranslation, yTranslation)
2188: pi := 3.14159, TAngle := Angle*(pi/180)
2190: Bound := (Angle >= 0) ? Mod(Angle, 360) : 360-Mod(-Angle, -360)
2191: if ((Bound >= 0) && (Bound <= 90))
2192: xTranslation := Height*Sin(TAngle), yTranslation := 0
2199: }
977: Gdip_GetRotatedDimensions(sLWidth, sLHeight, pinrot, rLWidth, rLHeight)
2203: pi := 3.14159, TAngle := Angle*(pi/180)
2204: if !(Width && Height)
2206: RWidth := Ceil(Abs(Width*Cos(TAngle))+Abs(Height*Sin(TAngle)))
2207: RHeight := Ceil(Abs(Width*Sin(TAngle))+Abs(Height*Cos(Tangle)))
2208: }
978: pBitmap := Gdip_CreateBitmapFromFile(progPic)
1526: SplitPath,sFile,,,ext
1527: if ext in exe,dll
1577: if !A_IsUnicode
1579: VarSetCapacity(wFile, 1023)
1580: DllCall("kernel32\MultiByteToWideChar", "uint", 0, "uint", 0, "uint", &sFile, "int", -1, "uint", &wFile, "int", 512)
1581: DllCall("gdiplus\GdipCreateBitmapFromFile", "uint", &wFile, "uint*", pBitmap)
1582: }
1585: }
1586: Return,pBitmap
979: hbm := CreateDIBSection(rLWidth, rLHeight)
414: hdc2 := hdc ? hdc : GetDC()
541: Return,DllCall("GetDC", "uint", hwnd)
415: VarSetCapacity(bi, 40, 0)
416: NumPut(w, bi, 4), NumPut(h, bi, 8), NumPut(40, bi, 0), NumPut(1, bi, 12, "ushort"), NumPut(0, bi, 16), NumPut(bpp, bi, 14, "ushort")
417: hbm := DllCall("CreateDIBSection", "uint" , hdc2, "uint" , &bi, "uint" , 0, "uint*", ppvBits, "uint" , 0, "uint" , 0)
419: if !hdc
420: ReleaseDC(hdc2)
581: Return,DllCall("ReleaseDC", "uint", hwnd, "uint", hdc)
421: Return,hbm
980: hdc := CreateCompatibleDC()
483: Return,DllCall("CreateCompatibleDC", "uint", hdc)
981: obm := SelectObject(hdc, hbm)
511: Return,DllCall("SelectObject", "uint", hdc, "uint", hgdiobj)
982: G := Gdip_GraphicsFromHDC(hdc)
1195: DllCall("gdiplus\GdipCreateFromHDC", "uint", hdc, "uint*", pGraphics)
1196: Return,pGraphics
983: Gdip_SetInterpolationMode(G, 7)
2123: Return,DllCall("gdiplus\GdipSetInterpolationMode", "uint", pGraphics, "int", InterpolationMode)
986: Gui,2: -Caption +E0x80000 +LastFound +OwnDialogs +Owner +AlwaysOnTop
987: Gui,2: Show,NA,Loading
988: Return (0.03)
960: yLoadProgress := (yLoadProgress - dir)
961: if (yLoadProgress > pinend) || (yLoadProgress < pinstart)
963: Gdip_TranslateWorldTransform(G, xTranslation, yTranslation)
2178: Return,DllCall("gdiplus\GdipTranslateWorldTransform", "uint", pGraphics, "float", x, "float", y, "int", MatrixOrder)
964: Gdip_RotateWorldTransform(G, pinrot)
2168: Return,DllCall("gdiplus\GdipRotateWorldTransform", "uint", pGraphics, "float", Angle, "int", MatrixOrder)
965: Gdip_DrawImage(G, pBitmap, 0, 0, sLWidth, sLHeight, 0, 0, pLWidth, pLHeight)
1106: if (Matrix&1 = "")
1108: if (Matrix != 1)
1111: if (sx = "" && sy = "" && sw = "" && sh = "")
1127: E := DllCall("gdiplus\GdipDrawImageRectRect", "uint", pGraphics, "uint", pBitmap, "float", dx, "float", dy, "float", dw, "float", dh, "float", sx, "float", sy, "float", sw, "float", sh, "int"
1131: if ImageAttr
1133: Return,E
966: Gdip_DisposeImage(pBitmap)
1828: Return,DllCall("gdiplus\GdipDisposeImage", "uint", pBitmap)
967: Gdip_ResetWorldTransform(G)
2183: Return,DllCall("gdiplus\GdipResetWorldTransform", "uint", pGraphics)
968: dif := (rLHeight-sLHeight)/2
969: dif := -dif
970: movedyLoadProgress := Round(yLoadProgress+dif)
971: movedxLoadProgress := Round(xLoadProgress+dif)
972: UpdateLayeredWindow(hwLoadProg, hdc, movedxLoadProgress+1, movedyLoadProgress, rLWidth, rLHeight)
066: if ((x != "") && (y != ""))
067: VarSetCapacity(pt, 8), NumPut(x, pt, 0), NumPut(y, pt, 4)
069: if (w = "") ||(h = "")
072: Return,DllCall("UpdateLayeredWindow", "uint", hwnd, "uint", 0, "uint", ((x = "") && (y = "")) ? 0 : &pt, "int64*", w|h<<32, "uint", hdc, "int64*", 0, "uint", 0, "uint*", Alpha<<16|1<<24, "uint
973: SelectObject(hdc, obm), DeleteObject(hbm), DeleteDC(hdc)
511: Return,DllCall("SelectObject", "uint", hdc, "uint", hgdiobj)
526: Return,DllCall("DeleteObject", "uint", hObject)
597: Return,DllCall("DeleteDC", "uint", hdc)
974: Gdip_DeleteGraphics(G)
1835: Return,DllCall("gdiplus\GdipDeleteGraphics", "uint", pGraphics)
975: pinrot := pinrot + dir*5
976: Gdip_GetRotatedTranslation(sLWidth, sLHeight, pinrot, xTranslation, yTranslation)
2188: pi := 3.14159, TAngle := Angle*(pi/180)
2190: Bound := (Angle >= 0) ? Mod(Angle, 360) : 360-Mod(-Angle, -360)
2191: if ((Bound >= 0) && (Bound <= 90))
2192: xTranslation := Height*Sin(TAngle), yTranslation := 0
2199: }
977: Gdip_GetRotatedDimensions(sLWidth, sLHeight, pinrot, rLWidth, rLHeight)
2203: pi := 3.14159, TAngle := Angle*(pi/180)
2204: if !(Width && Height)
2206: RWidth := Ceil(Abs(Width*Cos(TAngle))+Abs(Height*Sin(TAngle)))
2207: RHeight := Ceil(Abs(Width*Sin(TAngle))+Abs(Height*Cos(Tangle)))
2208: }
978: pBitmap := Gdip_CreateBitmapFromFile(progPic)
1526: SplitPath,sFile,,,ext
1527: if ext in exe,dll
1577: if !A_IsUnicode
1579: VarSetCapacity(wFile, 1023)
1580: DllCall("kernel32\MultiByteToWideChar", "uint", 0, "uint", 0, "uint", &sFile, "int", -1, "uint", &wFile, "int", 512)
1581: DllCall("gdiplus\GdipCreateBitmapFromFile", "uint", &wFile, "uint*", pBitmap)
1582: }
1585: }
1586: Return,pBitmap
979: hbm := CreateDIBSection(rLWidth, rLHeight)
414: hdc2 := hdc ? hdc : GetDC()
541: Return,DllCall("GetDC", "uint", hwnd)
415: VarSetCapacity(bi, 40, 0)
416: NumPut(w, bi, 4), NumPut(h, bi, 8), NumPut(40, bi, 0), NumPut(1, bi, 12, "ushort"), NumPut(0, bi, 16), NumPut(bpp, bi, 14, "ushort")
417: hbm := DllCall("CreateDIBSection", "uint" , hdc2, "uint" , &bi, "uint" , 0, "uint*", ppvBits, "uint" , 0, "uint" , 0)
419: if !hdc
420: ReleaseDC(hdc2)
581: Return,DllCall("ReleaseDC", "uint", hwnd, "uint", hdc)
421: Return,hbm
980: hdc := CreateCompatibleDC()
483: Return,DllCall("CreateCompatibleDC", "uint", hdc)
981: obm := SelectObject(hdc, hbm)
511: Return,DllCall("SelectObject", "uint", hdc, "uint", hgdiobj)
982: G := Gdip_GraphicsFromHDC(hdc)
1195: DllCall("gdiplus\GdipCreateFromHDC", "uint", hdc, "uint*", pGraphics)
1196: Return,pGraphics
983: Gdip_SetInterpolationMode(G, 7)
2123: Return,DllCall("gdiplus\GdipSetInterpolationMode", "uint", pGraphics, "int", InterpolationMode)
986: Gui,2: -Caption +E0x80000 +LastFound +OwnDialogs +Owner +AlwaysOnTop
987: Gui,2: Show,NA,Loading
988: Return (0.02)
849: WinActivate,ahk_class FuturePinballOpenGL
850: }
852: if (Mod(A_Index, 100) = 0)
855: if (loading = 0)
856: Break
865: Gosub,CloseProgress
951: SetTimer,MoveProgress,Off
952: SelectObject(hdc, obm)
511: Return,DllCall("SelectObject", "uint", hdc, "uint", hgdiobj)
953: DeleteObject(hbm), DeleteDC(hdc), Gdip_DeleteGraphics(G)
526: Return,DllCall("DeleteObject", "uint", hObject)
597: Return,DllCall("DeleteDC", "uint", hdc)
1835: Return,DllCall("gdiplus\GdipDeleteGraphics", "uint", pGraphics)
954: Gdip_DisposeImage(pBitmap)
1828: Return,DllCall("gdiplus\GdipDisposeImage", "uint", pBitmap)
955: Gui,2:Destroy
956: Gui,1:Destroy
957: Return
866: Return
567: loading = 1
568: Loop
569: WinActivate,ahk_class VPPlayer,,DMD (0.11)
570: Sleep,100 (0.11)
571: Gosub,CheckVP
878: IfWinActive,Visual Pinball Player,,DMD
880: Sleep,100 (0.11)
881: IfWinActive,Visual Pinball Player,,DMD
883: Sleep,100 (0.11)
884: IfWinActive,Visual Pinball Player,,DMD
885: loading = 0
886: }
887: }
888: Return
572: if (loading = 0)
573: Break
575: Gosub,WaitVP
916: IfWinNotExist,ahk_class VPinball
918: MouseMove,88,130 (0.12)
919: WinWaitActive,ahk_class VPPlayer,,1,DMD (0.11)
920: Sleep,100 (0.11)
921: IfWinNotActive,ahk_class VPPlayer,,DMD
923: WinWaitActive,ahk_class VPPlayer,,1,DMD (0.11)
924: Sleep,100 (0.11)
925: IfWinNotActive,ahk_class VPPlayer,,DMD
927: WinWaitActive,ahk_class VPPlayer,,1,DMD (0.11)
928: Sleep,100 (0.11)
929: IfWinNotActive,ahk_class VPPlayer,,DMD
931: Return
577: DllCall("SetCursorPos", int, A_ScreenWidth//2, int, A_ScreenHeight//2)
580: DetectHiddenWindows,off
581: WinActivate,ahk_class MAME
582: WinWaitActive,ahk_class MAME,,0 (0.50)
583: Sleep,100 (0.11)
585: SetControlDelay,-1
586: ControlClick,,ahk_class MAME
587: WinWaitActive,ahk_class MAME,,0 (0.50)
588: Sleep,100 (0.11)
589: DetectHiddenWindows,on
591: loading = 1
592: Loop
593: WinActivate,ahk_class VPPlayer,,DMD (0.11)
594: Sleep,100 (0.11)
595: Gosub,CheckVP
878: IfWinActive,Visual Pinball Player,,DMD
880: Sleep,100 (0.11)
881: IfWinActive,Visual Pinball Player,,DMD
883: Sleep,100 (0.11)
884: IfWinActive,Visual Pinball Player,,DMD
885: loading = 0
886: }
887: }
888: Return
596: if (loading = 0)
597: Break
599: Gosub,WaitVP
916: IfWinNotExist,ahk_class VPinball
918: MouseMove,88,130 (0.13)
919: WinWaitActive,ahk_class VPPlayer,,1,DMD (0.11)
920: Sleep,100 (0.11)
921: IfWinNotActive,ahk_class VPPlayer,,DMD
923: WinWaitActive,ahk_class VPPlayer,,1,DMD (0.11)
924: Sleep,100 (0.11)
925: IfWinNotActive,ahk_class VPPlayer,,DMD
927: WinWaitActive,ahk_class VPPlayer,,1,DMD (0.11)
928: Sleep,100 (0.11)
929: IfWinNotActive,ahk_class VPPlayer,,DMD
931: Return
600: Gui,destroy
602: Process,WaitClose,%executable% (27.25)
2123: SystemCursor("Toggle")
2095: if (OnOff = "Init" || OnOff = "I" || $ = "")
2111: if (OnOff = 0 || OnOff = "Off" || $ = "h" && (OnOff < 0 || OnOff = "Toggle" || OnOff = "T"))
2114: $ = h
2116: Loop,%c0%
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2118: h_cursor := DllCall( "CopyImage", "uint",%$%%A_Index%, "uint",2, "int",0, "int",0, "uint",0 )
2119: DllCall( "SetSystemCursor", "uint",h_cursor, "uint",c%A_Index% )
2120: }
2121: }
2124: Gosub,ToggleTaskbar
2128: if (hideTaskbar = "true")
2129: if (taskbar)
2134: WinShow,ahk_class Shell_TrayWnd (0.13)
2135: WinShow,Start ahk_class Button (0.11)
2136: taskbar = 1
2137: }
2138: }
2139: Return
2125: Return (10.92)
Press [F5] to refresh.