mirror of
https://github.com/modmii/modmii.github.io.git
synced 2024-11-15 12:55:15 +01:00
1135 lines
77 KiB
Plaintext
1135 lines
77 KiB
Plaintext
|
<html>
|
||
|
<hta:application
|
||
|
id="HI"
|
||
|
navigable="yes"
|
||
|
scroll="yes"
|
||
|
icon="..\Support\icon.ico"
|
||
|
innerborder="no"
|
||
|
border="thin"
|
||
|
>
|
||
|
<meta charset="utf-8">
|
||
|
<head>
|
||
|
<title>ModMii</title>
|
||
|
<!-- VS Script cmd, not used--- CreateObject("WScript.Shell").Run "file.hta"-->
|
||
|
<script Language="VBScript">
|
||
|
Function www(ByVal URL)
|
||
|
CreateObject("WScript.Shell").Run URL
|
||
|
End Function
|
||
|
|
||
|
Sub Window_Onload
|
||
|
window.resizeTo 1200,820
|
||
|
window.moveTo (screen.width - document.body.clientwidth)/2, (screen.height - document.body.clientheight)/2
|
||
|
End Sub
|
||
|
|
||
|
Function FULLCLOSE()
|
||
|
'SAVE() 'save happens on unload\close
|
||
|
window.close()
|
||
|
End Function
|
||
|
|
||
|
sub Window_onUnload
|
||
|
SAVE()
|
||
|
end sub
|
||
|
|
||
|
Function Page(ByVal nextgoto, nextpage)
|
||
|
'nextpage is optional
|
||
|
set objFSO = CreateObject("Scripting.FileSystemObject").OpenTextFile("temp\tempcheck.bat",8,true)
|
||
|
objFSO.write vbNewLine & "set nextgoto=" & nextgoto
|
||
|
objFSO.write vbNewLine & "set nextpage=" & nextpage
|
||
|
objFSO.close
|
||
|
'SAVE() 'save happens on unload\close
|
||
|
window.close()
|
||
|
End Function
|
||
|
|
||
|
|
||
|
Function SAVE()
|
||
|
set objFSO = CreateObject("Scripting.FileSystemObject").OpenTextFile("temp\tempcheck.bat",8,true)
|
||
|
|
||
|
objFSO.write vbNewLine & "set effect="
|
||
|
If effect1.checked = True Then objFSO.write effect1.value
|
||
|
If effect2.checked = True Then objFSO.write effect2.value
|
||
|
If effect3.checked = True Then objFSO.write effect3.value
|
||
|
|
||
|
objFSO.write vbNewLine & "set MyM="
|
||
|
If MyM.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.3U="
|
||
|
If DarkWii_Red_43U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.2U="
|
||
|
If DarkWii_Red_42U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.1U="
|
||
|
If DarkWii_Red_41U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.3U="
|
||
|
If DarkWii_Green_43U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.2U="
|
||
|
If DarkWii_Green_42U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.1U="
|
||
|
If DarkWii_Green_41U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.3U="
|
||
|
If DarkWii_Blue_43U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.2U="
|
||
|
If DarkWii_Blue_42U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.1U="
|
||
|
If DarkWii_Blue_41U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.3U="
|
||
|
If darkwii_orange_43U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.2U="
|
||
|
If darkwii_orange_42U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.1U="
|
||
|
If darkwii_orange_41U.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.3E="
|
||
|
If DarkWii_Red_43E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.2E="
|
||
|
If DarkWii_Red_42E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.1E="
|
||
|
If DarkWii_Red_41E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.3E="
|
||
|
If DarkWii_Green_43E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.2E="
|
||
|
If DarkWii_Green_42E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.1E="
|
||
|
If DarkWii_Green_41E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.3E="
|
||
|
If DarkWii_Blue_43E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.2E="
|
||
|
If DarkWii_Blue_42E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.1E="
|
||
|
If DarkWii_Blue_41E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.3E="
|
||
|
If darkwii_orange_43E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.2E="
|
||
|
If darkwii_orange_42E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.1E="
|
||
|
If darkwii_orange_41E.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.3J="
|
||
|
If DarkWii_Red_43J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.2J="
|
||
|
If DarkWii_Red_42J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.1J="
|
||
|
If DarkWii_Red_41J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.3J="
|
||
|
If DarkWii_Green_43J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.2J="
|
||
|
If DarkWii_Green_42J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.1J="
|
||
|
If DarkWii_Green_41J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.3J="
|
||
|
If DarkWii_Blue_43J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.2J="
|
||
|
If DarkWii_Blue_42J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.1J="
|
||
|
If DarkWii_Blue_41J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.3J="
|
||
|
If darkwii_orange_43J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.2J="
|
||
|
If darkwii_orange_42J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.1J="
|
||
|
If darkwii_orange_41J.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.3K="
|
||
|
If DarkWii_Red_43K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.2K="
|
||
|
If DarkWii_Red_42K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Red_4.1K="
|
||
|
If DarkWii_Red_41K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.3K="
|
||
|
If DarkWii_Green_43K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.2K="
|
||
|
If DarkWii_Green_42K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Green_4.1K="
|
||
|
If DarkWii_Green_41K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.3K="
|
||
|
If DarkWii_Blue_43K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.2K="
|
||
|
If DarkWii_Blue_42K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set DarkWii_Blue_4.1K="
|
||
|
If DarkWii_Blue_41K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.3K="
|
||
|
If darkwii_orange_43K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.2K="
|
||
|
If darkwii_orange_42K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set darkwii_orange_4.1K="
|
||
|
If darkwii_orange_41K.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3U-DWR="
|
||
|
If SM43U_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2U-DWR="
|
||
|
If SM42U_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1U-DWR="
|
||
|
If SM41U_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3U-DWG="
|
||
|
If SM43U_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2U-DWG="
|
||
|
If SM42U_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1U-DWG="
|
||
|
If SM41U_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3U-DWB="
|
||
|
If SM43U_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2U-DWB="
|
||
|
If SM42U_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1U-DWB="
|
||
|
If SM41U_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3U-DWO="
|
||
|
If SM43U_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2U-DWO="
|
||
|
If SM42U_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1U-DWO="
|
||
|
If SM41U_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3E-DWR="
|
||
|
If SM43E_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2E-DWR="
|
||
|
If SM42E_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1E-DWR="
|
||
|
If SM41E_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3E-DWG="
|
||
|
If SM43E_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2E-DWG="
|
||
|
If SM42E_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1E-DWG="
|
||
|
If SM41E_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3E-DWB="
|
||
|
If SM43E_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2E-DWB="
|
||
|
If SM42E_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1E-DWB="
|
||
|
If SM41E_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3E-DWO="
|
||
|
If SM43E_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2E-DWO="
|
||
|
If SM42E_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1E-DWO="
|
||
|
If SM41E_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3J-DWR="
|
||
|
If SM43J_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2J-DWR="
|
||
|
If SM42J_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1J-DWR="
|
||
|
If SM41J_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3J-DWG="
|
||
|
If SM43J_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2J-DWG="
|
||
|
If SM42J_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1J-DWG="
|
||
|
If SM41J_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3J-DWB="
|
||
|
If SM43J_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2J-DWB="
|
||
|
If SM42J_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1J-DWB="
|
||
|
If SM41J_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3J-DWO="
|
||
|
If SM43J_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2J-DWO="
|
||
|
If SM42J_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1J-DWO="
|
||
|
If SM41J_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3K-DWR="
|
||
|
If SM43K_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2K-DWR="
|
||
|
If SM42K_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1K-DWR="
|
||
|
If SM41K_DWR.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3K-DWG="
|
||
|
If SM43K_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2K-DWG="
|
||
|
If SM42K_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1K-DWG="
|
||
|
If SM41K_DWG.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3K-DWB="
|
||
|
If SM43K_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2K-DWB="
|
||
|
If SM42K_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1K-DWB="
|
||
|
If SM41K_DWB.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.3K-DWO="
|
||
|
If SM43K_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.2K-DWO="
|
||
|
If SM42K_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set SM4.1K-DWO="
|
||
|
If SM41K_DWO.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A78="
|
||
|
If A78.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A84="
|
||
|
If A84.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A94="
|
||
|
If A94.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A7b="
|
||
|
If A7b.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A87="
|
||
|
If A87.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A97="
|
||
|
If A97.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A81="
|
||
|
If A81.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A8d="
|
||
|
If A8d.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A9d="
|
||
|
If A9d.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A7e="
|
||
|
If A7e.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A8a="
|
||
|
If A8a.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.write vbNewLine & "set A9a="
|
||
|
If A9a.checked = True Then objFSO.write "*"
|
||
|
|
||
|
objFSO.close
|
||
|
End Function
|
||
|
|
||
|
|
||
|
Function ALLButton()
|
||
|
If ((MyM.checked = True) And (A97.checked = True) And (DarkWii_Red_43U.checked = True) And (DarkWii_Green_43U.checked = True) And (DarkWii_Blue_43U.checked = True) And (darkwii_orange_43U.checked = True) And (SM43U_DWR.checked = True) And (SM43U_DWG.checked = True) And (SM43U_DWB.checked = True) And (SM43U_DWO.checked) And (A87.checked = True) And (DarkWii_Red_42U.checked = True) And (DarkWii_Green_42U.checked = True) And (DarkWii_Blue_42U.checked = True) And (darkwii_orange_42U.checked = True) And (SM42U_DWR.checked = True) And (SM42U_DWG.checked = True) And (SM42U_DWB.checked = True) And (SM42U_DWO.checked) And (A7b.checked = True) And (DarkWii_Red_41U.checked = True) And (DarkWii_Green_41U.checked = True) And (DarkWii_Blue_41U.checked = True) And (darkwii_orange_41U.checked = True) And (SM41U_DWR.checked = True) And (SM41U_DWG.checked = True) And (SM41U_DWB.checked = True) And (SM41U_DWO.checked) And (A9a.checked = True) And (DarkWii_Red_43E.checked = True) And (DarkWii_Green_43E.checked = True) And (DarkWii_Blue_43E.checked = True) And (darkwii_orange_43E.checked = True) And (SM43E_DWR.checked = True) And (SM43E_DWG.checked = True) And (SM43E_DWB.checked = True) And (SM43E_DWO.checked) And (A8a.checked = True) And (DarkWii_Red_42E.checked = True) And (DarkWii_Green_42E.checked = True) And (DarkWii_Blue_42E.checked = True) And (darkwii_orange_42E.checked = True) And (SM42E_DWR.checked = True) And (SM42E_DWG.checked = True) And (SM42E_DWB.checked = True) And (SM42E_DWO.checked) And (A7e.checked = True) And (DarkWii_Red_41E.checked = True) And (DarkWii_Green_41E.checked = True) And (DarkWii_Blue_41E.checked = True) And (darkwii_orange_41E.checked = True) And (SM41E_DWR.checked = True) And (SM41E_DWG.checked = True) And (SM41E_DWB.checked = True) And (SM41E_DWO.checked) And (A94.checked = True) And (DarkWii_Red_43J.checked = True) And (DarkWii_Green_43J.checked = True) And (DarkWii_Blue_43J.checked = True) And (darkwii_orange_43J.checked = True) And (SM43J_DWR.checked = True) And (SM43J_DWG.checked = True) And (SM43J_DWB.checked = True) And (SM43J_DWO.checked) And (A84.checked = True) And (DarkWii_Red_42J.checked = True) And (DarkWii_Green_42J.checked = True) And (DarkWii_Blue_42J.checked = True) And (darkwii_orange_42J.checked = True) And (SM42J_DWR.checked = True) And (SM42J_DWG.checked = True) And (SM42J_DWB.checked = True) And (SM42J_DWO.checked) And (A78.checked = True) And (DarkWii_Red_41J.checked = True) And (DarkWii_Green_41J.checked = True) And (DarkWii_Blue_41J.checked = True) And (darkwii_orange_41J.checked = True) And (SM41J_DWR.checked = True) And (SM41J_DWG.checked = True) And (SM41J_DWB.checked = True) And (SM41J_DWO.checked) And (A9d.checked = True) And (DarkWii_Red_43K.checked = True) And (DarkWii_Green_43K.checked = True) And (DarkWii_Blue_43K.checked = True) And (darkwii_orange_43K.checked = True) And (SM43K_DWR.checked = True) And (SM43K_DWG.checked = True) And (SM43K_DWB.checked = True) And (SM43K_DWO.checked) And (A8d.checked = True) And (DarkWii_Red_42K.checked = True) And (DarkWii_Green_42K.checked = True) And (DarkWii_Blue_42K.checked = True) And (darkwii_orange_42K.checked = True) And (SM42K_DWR.checked = True) And (SM42K_DWG.checked = True) And (SM42K_DWB.checked = True) And (SM42K_DWO.checked) And (A81.checked = True) And (DarkWii_Red_41K.checked = True) And (DarkWii_Green_41K.checked = True) And (DarkWii_Blue_41K.checked = True) And (darkwii_orange_41K.checked = True) And (SM41K_DWR.checked = True) And (SM41K_DWG.checked = True) And (SM41K_DWB.checked = True) And (SM41K_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
MyM.checked = checkstatus
|
||
|
Toggle43U(checkstatus)
|
||
|
Toggle42U(checkstatus)
|
||
|
Toggle41U(checkstatus)
|
||
|
Toggle43E(checkstatus)
|
||
|
Toggle42E(checkstatus)
|
||
|
Toggle41E(checkstatus)
|
||
|
Toggle43J(checkstatus)
|
||
|
Toggle42J(checkstatus)
|
||
|
Toggle41J(checkstatus)
|
||
|
Toggle43K(checkstatus)
|
||
|
Toggle42K(checkstatus)
|
||
|
Toggle41K(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
|
||
|
|
||
|
Function USAButton()
|
||
|
If ((A97.checked = True) And (DarkWii_Red_43U.checked = True) And (DarkWii_Green_43U.checked = True) And (DarkWii_Blue_43U.checked = True) And (darkwii_orange_43U.checked = True) And (SM43U_DWR.checked = True) And (SM43U_DWG.checked = True) And (SM43U_DWB.checked = True) And (SM43U_DWO.checked) And (A87.checked = True) And (DarkWii_Red_42U.checked = True) And (DarkWii_Green_42U.checked = True) And (DarkWii_Blue_42U.checked = True) And (darkwii_orange_42U.checked = True) And (SM42U_DWR.checked = True) And (SM42U_DWG.checked = True) And (SM42U_DWB.checked = True) And (SM42U_DWO.checked) And (A7b.checked = True) And (DarkWii_Red_41U.checked = True) And (DarkWii_Green_41U.checked = True) And (DarkWii_Blue_41U.checked = True) And (darkwii_orange_41U.checked = True) And (SM41U_DWR.checked = True) And (SM41U_DWG.checked = True) And (SM41U_DWB.checked = True) And (SM41U_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle43U(checkstatus)
|
||
|
Toggle42U(checkstatus)
|
||
|
Toggle41U(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
|
||
|
|
||
|
Function EURButton()
|
||
|
If ((A9a.checked = True) And (DarkWii_Red_43E.checked = True) And (DarkWii_Green_43E.checked = True) And (DarkWii_Blue_43E.checked = True) And (darkwii_orange_43E.checked = True) And (SM43E_DWR.checked = True) And (SM43E_DWG.checked = True) And (SM43E_DWB.checked = True) And (SM43E_DWO.checked) And (A8a.checked = True) And (DarkWii_Red_42E.checked = True) And (DarkWii_Green_42E.checked = True) And (DarkWii_Blue_42E.checked = True) And (darkwii_orange_42E.checked = True) And (SM42E_DWR.checked = True) And (SM42E_DWG.checked = True) And (SM42E_DWB.checked = True) And (SM42E_DWO.checked) And (A7e.checked = True) And (DarkWii_Red_41E.checked = True) And (DarkWii_Green_41E.checked = True) And (DarkWii_Blue_41E.checked = True) And (darkwii_orange_41E.checked = True) And (SM41E_DWR.checked = True) And (SM41E_DWG.checked = True) And (SM41E_DWB.checked = True) And (SM41E_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle43E(checkstatus)
|
||
|
Toggle42E(checkstatus)
|
||
|
Toggle41E(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
|
||
|
|
||
|
Function JPNButton()
|
||
|
If ((A94.checked = True) And (DarkWii_Red_43J.checked = True) And (DarkWii_Green_43J.checked = True) And (DarkWii_Blue_43J.checked = True) And (darkwii_orange_43J.checked = True) And (SM43J_DWR.checked = True) And (SM43J_DWG.checked = True) And (SM43J_DWB.checked = True) And (SM43J_DWO.checked) And (A84.checked = True) And (DarkWii_Red_42J.checked = True) And (DarkWii_Green_42J.checked = True) And (DarkWii_Blue_42J.checked = True) And (darkwii_orange_42J.checked = True) And (SM42J_DWR.checked = True) And (SM42J_DWG.checked = True) And (SM42J_DWB.checked = True) And (SM42J_DWO.checked) And (A78.checked = True) And (DarkWii_Red_41J.checked = True) And (DarkWii_Green_41J.checked = True) And (DarkWii_Blue_41J.checked = True) And (darkwii_orange_41J.checked = True) And (SM41J_DWR.checked = True) And (SM41J_DWG.checked = True) And (SM41J_DWB.checked = True) And (SM41J_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle43J(checkstatus)
|
||
|
Toggle42J(checkstatus)
|
||
|
Toggle41J(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
|
||
|
|
||
|
Function KORButton()
|
||
|
If ((A9d.checked = True) And (DarkWii_Red_43K.checked = True) And (DarkWii_Green_43K.checked = True) And (DarkWii_Blue_43K.checked = True) And (darkwii_orange_43K.checked = True) And (SM43K_DWR.checked = True) And (SM43K_DWG.checked = True) And (SM43K_DWB.checked = True) And (SM43K_DWO.checked) And (A8d.checked = True) And (DarkWii_Red_42K.checked = True) And (DarkWii_Green_42K.checked = True) And (DarkWii_Blue_42K.checked = True) And (darkwii_orange_42K.checked = True) And (SM42K_DWR.checked = True) And (SM42K_DWG.checked = True) And (SM42K_DWB.checked = True) And (SM42K_DWO.checked) And (A81.checked = True) And (DarkWii_Red_41K.checked = True) And (DarkWii_Green_41K.checked = True) And (DarkWii_Blue_41K.checked = True) And (darkwii_orange_41K.checked = True) And (SM41K_DWR.checked = True) And (SM41K_DWG.checked = True) And (SM41K_DWB.checked = True) And (SM41K_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle43K(checkstatus)
|
||
|
Toggle42K(checkstatus)
|
||
|
Toggle41K(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
Function Button43U()
|
||
|
If ((A97.checked = True) And (DarkWii_Red_43U.checked = True) And (DarkWii_Green_43U.checked = True) And (DarkWii_Blue_43U.checked = True) And (darkwii_orange_43U.checked = True) And (SM43U_DWR.checked = True) And (SM43U_DWG.checked = True) And (SM43U_DWB.checked = True) And (SM43U_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle43U(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle43U(ByVal checkstatus)
|
||
|
A97.checked = checkstatus
|
||
|
DarkWii_Red_43U.checked = checkstatus
|
||
|
DarkWii_Green_43U.checked = checkstatus
|
||
|
DarkWii_Blue_43U.checked = checkstatus
|
||
|
darkwii_orange_43U.checked = checkstatus
|
||
|
SM43U_DWR.checked = checkstatus
|
||
|
SM43U_DWG.checked = checkstatus
|
||
|
SM43U_DWB.checked = checkstatus
|
||
|
SM43U_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
|
||
|
Function Button42U()
|
||
|
If ((A87.checked = True) And (DarkWii_Red_42U.checked = True) And (DarkWii_Green_42U.checked = True) And (DarkWii_Blue_42U.checked = True) And (darkwii_orange_42U.checked = True) And (SM42U_DWR.checked = True) And (SM42U_DWG.checked = True) And (SM42U_DWB.checked = True) And (SM42U_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle42U(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle42U(ByVal checkstatus)
|
||
|
A87.checked = checkstatus
|
||
|
DarkWii_Red_42U.checked = checkstatus
|
||
|
DarkWii_Green_42U.checked = checkstatus
|
||
|
DarkWii_Blue_42U.checked = checkstatus
|
||
|
darkwii_orange_42U.checked = checkstatus
|
||
|
SM42U_DWR.checked = checkstatus
|
||
|
SM42U_DWG.checked = checkstatus
|
||
|
SM42U_DWB.checked = checkstatus
|
||
|
SM42U_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button41U()
|
||
|
If ((A7b.checked = True) And (DarkWii_Red_41U.checked = True) And (DarkWii_Green_41U.checked = True) And (DarkWii_Blue_41U.checked = True) And (darkwii_orange_41U.checked = True) And (SM41U_DWR.checked = True) And (SM41U_DWG.checked = True) And (SM41U_DWB.checked = True) And (SM41U_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle41U(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle41U(ByVal checkstatus)
|
||
|
A7b.checked = checkstatus
|
||
|
DarkWii_Red_41U.checked = checkstatus
|
||
|
DarkWii_Green_41U.checked = checkstatus
|
||
|
DarkWii_Blue_41U.checked = checkstatus
|
||
|
darkwii_orange_41U.checked = checkstatus
|
||
|
SM41U_DWR.checked = checkstatus
|
||
|
SM41U_DWG.checked = checkstatus
|
||
|
SM41U_DWB.checked = checkstatus
|
||
|
SM41U_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button43E()
|
||
|
If ((A9a.checked = True) And (DarkWii_Red_43E.checked = True) And (DarkWii_Green_43E.checked = True) And (DarkWii_Blue_43E.checked = True) And (darkwii_orange_43E.checked = True) And (SM43E_DWR.checked = True) And (SM43E_DWG.checked = True) And (SM43E_DWB.checked = True) And (SM43E_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle43E(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle43E(ByVal checkstatus)
|
||
|
A9a.checked = checkstatus
|
||
|
DarkWii_Red_43E.checked = checkstatus
|
||
|
DarkWii_Green_43E.checked = checkstatus
|
||
|
DarkWii_Blue_43E.checked = checkstatus
|
||
|
darkwii_orange_43E.checked = checkstatus
|
||
|
SM43E_DWR.checked = checkstatus
|
||
|
SM43E_DWG.checked = checkstatus
|
||
|
SM43E_DWB.checked = checkstatus
|
||
|
SM43E_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button42E()
|
||
|
If ((A8a.checked = True) And (DarkWii_Red_42E.checked = True) And (DarkWii_Green_42E.checked = True) And (DarkWii_Blue_42E.checked = True) And (darkwii_orange_42E.checked = True) And (SM42E_DWR.checked = True) And (SM42E_DWG.checked = True) And (SM42E_DWB.checked = True) And (SM42E_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle42E(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle42E(ByVal checkstatus)
|
||
|
A8a.checked = checkstatus
|
||
|
DarkWii_Red_42E.checked = checkstatus
|
||
|
DarkWii_Green_42E.checked = checkstatus
|
||
|
DarkWii_Blue_42E.checked = checkstatus
|
||
|
darkwii_orange_42E.checked = checkstatus
|
||
|
SM42E_DWR.checked = checkstatus
|
||
|
SM42E_DWG.checked = checkstatus
|
||
|
SM42E_DWB.checked = checkstatus
|
||
|
SM42E_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button41E()
|
||
|
If ((A7e.checked = True) And (DarkWii_Red_41E.checked = True) And (DarkWii_Green_41E.checked = True) And (DarkWii_Blue_41E.checked = True) And (darkwii_orange_41E.checked = True) And (SM41E_DWR.checked = True) And (SM41E_DWG.checked = True) And (SM41E_DWB.checked = True) And (SM41E_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle41E(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle41E(ByVal checkstatus)
|
||
|
A7e.checked = checkstatus
|
||
|
DarkWii_Red_41E.checked = checkstatus
|
||
|
DarkWii_Green_41E.checked = checkstatus
|
||
|
DarkWii_Blue_41E.checked = checkstatus
|
||
|
darkwii_orange_41E.checked = checkstatus
|
||
|
SM41E_DWR.checked = checkstatus
|
||
|
SM41E_DWG.checked = checkstatus
|
||
|
SM41E_DWB.checked = checkstatus
|
||
|
SM41E_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button43J()
|
||
|
If ((A94.checked = True) And (DarkWii_Red_43J.checked = True) And (DarkWii_Green_43J.checked = True) And (DarkWii_Blue_43J.checked = True) And (darkwii_orange_43J.checked = True) And (SM43J_DWR.checked = True) And (SM43J_DWG.checked = True) And (SM43J_DWB.checked = True) And (SM43J_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle43J(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle43J(ByVal checkstatus)
|
||
|
A94.checked = checkstatus
|
||
|
DarkWii_Red_43J.checked = checkstatus
|
||
|
DarkWii_Green_43J.checked = checkstatus
|
||
|
DarkWii_Blue_43J.checked = checkstatus
|
||
|
darkwii_orange_43J.checked = checkstatus
|
||
|
SM43J_DWR.checked = checkstatus
|
||
|
SM43J_DWG.checked = checkstatus
|
||
|
SM43J_DWB.checked = checkstatus
|
||
|
SM43J_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button42J()
|
||
|
If ((A84.checked = True) And (DarkWii_Red_42J.checked = True) And (DarkWii_Green_42J.checked = True) And (DarkWii_Blue_42J.checked = True) And (darkwii_orange_42J.checked = True) And (SM42J_DWR.checked = True) And (SM42J_DWG.checked = True) And (SM42J_DWB.checked = True) And (SM42J_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle42J(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle42J(ByVal checkstatus)
|
||
|
A84.checked = checkstatus
|
||
|
DarkWii_Red_42J.checked = checkstatus
|
||
|
DarkWii_Green_42J.checked = checkstatus
|
||
|
DarkWii_Blue_42J.checked = checkstatus
|
||
|
darkwii_orange_42J.checked = checkstatus
|
||
|
SM42J_DWR.checked = checkstatus
|
||
|
SM42J_DWG.checked = checkstatus
|
||
|
SM42J_DWB.checked = checkstatus
|
||
|
SM42J_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button41J()
|
||
|
If ((A78.checked = True) And (DarkWii_Red_41J.checked = True) And (DarkWii_Green_41J.checked = True) And (DarkWii_Blue_41J.checked = True) And (darkwii_orange_41J.checked = True) And (SM41J_DWR.checked = True) And (SM41J_DWG.checked = True) And (SM41J_DWB.checked = True) And (SM41J_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle41J(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle41J(ByVal checkstatus)
|
||
|
A78.checked = checkstatus
|
||
|
DarkWii_Red_41J.checked = checkstatus
|
||
|
DarkWii_Green_41J.checked = checkstatus
|
||
|
DarkWii_Blue_41J.checked = checkstatus
|
||
|
darkwii_orange_41J.checked = checkstatus
|
||
|
SM41J_DWR.checked = checkstatus
|
||
|
SM41J_DWG.checked = checkstatus
|
||
|
SM41J_DWB.checked = checkstatus
|
||
|
SM41J_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button43K()
|
||
|
If ((A9d.checked = True) And (DarkWii_Red_43K.checked = True) And (DarkWii_Green_43K.checked = True) And (DarkWii_Blue_43K.checked = True) And (darkwii_orange_43K.checked = True) And (SM43K_DWR.checked = True) And (SM43K_DWG.checked = True) And (SM43K_DWB.checked = True) And (SM43K_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle43K(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle43K(ByVal checkstatus)
|
||
|
A9d.checked = checkstatus
|
||
|
DarkWii_Red_43K.checked = checkstatus
|
||
|
DarkWii_Green_43K.checked = checkstatus
|
||
|
DarkWii_Blue_43K.checked = checkstatus
|
||
|
darkwii_orange_43K.checked = checkstatus
|
||
|
SM43K_DWR.checked = checkstatus
|
||
|
SM43K_DWG.checked = checkstatus
|
||
|
SM43K_DWB.checked = checkstatus
|
||
|
SM43K_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button42K()
|
||
|
If ((A8d.checked = True) And (DarkWii_Red_42K.checked = True) And (DarkWii_Green_42K.checked = True) And (DarkWii_Blue_42K.checked = True) And (darkwii_orange_42K.checked = True) And (SM42K_DWR.checked = True) And (SM42K_DWG.checked = True) And (SM42K_DWB.checked = True) And (SM42K_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle42K(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle42K(ByVal checkstatus)
|
||
|
A8d.checked = checkstatus
|
||
|
DarkWii_Red_42K.checked = checkstatus
|
||
|
DarkWii_Green_42K.checked = checkstatus
|
||
|
DarkWii_Blue_42K.checked = checkstatus
|
||
|
darkwii_orange_42K.checked = checkstatus
|
||
|
SM42K_DWR.checked = checkstatus
|
||
|
SM42K_DWG.checked = checkstatus
|
||
|
SM42K_DWB.checked = checkstatus
|
||
|
SM42K_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function Button41K()
|
||
|
If ((A81.checked = True) And (DarkWii_Red_41K.checked = True) And (DarkWii_Green_41K.checked = True) And (DarkWii_Blue_41K.checked = True) And (darkwii_orange_41K.checked = True) And (SM41K_DWR.checked = True) And (SM41K_DWG.checked = True) And (SM41K_DWB.checked = True) And (SM41K_DWO.checked)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
Toggle41K(checkstatus)
|
||
|
End Function
|
||
|
|
||
|
Function Toggle41K(ByVal checkstatus)
|
||
|
A81.checked = checkstatus
|
||
|
DarkWii_Red_41K.checked = checkstatus
|
||
|
DarkWii_Green_41K.checked = checkstatus
|
||
|
DarkWii_Blue_41K.checked = checkstatus
|
||
|
darkwii_orange_41K.checked = checkstatus
|
||
|
SM41K_DWR.checked = checkstatus
|
||
|
SM41K_DWG.checked = checkstatus
|
||
|
SM41K_DWB.checked = checkstatus
|
||
|
SM41K_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function OriginalButton()
|
||
|
If ((A97.checked = True) And (A87.checked = True) And (A7b.checked = True) And (A9a.checked = True) And (A8a.checked = True) And (A7e.checked = True) And (A94.checked = True) And (A84.checked = True) And (A78.checked = True) And (A9d.checked = True) And (A8d.checked = True) And (A81.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
A97.checked = checkstatus
|
||
|
A87.checked = checkstatus
|
||
|
A7b.checked = checkstatus
|
||
|
A9a.checked = checkstatus
|
||
|
A8a.checked = checkstatus
|
||
|
A7e.checked = checkstatus
|
||
|
A94.checked = checkstatus
|
||
|
A84.checked = checkstatus
|
||
|
A78.checked = checkstatus
|
||
|
A9d.checked = checkstatus
|
||
|
A8d.checked = checkstatus
|
||
|
A81.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function RedCSMButton()
|
||
|
If ((DarkWii_Red_43U.checked = True) And (DarkWii_Red_42U.checked = True) And (DarkWii_Red_41U.checked = True) And (DarkWii_Red_43E.checked = True) And (DarkWii_Red_42E.checked = True) And (DarkWii_Red_41E.checked = True) And (DarkWii_Red_43J.checked = True) And (DarkWii_Red_42J.checked = True) And (DarkWii_Red_41J.checked = True) And (DarkWii_Red_43K.checked = True) And (DarkWii_Red_42K.checked = True) And (DarkWii_Red_41K.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
DarkWii_Red_43U.checked = checkstatus
|
||
|
DarkWii_Red_42U.checked = checkstatus
|
||
|
DarkWii_Red_41U.checked = checkstatus
|
||
|
DarkWii_Red_43E.checked = checkstatus
|
||
|
DarkWii_Red_42E.checked = checkstatus
|
||
|
DarkWii_Red_41E.checked = checkstatus
|
||
|
DarkWii_Red_43J.checked = checkstatus
|
||
|
DarkWii_Red_42J.checked = checkstatus
|
||
|
DarkWii_Red_41J.checked = checkstatus
|
||
|
DarkWii_Red_43K.checked = checkstatus
|
||
|
DarkWii_Red_42K.checked = checkstatus
|
||
|
DarkWii_Red_41K.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function GreenCSMButton()
|
||
|
If ((DarkWii_Green_43U.checked = True) And (DarkWii_Green_42U.checked = True) And (DarkWii_Green_41U.checked = True) And (DarkWii_Green_43E.checked = True) And (DarkWii_Green_42E.checked = True) And (DarkWii_Green_41E.checked = True) And (DarkWii_Green_43J.checked = True) And (DarkWii_Green_42J.checked = True) And (DarkWii_Green_41J.checked = True) And (DarkWii_Green_43K.checked = True) And (DarkWii_Green_42K.checked = True) And (DarkWii_Green_41K.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
DarkWii_Green_43U.checked = checkstatus
|
||
|
DarkWii_Green_42U.checked = checkstatus
|
||
|
DarkWii_Green_41U.checked = checkstatus
|
||
|
DarkWii_Green_43E.checked = checkstatus
|
||
|
DarkWii_Green_42E.checked = checkstatus
|
||
|
DarkWii_Green_41E.checked = checkstatus
|
||
|
DarkWii_Green_43J.checked = checkstatus
|
||
|
DarkWii_Green_42J.checked = checkstatus
|
||
|
DarkWii_Green_41J.checked = checkstatus
|
||
|
DarkWii_Green_43K.checked = checkstatus
|
||
|
DarkWii_Green_42K.checked = checkstatus
|
||
|
DarkWii_Green_41K.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function BlueCSMButton()
|
||
|
If ((DarkWii_Blue_43U.checked = True) And (DarkWii_Blue_42U.checked = True) And (DarkWii_Blue_41U.checked = True) And (DarkWii_Blue_43E.checked = True) And (DarkWii_Blue_42E.checked = True) And (DarkWii_Blue_41E.checked = True) And (DarkWii_Blue_43J.checked = True) And (DarkWii_Blue_42J.checked = True) And (DarkWii_Blue_41J.checked = True) And (DarkWii_Blue_43K.checked = True) And (DarkWii_Blue_42K.checked = True) And (DarkWii_Blue_41K.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
DarkWii_Blue_43U.checked = checkstatus
|
||
|
DarkWii_Blue_42U.checked = checkstatus
|
||
|
DarkWii_Blue_41U.checked = checkstatus
|
||
|
DarkWii_Blue_43E.checked = checkstatus
|
||
|
DarkWii_Blue_42E.checked = checkstatus
|
||
|
DarkWii_Blue_41E.checked = checkstatus
|
||
|
DarkWii_Blue_43J.checked = checkstatus
|
||
|
DarkWii_Blue_42J.checked = checkstatus
|
||
|
DarkWii_Blue_41J.checked = checkstatus
|
||
|
DarkWii_Blue_43K.checked = checkstatus
|
||
|
DarkWii_Blue_42K.checked = checkstatus
|
||
|
DarkWii_Blue_41K.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function OrangeCSMButton()
|
||
|
If ((DarkWii_Orange_43U.checked = True) And (DarkWii_Orange_42U.checked = True) And (DarkWii_Orange_41U.checked = True) And (DarkWii_Orange_43E.checked = True) And (DarkWii_Orange_42E.checked = True) And (DarkWii_Orange_41E.checked = True) And (DarkWii_Orange_43J.checked = True) And (DarkWii_Orange_42J.checked = True) And (DarkWii_Orange_41J.checked = True) And (DarkWii_Orange_43K.checked = True) And (DarkWii_Orange_42K.checked = True) And (DarkWii_Orange_41K.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
DarkWii_Orange_43U.checked = checkstatus
|
||
|
DarkWii_Orange_42U.checked = checkstatus
|
||
|
DarkWii_Orange_41U.checked = checkstatus
|
||
|
DarkWii_Orange_43E.checked = checkstatus
|
||
|
DarkWii_Orange_42E.checked = checkstatus
|
||
|
DarkWii_Orange_41E.checked = checkstatus
|
||
|
DarkWii_Orange_43J.checked = checkstatus
|
||
|
DarkWii_Orange_42J.checked = checkstatus
|
||
|
DarkWii_Orange_41J.checked = checkstatus
|
||
|
DarkWii_Orange_43K.checked = checkstatus
|
||
|
DarkWii_Orange_42K.checked = checkstatus
|
||
|
DarkWii_Orange_41K.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function OrangeWADButton()
|
||
|
If ((SM43U_DWO.checked = True) And (SM42U_DWO.checked = True) And (SM41U_DWO.checked = True) And (SM43E_DWO.checked = True) And (SM42E_DWO.checked = True) And (SM41E_DWO.checked = True) And (SM43J_DWO.checked = True) And (SM42J_DWO.checked = True) And (SM41J_DWO.checked = True) And (SM43K_DWO.checked = True) And (SM42K_DWO.checked = True) And (SM41K_DWO.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
SM43U_DWO.checked = checkstatus
|
||
|
SM42U_DWO.checked = checkstatus
|
||
|
SM41U_DWO.checked = checkstatus
|
||
|
SM43E_DWO.checked = checkstatus
|
||
|
SM42E_DWO.checked = checkstatus
|
||
|
SM41E_DWO.checked = checkstatus
|
||
|
SM43J_DWO.checked = checkstatus
|
||
|
SM42J_DWO.checked = checkstatus
|
||
|
SM41J_DWO.checked = checkstatus
|
||
|
SM43K_DWO.checked = checkstatus
|
||
|
SM42K_DWO.checked = checkstatus
|
||
|
SM41K_DWO.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function RedWADButton()
|
||
|
If ((SM43U_DWR.checked = True) And (SM42U_DWR.checked = True) And (SM41U_DWR.checked = True) And (SM43E_DWR.checked = True) And (SM42E_DWR.checked = True) And (SM41E_DWR.checked = True) And (SM43J_DWR.checked = True) And (SM42J_DWR.checked = True) And (SM41J_DWR.checked = True) And (SM43K_DWR.checked = True) And (SM42K_DWR.checked = True) And (SM41K_DWR.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
SM43U_DWR.checked = checkstatus
|
||
|
SM42U_DWR.checked = checkstatus
|
||
|
SM41U_DWR.checked = checkstatus
|
||
|
SM43E_DWR.checked = checkstatus
|
||
|
SM42E_DWR.checked = checkstatus
|
||
|
SM41E_DWR.checked = checkstatus
|
||
|
SM43J_DWR.checked = checkstatus
|
||
|
SM42J_DWR.checked = checkstatus
|
||
|
SM41J_DWR.checked = checkstatus
|
||
|
SM43K_DWR.checked = checkstatus
|
||
|
SM42K_DWR.checked = checkstatus
|
||
|
SM41K_DWR.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function BlueWADButton()
|
||
|
If ((SM43U_DWB.checked = True) And (SM42U_DWB.checked = True) And (SM41U_DWB.checked = True) And (SM43E_DWB.checked = True) And (SM42E_DWB.checked = True) And (SM41E_DWB.checked = True) And (SM43J_DWB.checked = True) And (SM42J_DWB.checked = True) And (SM41J_DWB.checked = True) And (SM43K_DWB.checked = True) And (SM42K_DWB.checked = True) And (SM41K_DWB.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
SM43U_DWB.checked = checkstatus
|
||
|
SM42U_DWB.checked = checkstatus
|
||
|
SM41U_DWB.checked = checkstatus
|
||
|
SM43E_DWB.checked = checkstatus
|
||
|
SM42E_DWB.checked = checkstatus
|
||
|
SM41E_DWB.checked = checkstatus
|
||
|
SM43J_DWB.checked = checkstatus
|
||
|
SM42J_DWB.checked = checkstatus
|
||
|
SM41J_DWB.checked = checkstatus
|
||
|
SM43K_DWB.checked = checkstatus
|
||
|
SM42K_DWB.checked = checkstatus
|
||
|
SM41K_DWB.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
Function GreenWADButton()
|
||
|
If ((SM43U_DWG.checked = True) And (SM42U_DWG.checked = True) And (SM41U_DWG.checked = True) And (SM43E_DWG.checked = True) And (SM42E_DWG.checked = True) And (SM41E_DWG.checked = True) And (SM43J_DWG.checked = True) And (SM42J_DWG.checked = True) And (SM41J_DWG.checked = True) And (SM43K_DWG.checked = True) And (SM42K_DWG.checked = True) And (SM41K_DWG.checked = True)) Then
|
||
|
checkstatus = False
|
||
|
else
|
||
|
checkstatus = True
|
||
|
End If
|
||
|
SM43U_DWG.checked = checkstatus
|
||
|
SM42U_DWG.checked = checkstatus
|
||
|
SM41U_DWG.checked = checkstatus
|
||
|
SM43E_DWG.checked = checkstatus
|
||
|
SM42E_DWG.checked = checkstatus
|
||
|
SM41E_DWG.checked = checkstatus
|
||
|
SM43J_DWG.checked = checkstatus
|
||
|
SM42J_DWG.checked = checkstatus
|
||
|
SM41J_DWG.checked = checkstatus
|
||
|
SM43K_DWG.checked = checkstatus
|
||
|
SM42K_DWG.checked = checkstatus
|
||
|
SM41K_DWG.checked = checkstatus
|
||
|
End Function
|
||
|
|
||
|
|
||
|
</script>
|
||
|
<style type="text/css">
|
||
|
input.bigcheck {
|
||
|
height: 30px;
|
||
|
width: 30px;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
table, th {
|
||
|
text-align: left;
|
||
|
vertical-align: middle;
|
||
|
}, td {
|
||
|
border:1px solid black;
|
||
|
text-align: left;
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<!--<a href="https://modmii.github.io" target="_blank"><img src="https://modmii.github.io/Images/modmiibanner.png" border="0" style="width:80%;height: 100px"/></a><br>-->
|
||
|
|
||
|
|
||
|
<!--<button style="width:20%;position: absolute; left: 15;" onClick="vbscript:Page'HTAstuff', 'DLPAGE2.hta'"><font face="Arial Black">Page2</font></button>-->
|
||
|
<button title="Return to Main Menu" style="width:190; position: absolute; left: 15; top: 10;" onClick="vbscript:Page'MENU','DLPAGE3.hta'"><font face="Arial Black">Main Menu</font></button>
|
||
|
<button title="Download System Menus, IOSs, MIOSs, Channels, etc." style="width:93; position: absolute; left: 15; top: 45;" onClick="vbscript:Page'DLPAGES','DLPAGE1.hta'"><font face="Arial Black">Page 1</font></button>
|
||
|
<button title="Download Wii Apps, USB-Loader Files, PC Programs, Exploits, etc." style="width:93; position: absolute; left: 112; top: 45;" onClick="vbscript:Page'DLPAGES','DLPAGE2.hta'"><font face="Arial Black">Page 2</font></button>
|
||
|
<button disabled title="Download System Menu Themes" style="width:93; position: absolute; left: 15; top: 80;" onClick="vbscript:Page'DLPAGES','DLPAGE3.hta'"><font face="Arial Black">Page 3</font></button>
|
||
|
<button title="Download cIOSs and cMIOSs" style="width:93; position: absolute; left: 112; top: 80;" onClick="vbscript:Page'DLPAGES','DLPAGE4.hta'"><font face="Arial Black">Page 4</font></button>
|
||
|
|
||
|
|
||
|
|
||
|
<button title="Click to Download Files to: DLFOLDER" style="width:15%;position: absolute; right: 15; top: 10;" onClick="vbscript:FULLCLOSE()"><font face="Arial Black">Download!</font></button>
|
||
|
<button title="Change Current Download Folder: DLFOLDER" style="width:15%;position: absolute; right: 15; top: 45;" onClick="vbscript:Page'DRIVECHANGE','DLPAGE3.hta'"><font face="Arial Black">Download Folder</font></button>
|
||
|
<font size="2" face="Arial Black italic" style="position: absolute; right: 30; top: 100;" title="Hovering your mouse over various items on this page will display fun facts and helpful tips!" >(Hover over items for Tooltips)</font>
|
||
|
|
||
|
<center>
|
||
|
<font size="4" face="Arial Black italic"><b>Download Page 3</b></font>
|
||
|
</center>
|
||
|
|
||
|
|
||
|
|
||
|
<center>
|
||
|
<font size="2" color="red">WARNING: these files MAY CAUSE BRICK if you do NOT know what you are doing!</font><br>
|
||
|
<font size="2" color="orange">DON'T INSTALL THEMES WITHOUT PROTECTION: BOOTMII, PRIILOADER AND NAND BACKUP</font><br>
|
||
|
|
||
|
<font size="2" color="green">ONLY INSTALL THEMES FOR YOUR SPECIFIC SYSTEM MENU VERSION AND REGION!</font><br>
|
||
|
<br>
|
||
|
|
||
|
|
||
|
|
||
|
<button title="Toggle All Downloads" style="width:6%" onClick="vbscript:AllButton()"><font face="Arial Black">ALL</font></button>
|
||
|
|
||
|
<button title="Toggle U Region downloads" style="width:6%;" onClick="vbscript:USAButton()"><font face="Arial Black">USA</font></button>
|
||
|
|
||
|
<button title="Toggle E Region downloads" style="width:6%;" onClick="vbscript:EURButton()"><font face="Arial Black">EUR</font></button>
|
||
|
|
||
|
<button title="Toggle J Region downloads" style="width:6%;" onClick="vbscript:JPNButton()"><font face="Arial Black">JPN</font></button>
|
||
|
|
||
|
<button title="Toggle K Region downloads" style="width:6%;" onClick="vbscript:KORButton()"><font face="Arial Black">KOR</font></button>
|
||
|
|
||
|
<!--<font style="color: blue" size="5" onClick="vbscript:www'https://modmii.github.io/WiiThemes.html'"><u>Preview Themes</u></font>-->
|
||
|
|
||
|
</center>
|
||
|
|
||
|
<br>
|
||
|
|
||
|
<!--<table style="font-size:25px;font-family:Calibri;">-->
|
||
|
<table border="1" style="table-layout:fixed">
|
||
|
|
||
|
<tr>
|
||
|
<th style="text-align:center"><button title="Preview Available Themes on Youtube" style="width:99%;" onClick="vbscript:www'https://modmii.github.io/WiiThemes.html'"><font face="Arial Black">Youtube<br>Preview</font></button></th>
|
||
|
<th title="To restore the original Wii theme, install the 000000XX.app file for your System Menu version using MyMenuifyMod" style="text-align:center"><button style="width:99%;" onClick="vbscript:OriginalButton()"><font face="Arial Black">Original<br>APP</font></button></th>
|
||
|
<th title="Toggle Red Custom System Menu (CSM) themes" style="text-align:center"><button style="width:99%;" onClick="vbscript:RedCSMButton()"><font face="Arial Black">Red<br>CSM</font></button></th>
|
||
|
<th title="Toggle Green Custom System Menu (CSM) themes" style="text-align:center"><button style="width:99%;" onClick="vbscript:GreenCSMButton()"><font face="Arial Black">Green<br>CSM</font></button></th>
|
||
|
<th title="Toggle Blue Custom System Menu (CSM) themes" style="text-align:center"><button style="width:99%;" onClick="vbscript:BlueCSMButton()"><font face="Arial Black">Blue<br>CSM</font></button></th>
|
||
|
<th title="Toggle Orange Custom System Menu (CSM) themes" style="text-align:center"><button style="width:99%;" onClick="vbscript:OrangeCSMButton()"><font face="Arial Black">Orange<br>CSM</font></button></th>
|
||
|
<th title="Toggle Red themed System Menu WADs Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><button style="width:99%;" onClick="vbscript:RedWADButton()"><font face="Arial Black">Red<br>WAD</font></button></th>
|
||
|
<th title="Toggle Green themed System Menu WADs Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><button style="width:99%;" onClick="vbscript:GreenWADButton()"><font face="Arial Black">Green<br>WAD</font></button></th>
|
||
|
<th title="Toggle Blue themed System Menu WADs Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><button style="width:99%;" onClick="vbscript:BlueWADButton()"><font face="Arial Black">Blue<br>WAD</font></button></th>
|
||
|
<th title="Toggle Orange themed System Menu WADs Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><button style="width:99%;" onClick="vbscript:OrangeWADButton()"><font face="Arial Black">Orange<br>WAD</font></button></th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<th title="Toggle 4.3U downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button43U()"><font face="Arial Black">4.3U</font></button></th>
|
||
|
<th title="00000097_4.3U.app is used to restore the original Wii theme on 4.3U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A97" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_43U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_43U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_43U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_43U" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43U_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43U_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43U_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43U_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.2U downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button42U()"><font face="Arial Black">4.2U</font></button></th>
|
||
|
<th title="00000087_4.2U.app is used to restore the original Wii theme on 4.2U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A87" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_42U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_42U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_42U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_42U" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42U_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42U_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42U_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42U_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.1U downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button41U()"><font face="Arial Black">4.1U</font></button></th>
|
||
|
<th title="0000007b_4.1U.app is used to restore the original Wii theme on 4.1U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A7b" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_41U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_41U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_41U" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1U System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_41U" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41U_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41U_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41U_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41U_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.3E downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button43E()"><font face="Arial Black">4.3E</font></button></th>
|
||
|
<th title="0000009a_4.3E.app is used to restore the original Wii theme on 4.3E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A9a" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_43E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_43E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_43E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_43E" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43E_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43E_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43E_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43E_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.2E downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button42E()"><font face="Arial Black">4.2E</font></button></th>
|
||
|
<th title="0000008a_4.2E.app is used to restore the original Wii theme on 4.2E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A8a" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_42E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_42E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_42E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_42E" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42E_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42E_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42E_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42E_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.1E downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button41E()"><font face="Arial Black">4.1E</font></button></th>
|
||
|
<th title="0000007e_4.1E.app is used to restore the original Wii theme on 4.1E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A7e" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_41E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_41E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_41E" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1E System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_41E" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41E_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41E_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41E_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41E_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.3J downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button43J()"><font face="Arial Black">4.3J</font></button></th>
|
||
|
<th title="00000094_4.3J.app is used to restore the original Wii theme on 4.3J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A94" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_43J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_43J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_43J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_43J" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43J_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43J_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43J_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43J_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.2J downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button42J()"><font face="Arial Black">4.2J</font></button></th>
|
||
|
<th title="00000084_4.2J.app is used to restore the original Wii theme on 4.2J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A84" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_42J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_42J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_42J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_42J" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42J_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42J_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42J_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42J_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.1J downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button41J()"><font face="Arial Black">4.1J</font></button></th>
|
||
|
<th title="00000078_4.1J.app is used to restore the original Wii theme on 4.1J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A78" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_41J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_41J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_41J" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1J System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_41J" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41J_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41J_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41J_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41J_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.3K downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button43K()"><font face="Arial Black">4.3K</font></button></th>
|
||
|
<th title="0000009d_4.3K.app is used to restore the original Wii theme on 4.3K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A9d" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_43K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_43K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_43K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.3K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_43K" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43K_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43K_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43K_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM43K_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.2K downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button42K()"><font face="Arial Black">4.2K</font></button></th>
|
||
|
<th title="0000008d_4.2K.app is used to restore the original Wii theme on 4.2K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A8d" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_42K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_42K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_42K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.2K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_42K" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42K_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42K_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42K_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM42K_DWO" /></th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th title="Toggle 4.1K downloads" style="text-align:center"><button style="width:99%;" onClick="vbscript:Button41K()"><font face="Arial Black">4.1K</font></button></th>
|
||
|
<th title="00000081_4.1K.app is used to restore the original Wii theme on 4.1K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="A81" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Red_41K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Green_41K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="DarkWii_Blue_41K" /></th>
|
||
|
<th title="This CSM theme should only be installed on 4.1K System Menu versions using MyMenuifyMod" style="text-align:center"><input class="bigcheck" type="checkbox" name="darkwii_orange_41K" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41K_DWR" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41K_DWG" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41K_DWB" /></th>
|
||
|
<th title="Warning: It's safer to use CSMs instead of WADs to change themes. Priiloader gets REMOVED when installing ANY System Menu WAD, be sure to reinstall it ASAP! Themed System Menu WADs are intended to only be used if changing System Menus anyway." style="text-align:center"><input class="bigcheck" type="checkbox" name="SM41K_DWO" /></th>
|
||
|
</tr>
|
||
|
|
||
|
|
||
|
</table>
|
||
|
<center>
|
||
|
<br>
|
||
|
|
||
|
<label title="A Wii App that installs System Menu themes from CSM files created by ModMii, ThemeMii or MyMenu. Also supports APP files to restore original themes. Drag a mym file onto ModMii to convert it to csm. WARNING: Make sure you have Priiloader, Bootmii and NAND backup before experimenting with themes!"><input class="bigcheck" type="checkbox" name="MyM" /> MyMenuifyMod</label>
|
||
|
|
||
|
|
||
|
<b>Channel Effect:</b>
|
||
|
<label title="When moving the Wii pointer over a channel it's border will glow without any spinning animation"><input type="radio" id="effect1" name="effect" value="No-Spin">No-Spin</label>
|
||
|
<label title="When moving the Wii pointer over a channel it's border will display a spinning animation"><input type="radio" id="effect2" name="effect" value="Spin">Spin</label>
|
||
|
<label title="When moving the Wii pointer over a channel it's border will display a fast-spinning animation"><input type="radio" id="effect3" name="effect" value="Fast-Spin">Fast-Spin</label>
|
||
|
</center>
|
||
|
|
||
|
</body>
|
||
|
</html>
|