
Gustorm
Active Members-
Posts
27 -
Joined
-
Last visited
Everything posted by Gustorm
-
EzSkin_1-2-3 (exe) 1,000+ Skin & Button Choices
Gustorm replied to Valuater's topic in AutoIt Example Scripts
Please can somebody upload JScript's EzSkin converter? I really needed that, and I can't find a place to download. -
With inetget? Nothing. It just downloads a 0KB file. With IE.au3 it's simply not good. I can't save the file to a specified directory, and there is that message in IE: do yoöu want to download the file? So it's too complicated. I need a function what's similar(if noot the same) to the inetget but it should download wfiles from this file. I've tried with simple inetget, inetget with password(http://xxxx:yyyy@tesnexus.com), and IE.au3. I don't really undarstand the http.au3 so i haven't tried it with that yet. If someone could tell me which function is good for this, or how to make this to work I'd bee very happy. Thanks
-
Here is this site: www.tesnexus.com On this, if you want to download a file bigger than 2MB you must be logged in. So i want to make a script what: 1. Log you in to the site 2. Download the file to a specified location with a specified name with a progress bar if possible 3. The script should wait the end of the download before starting any new functions(after the download there will be a MsgBox) So this is what I'd like. I hope it is clear now. If you want even more detail, ask and I'll answer
-
Please If someone know a soulution, tell it to me, because I can't continue my program until I solve this problem.
-
I think it's not good. I'd need a progress bar for the download(easy with inetget), and I can't download with http.au3 from tesnexus, because it's password protected(with files larger than 2MB) So I'd like an inetget function with useable login on this site: www.tesnexus.com (Maybe http.au3 is good but I can't use it, there are no description or example scripts where I can learn from)
-
Isn't there a way to download with the IE.au3 similar to integet? Or download with inetget with logged in Tesnexus? This is my problem: if i download with IE.au3 the script won't wait until the download is finished(AND i cant choose which folder I want to download), and the inetget script wont download because it isn't logged in... I hope somebody can help.
-
Problem solved:) Thank you for your help.
-
Well, i spent my whole afternoon(and eveening:P) to figure out how to use the IE.au3 UDF. I didn't succeed:D I wanted to make an easy script(easy for those, who know what to do). It would be really important for me to make this. I want the script to go to this site: http://tesnexus.com/modules/login/index.php?redirect=/ fill in the Username and the password fields with $username and $password and then click to the login. I know it is very easy, but please if you can help me. Thanks
-
Open a website with a $ variable
Gustorm replied to Gustorm's topic in AutoIt General Help and Support
It was about wildcards... and the & sign. But now I think I understood it -
Open a website with a $ variable
Gustorm replied to Gustorm's topic in AutoIt General Help and Support
Yes it is thank you. I just dont know in which situations should I use &. Freefry: I wrote wating for solution becouse it was boring that I always wrtite Thanks for your help -
Open a website with a $ variable
Gustorm replied to Gustorm's topic in AutoIt General Help and Support
This isnt good. For this I need the filename, and that's the most important, that i only want to write a part of the filename with * instead of the letters(like in windows search: if you dont know the whole filename you can type in a * insted of the missing part. Waiting for solution -
Open a website with a $ variable
Gustorm replied to Gustorm's topic in AutoIt General Help and Support
Thanks and one last question what isnt really connected to this thread: if i use ShellExecute how can i use * instead of characters after the part of the word? It simply gives me an error when i do that. Example: ShellExecute(@ScriptDir & "\Data\Ins*.msi") So i want my program to run those msi-s in that folder what begin with Ins. Thanks for you help! -
Open a website with a $ variable
Gustorm replied to Gustorm's topic in AutoIt General Help and Support
And if i have got that variable in the middle of the address? Like www.x$yyyxx.com -
I have got a problem: I want to open a website For example: www.xxx.com/ , but i need a $yyy after the /(The $yyy is a value got form an input box). Is there a way to do that? So the final website shoul look like this: www.xxx.com/$yyy Hope you can help
-
Problems go problems come:) I only have two non-working features in my program. The first is that website thing THE SECOND: Isnt there a way to use * when using shellexecute? So: ABC*.exe(and the * means characters after abc) PLease help me if you can i want to do this program as good as possible
-
I have got 2 more problems(hope the last) and i didnt want to make a new topi for it:) my first problem: SOLVED Foolish mistake Second: I want to open a website: www.yyy.com, but i want to add $xxx to it. The user gets the $xxx from an input box So the website looks like this www.yyy.com/$xxx Hope you understand
-
yes it is and thank you:)
-
And if i have got an input box, and i want to autocomplete it with the data the user choosed?(Of course after that the user choosed the file)
-
I have got an idea, but I don't know how to make it So: i have got a button(Browse). I'd like to that that, if i click to this button the basic windows select a file dialog come up, and won't close until the user choose a file with the filename xxx.exe. Sorry for the bad english and thanks for your help
-
LOL I cant believe it:D After i removed the EzSkin.au3 from the folder of the program and compiled it to a .exe it works fine:D
-
So if you run the start func (at any way) you mustn't move the transparency slider first?
-
It has something to do with EzSkin try this(No EzSkin, but exactly the SAME script): #include <GUIConstants.au3> #Include <Constants.au3> #Include <Misc.au3> #include <IE.au3> #include <GUIConstantsEX.au3> #include <GUIListView.au3> #include <ListViewConstants.au3> #include <EZSkin.au3> #include <WindowsConstants.au3> #include <StaticConstants.au3> HotKeySet("{F1}", "start") HotKeySet("{F2}", "stop") HotKeySet("{F3}", "Minimize") HotKeySet("{F4}", "Maximize") HotKeySet("{F5}", "Hide") HotKeySet("{F6}", "Show") HotKeySet("{F9}", "GUIClose") Opt ("TrayOnEventMode", 1) Opt ("TrayMenuMode", 1) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Declaring Section ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; $title = "SRO Manager" $resolution = @DesktopHeight + @DesktopWidth $_trans = 0 $stopscript = 0 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Declaring Section _ End ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; TraySetToolTip($title) TraySetOnEvent($TRAY_EVENT_PRIMARYDOUBLE, "HideSHow") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; $updateGUI = GUICreate($title) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opt("GUIOnEventMode", 1) #Region ### START Koda GUI section ### Form= $Form3 = GUICreate($title, 465, 248, 178, 365) GUISetBkColor(0x0A246A) GUISetOnEvent($GUI_EVENT_CLOSE, "GuiClose") GUISetOnEvent($GUI_EVENT_MINIMIZE, "HideShow") GUISetOnEvent($GUI_EVENT_MAXIMIZE, "HideShow") $SRO = GUICtrlCreateTab(8, 8, 449, 233, $WS_BORDER, $WS_EX_STATICEDGE) GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) $HLPR = GUICtrlCreateTabItem("SRO Helper") $Rapi = GUICtrlCreateGroup("Rapi's skill helper", 23, 39, 177, 169) $Run = GUICtrlCreateButton("Run", 39, 55, 145, 25, 0) GUICtrlSetOnEvent($Run, "start") $Stop = GUICtrlCreateButton("Stop", 55, 95, 113, 25, 0) GUICtrlSetOnEvent($Stop, "stop") $Exit = GUICtrlCreateButton("Exit", 31, 175, 65, 25, 0) GUICtrlSetOnEvent($Exit, "GUIClose") $Ex = GUICtrlCreateLabel("Press F9 to exit", 111, 183, 76, 17) $RS = GUICtrlCreateLabel("Press F1 to run and F2 to stop", 39, 135, 146, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) $MNG = GUICtrlCreateGroup("SRO Manager", 209, 40, 233, 169) $Minimize = GUICtrlCreateButton("Minimize", 217, 56, 81, 25, 0) GUICtrlSetOnEvent($Minimize, "Minimize") $Maximize = GUICtrlCreateButton("Maximize", 217, 88, 81, 25, 0) GUICtrlSetOnEvent($Maximize, "Maximize") $Hide = GUICtrlCreateButton("Hide", 217, 120, 81, 25, 0) GUICtrlSetOnEvent($Hide, "Hide") $Show = GUICtrlCreateButton("Show", 217, 152, 81, 25, 0) GUICtrlSetOnEvent($Show, "Show") $Min = GUICtrlCreateLabel(" Press F3 to minimize", 321, 56, 105, 17, BitOR($SS_CENTER,$SS_CENTERIMAGE)) $Max = GUICtrlCreateLabel(" Press F4 to maximize", 321, 96, 111, 17) $Hid = GUICtrlCreateLabel("Press F5 to hide", 329, 128, 80, 17) $Sho = GUICtrlCreateLabel("Press F6 to show", 329, 152, 85, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) $Trans = GUICtrlCreateSlider(351, 215, 94, 21) GUICtrlSetLimit($Trans, 250, 50) GUICtrlSetData($Trans, 50) $Tran = GUICtrlCreateLabel("Transparency", 271, 220, 69, 17) $BL = GUICtrlCreateTabItem("Bots and Loaders") $Testo = GUICtrlCreateGroup("Testosterone Loader", 21, 43, 201, 89) $Tes = GUICtrlCreateLabel("Only works with default SRO Install", 37, 99, 169, 17) $Test = GUICtrlCreateButton("Install Testosterone Loader", 37, 67, 161, 25, 0) GUICtrlSetOnEvent($Test, "install") GUICtrlCreateGroup("", -99, -99, 1, 1) $grey = GUICtrlCreateGroup("GreyFox's NoDC Client", 236, 43, 193, 89) $nodc = GUICtrlCreateButton("Install NoDC Client", 244, 67, 169, 25, 0) GUICtrlSetOnEvent($nodc, "NoDC") $warn = GUICtrlCreateLabel("Only works with default SRO Install", 244, 99, 169, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) $AL = GUICtrlCreateTabItem("Auto Login") $CS = GUICtrlCreateLabel("COMING SOON", 95, 95, 239, 41) GUICtrlSetFont(-1, 26, 400, 0, "MS Sans Serif") $ABOUT = GUICtrlCreateTabItem("About") GUICtrlSetState(-1,$GUI_SHOW) $Pics = GUICtrlCreatePic(@ScriptDir & "Files\icon-sro.jpg", 21, 36, 113, 100) $Pname = GUICtrlCreateLabel("Product Name", 154, 47, 72, 17, $WS_GROUP) $Readme = GUICtrlCreateButton("Readme", 257, 113, 161, 41, 0) GUICtrlSetOnEvent($Readme, "readme") $helper = GUICtrlCreateLabel("SRO Helper", 233, 47, 61, 17) $version = GUICtrlCreateLabel("Version", 157, 78, 39, 17, $WS_GROUP) $onedotnul = GUICtrlCreateLabel("1.0", 201, 79, 19, 17) $Cop = GUICtrlCreateLabel("Copyright", 27, 144, 48, 17, $WS_GROUP) $RG = GUICtrlCreateLabel("Rapi and Gustorn", 80, 145, 87, 17) $COM = GUICtrlCreateLabel("Comments", 28, 171, 53, 17, $WS_GROUP) $Free = GUICtrlCreateLabel("The program is freeware, feel free to modify it", 85, 171, 215, 17) GUICtrlCreateTabItem("") GUISetState(@SW_SHOW) trans() #EndRegion ### END Koda GUI section ### While 1 Sleep(100) WinSetTrans($Form3,"",GUICtrlRead($Trans)) WEnd ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Func Start() $stopscript=0 Do Send("1") Sleep(250) Send("2") Sleep(250) Send("3") Sleep(250) Send("4") Sleep(250) Send("5") Sleep(250) Send("6") Sleep(250) Send("7") Sleep(250) Until $stopscript = 1 EndFunc Func Stop() $stopscript = 1 endfunc Func minimize() WinSetState("SRO_Client","",@SW_MINIMIZE) EndFunc Func maximize() WinSetState("SRO_Client","",@SW_MAXIMIZE) EndFunc Func hide() WinSetState("SRO_Client","",@SW_HIDE) EndFunc Func show() WinSetState("SRO_Client","",@SW_SHOW) EndFunc Func readme() ShellExecute(@ScriptDir & "Files\readme.txt") EndFunc Func install() FileCopy(@ScriptDir & "Testosterone\C19H28O2.ini", "C:\Program Files\Silkroad") FileCopy(@ScriptDir & "Testosterone\C19H28O2.dll", "C:\Program Files\Silkroad") FileCopy(@ScriptDir & "Testosterone\Loader.exe", "C:\Program Files\Silkroad") EndFunc Func NoDC() $iMsgBoxAnswer = MsgBox( 4100, "Confirmation", "Do you really want to install GreyFox's NoDC client? The application will make a backup file: sro_client_backup.exe (just rename the file to restore it)" ) Select Case $iMsgBoxAnswer = 6 ;Yes FileCopy( "C:\Program Files\Silkroad\sro_client.exe", "C:\Program Files\Silkroad\sro_client_backup.exe") FileCopy(@ScriptDir & "Client\sro_client.exe", "C:\Program Files\Silkroad\sro_client.exe", 1) EndSelect EndFunc Func Trans() If $_trans = 220 Then For $_trans = GUICtrlRead($Trans) To 0 Step - 0.1 WinSetTrans($Form3,"",$_trans) GUICtrlSetData($Trans,$_trans) Next ElseIf $_trans = 0 Then WinSetTrans($title,"",$_trans) GUISetState() For $_trans = 0 To 220 Step 0.3 WinSetTrans($Form3,"",$_trans) GUICtrlSetData($Trans,$_trans) Next EndIf EndFunc Func HideSHow() If $show = True Then $_trans = 220 trans() GUISetState(@SW_HIDE,$title & ".") $show = False Else $_trans = 0 trans() GUISetState(@SW_SHOW,$title & ".") $show = True EndIf EndFunc Func GuiClose() $Quit = MsgBox(36,$title,"Are you sure you want to Quit?") If $Quit = 6 Then $_trans = 220 trans() Exit EndIf EndFunc
-
Thank you for the modified script, but the problem is still the same: I have a strange problem after put my script into EzSkin format. The problem is the run function of my script is only working AFTER you moved the transparency slider... I've tested it with your script too but it's the same... Pls help me if you can
-
Cant edit now sorry for the double post: If you really dont like that here it is with only the buttons changed: #include <GUIConstants.au3> #Include <Constants.au3> #Include <Misc.au3> #include <IE.au3> #include <GUIConstantsEX.au3> #include <GUIListView.au3> #include <ListViewConstants.au3> #include <EZSkin.au3> #include <WindowsConstants.au3> #include <StaticConstants.au3> HotKeySet("{F1}", "start") HotKeySet("{F2}", "stop") HotKeySet("{F3}", "Minimize") HotKeySet("{F4}", "Maximize") HotKeySet("{F5}", "Hide") HotKeySet("{F6}", "Show") HotKeySet("{F9}", "GUIClose") Opt ("TrayOnEventMode", 1) Opt ("TrayMenuMode", 1) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Declaring Section ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; $title = "SRO Manager" $resolution = @DesktopHeight + @DesktopWidth $_trans = 0 $stopscript = 0 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Declaring Section _ End ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; TraySetToolTip($title) TraySetOnEvent($TRAY_EVENT_PRIMARYDOUBLE, "HideSHow") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; $updateGUI = GUICreate($title) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opt("GUIOnEventMode", 1) #Region ### START Koda GUI section ### Form= $Form3 = EzSkinGUICreate($title, 465, 248, 178, 365) GUISetBkColor(0x0A246A) GUISetOnEvent($GUI_EVENT_CLOSE, "GuiClose") GUISetOnEvent($GUI_EVENT_MINIMIZE, "HideShow") GUISetOnEvent($GUI_EVENT_MAXIMIZE, "HideShow") $SRO = GUICtrlCreateTab(8, 8, 449, 233, $WS_BORDER, $WS_EX_STATICEDGE) GUICtrlSetResizing(-1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) $HLPR = GUICtrlCreateTabItem("SRO Helper") $Rapi = GUICtrlCreateGroup("Rapi's skill helper", 23, 39, 177, 169) $Run = EZSkinButton("Run", 39, 55, 145, 25) GUICtrlSetOnEvent($Run, "start") $Stop = EZSkinButton("Stop", 55, 95, 113, 25, 0) GUICtrlSetOnEvent($Stop, "stop") $Exit = EZSkinButton("Exit", 31, 175, 65, 25, 0) GUICtrlSetOnEvent($Exit, "GUIClose") $Ex = GUICtrlCreateLabel("Press F9 to exit", 111, 183, 76, 17) $RS = GUICtrlCreateLabel("Press F1 to run and F2 to stop", 39, 135, 146, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) $MNG = GUICtrlCreateGroup("SRO Manager", 209, 40, 233, 169) $Minimize = EZSkinButton("Minimize", 217, 56, 81, 25, 0) GUICtrlSetOnEvent($Minimize, "Minimize") $Maximize = EZSkinButton("Maximize", 217, 88, 81, 25, 0) GUICtrlSetOnEvent($Maximize, "Maximize") $Hide = EZSkinButton("Hide", 217, 120, 81, 25, 0) GUICtrlSetOnEvent($Hide, "Hide") $Show = EZSkinButton("Show", 217, 152, 81, 25, 0) GUICtrlSetOnEvent($Show, "Show") $Min = GUICtrlCreateLabel(" Press F3 to minimize", 321, 56, 105, 17, BitOR($SS_CENTER,$SS_CENTERIMAGE)) $Max = GUICtrlCreateLabel(" Press F4 to maximize", 321, 96, 111, 17) $Hid = GUICtrlCreateLabel("Press F5 to hide", 329, 128, 80, 17) $Sho = GUICtrlCreateLabel("Press F6 to show", 329, 152, 85, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) $Trans = GUICtrlCreateSlider(351, 215, 94, 21) GUICtrlSetLimit($Trans, 250, 50) GUICtrlSetData($Trans, 50) $Tran = GUICtrlCreateLabel("Transparency", 271, 220, 69, 17) $BL = GUICtrlCreateTabItem("Bots and Loaders") $Testo = GUICtrlCreateGroup("Testosterone Loader", 21, 43, 201, 89) $Tes = GUICtrlCreateLabel("Only works with default SRO Install", 37, 99, 169, 17) $Test = EZSkinButton("Install Testosterone Loader", 37, 67, 161, 25, 0) GUICtrlSetOnEvent($Test, "install") GUICtrlCreateGroup("", -99, -99, 1, 1) $grey = GUICtrlCreateGroup("GreyFox's NoDC Client", 236, 43, 193, 89) $nodc = EZSkinButton("Install NoDC Client", 244, 67, 169, 25, 0) GUICtrlSetOnEvent($nodc, "NoDC") $warn = GUICtrlCreateLabel("Only works with default SRO Install", 244, 99, 169, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) $AL = GUICtrlCreateTabItem("Auto Login") $CS = GUICtrlCreateLabel("COMING SOON", 95, 95, 239, 41) GUICtrlSetFont(-1, 26, 400, 0, "MS Sans Serif") $ABOUT = GUICtrlCreateTabItem("About") GUICtrlSetState(-1,$GUI_SHOW) $Pics = GUICtrlCreatePic(@ScriptDir & "Files\icon-sro.jpg", 21, 36, 113, 100) $Pname = GUICtrlCreateLabel("Product Name", 154, 47, 72, 17, $WS_GROUP) $Readme = EZSkinButton("Readme", 257, 113, 161, 41, 0) GUICtrlSetOnEvent($Readme, "readme") $helper = GUICtrlCreateLabel("SRO Helper", 233, 47, 61, 17) $version = GUICtrlCreateLabel("Version", 157, 78, 39, 17, $WS_GROUP) $onedotnul = GUICtrlCreateLabel("2.0", 201, 79, 19, 17) $Cop = GUICtrlCreateLabel("Copyright", 27, 144, 48, 17, $WS_GROUP) $RG = GUICtrlCreateLabel("Rapi and Gustorn, Ideas: ADS", 80, 145, 87, 17) $COM = GUICtrlCreateLabel("Comments", 28, 171, 53, 17, $WS_GROUP) $Free = GUICtrlCreateLabel("The program is freeware, feel free to modify it", 85, 171, 215, 17) GUICtrlCreateTabItem("") GUISetState(@SW_SHOW) trans() #EndRegion ### END Koda GUI section ### While 1 EzSkinOver() Sleep(100) WinSetTrans($Form3,"",GUICtrlRead($Trans)) WEnd ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Func Start() $stopscript=0 Do Send("1") Sleep(250) Send("2") Sleep(250) Send("3") Sleep(250) Send("4") Sleep(250) Send("5") Sleep(250) Send("6") Sleep(250) Send("7") Sleep(250) Until $stopscript = 1 EndFunc Func Stop() $stopscript = 1 EndFunc Func minimize() WinSetState("SRO_Client","",@SW_MINIMIZE) EndFunc Func maximize() WinSetState("SRO_Client","",@SW_MAXIMIZE) EndFunc Func hide() WinSetState("SRO_Client","",@SW_HIDE) EndFunc Func show() WinSetState("SRO_Client","",@SW_SHOW) EndFunc Func readme() ShellExecute(@ScriptDir & "Files\readme.txt") EndFunc Func install() FileCopy(@ScriptDir & "Testosterone\C19H28O2.ini", "C:\Program Files\Silkroad") FileCopy(@ScriptDir & "Testosterone\C19H28O2.dll", "C:\Program Files\Silkroad") FileCopy(@ScriptDir & "Testosterone\Loader.exe", "C:\Program Files\Silkroad") EndFunc Func NoDC() $iMsgBoxAnswer = MsgBox( 4100, "Confirmation", "Do you really want to install GreyFox's NoDC client? The application will make a backup file: sro_client_backup.exe (just rename the file to restore it)" ) Select Case $iMsgBoxAnswer = 6 ;Yes FileCopy( "C:\Program Files\Silkroad\sro_client.exe", "C:\Program Files\Silkroad\sro_client_backup.exe") FileCopy(@ScriptDir & "Client\sro_client.exe", "C:\Program Files\Silkroad\sro_client.exe", 1) EndSelect EndFunc Func Trans() If $_trans = 220 Then For $_trans = GUICtrlRead($Trans) To 0 Step - 0.1 WinSetTrans($Form3,"",$_trans) GUICtrlSetData($Trans,$_trans) Next ElseIf $_trans = 0 Then WinSetTrans($title,"",$_trans) GUISetState() For $_trans = 0 To 220 Step 0.3 WinSetTrans($Form3,"",$_trans) GUICtrlSetData($Trans,$_trans) Next EndIf EndFunc Func HideSHow() If $show = True Then $_trans = 220 trans() GUISetState(@SW_HIDE,$title & ".") $show = False Else $_trans = 0 trans() GUISetState(@SW_SHOW,$title & ".") $show = True EndIf EndFunc Func GuiClose() $Quit = MsgBox(36,$title,"Are you sure you want to Quit?") If $Quit = 6 Then $_trans = 220 trans() Exit EndIf EndFunc
-
I'm sorry but IT IS WORKING! I've uploaded it to you.. Use the include what is in the pack...(Sorry for the pure SRO Theme ) Rapidshare link: http://rapidshare.com/files/117589344/SRO_Manager.rar.html