mirror of
https://github.com/modmii/modmii.github.io.git
synced 2025-02-04 19:06:39 +01:00
99 lines
3.1 KiB
AutoIt
99 lines
3.1 KiB
AutoIt
|
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
|
||
|
#AutoIt3Wrapper_icon=D:\ModMii\Support\icon.ico
|
||
|
#AutoIt3Wrapper_outfile=ModMiiSkin.exe
|
||
|
#AutoIt3Wrapper_UseX64=N
|
||
|
#AutoIt3Wrapper_Res_Description=ModMii Skin Launcher
|
||
|
#AutoIt3Wrapper_Res_Fileversion=1.0.0.0
|
||
|
#AutoIt3Wrapper_Res_LegalCopyright=ModMii by XFlak, Launcher by person66
|
||
|
#AutoIt3Wrapper_Res_Field=ProductName|ModMii Skin Launcher
|
||
|
#AutoIt3Wrapper_Res_Field=ProductVersion|1.0.0.0
|
||
|
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
|
||
|
#cs ----------------------------------------------------------------------------
|
||
|
|
||
|
AutoIt Version: 3.3.8.1
|
||
|
Author: person66
|
||
|
|
||
|
Script Function:
|
||
|
Move the ModMii skin window.
|
||
|
|
||
|
Script Version: 1.8
|
||
|
|
||
|
#ce ----------------------------------------------------------------------------
|
||
|
|
||
|
;REMEMBER TO COMPILE WITH AUTOIT3WRAPPER.EXE
|
||
|
;(http://www.autoitscript.com/autoit3/scite/download/AutoIt3Wrapper.exe)
|
||
|
;AND CHANGE THE LINES BELOW TO MEET YOUR NEEDS
|
||
|
|
||
|
#AutoIt3Wrapper_Autoit3Dir="C:\Program Files (x86)\AutoIt3"
|
||
|
|
||
|
#include <Process.au3>
|
||
|
|
||
|
AutoItSetOption("TrayIconHide", 1)
|
||
|
dim $WinPos, $WinPosBak, $WaitTime, $AlreadyOpen = 0, $ProcessName, $ProcessList, $run, $args, $HasArgs = "True"
|
||
|
|
||
|
;--------------------------------------------------------------
|
||
|
$WaitTime = 10 ;Time to wait for next ModMii window (in seconds)
|
||
|
;--------------------------------------------------------------
|
||
|
|
||
|
;Check for args, and run ModMii Classic if there are
|
||
|
if $CMDLINE[0] = 0 then $HasArgs = "False"
|
||
|
if $HasArgs = "True" then
|
||
|
for $i = 1 To $CMDLINE[0]
|
||
|
$args = $args & $CMDLINE[$I] & " "
|
||
|
next
|
||
|
ShellExecuteWait(@ScriptDir & "\ModMii.exe", $args)
|
||
|
exit
|
||
|
endif
|
||
|
|
||
|
;Check if other ModMii windows are open
|
||
|
if WinExists("[CLASS:WizAppWindow; TITLE:ModMii Skin]", "by XFlak") <> 0 OR WinExists("[CLASS:ConsoleWindowClass; TITLE:ModMii]", "") <> 0 then
|
||
|
$AlreadyOpen = MsgBox(52, "WARNING", "It appears as if you already have a ModMii Window open." & @CRLF & @CRLF & "Running more than one instance of ModMii at a time is not" & @CRLF & "recommended and may get buggy." & @CRLF & @CRLF & "Are you sure you wish to continue?")
|
||
|
if $AlreadyOpen <> 6 then
|
||
|
exit
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
;Check and kill other instances of this script (skips if other ModMii windows are open)
|
||
|
if $AlreadyOpen = 0 then
|
||
|
$ProcessName = _ProcessGetName(@AutoItPID)
|
||
|
$ProcessList = ProcessList($ProcessName)
|
||
|
for $i = 1 To $ProcessList[0][0]
|
||
|
if $ProcessList[$i][1] <> @AutoItPID then
|
||
|
ProcessClose($ProcessList[$i][1])
|
||
|
endif
|
||
|
next
|
||
|
endif
|
||
|
|
||
|
;Main part
|
||
|
ShellExecute(@ComSpec, '/c call "' & @ScriptDir & '\Support\ModMiiSkin.bat"', "", "", @SW_HIDE)
|
||
|
|
||
|
$run = WinWait("ModMii Skin", "by XFlak", $WaitTime)
|
||
|
if $run = 0 then
|
||
|
exit
|
||
|
else
|
||
|
$WinPos = WinGetPos($run)
|
||
|
endif
|
||
|
|
||
|
while 1
|
||
|
while 1
|
||
|
if WinExists($run) <> 1 then
|
||
|
exitloop
|
||
|
else
|
||
|
$WinPos = WinGetPos($run)
|
||
|
if $WinPos <> 0 then
|
||
|
$WinPosBak = $WinPos
|
||
|
else
|
||
|
$WinPos = $WinPosBak
|
||
|
exitloop
|
||
|
endif
|
||
|
endif
|
||
|
sleep(10)
|
||
|
wend
|
||
|
$run = WinWait("ModMii Skin", "by XFlak", $WaitTime)
|
||
|
if $run = 0 then
|
||
|
exit
|
||
|
else
|
||
|
WinMove($run, "", $WinPos[0], $WinPos[1])
|
||
|
WinActivate($run)
|
||
|
endif
|
||
|
wend
|