
RagnaroktA
Active Members-
Posts
198 -
Joined
-
Last visited
About RagnaroktA
- Birthday 09/28/1981
Profile Information
-
Location
Dallas, TX
-
WWW
http://www.scottandamie.com/
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
RagnaroktA's Achievements

Prodigy (4/7)
0
Reputation
-
Alright, the links on the front page are back up. I'm not sure if that source works for the current build, as I havent yet had a chance to look at it. Please let me know what features need to be built out first.
-
Here's the plan: Since I put this project down (in favor of a rapidly advancing career), quite a bit has changed with new releases of AutoIt that will require alot of changes to the script. I'll have a ton of downtime over the holidays to work on this while I'm watching progress bars. I'll get to work updating it, upload the files again, and start working on getting the remaining tabs working well. Any suggestions are welcome, and by all means, give me an order in which you'd like to see the project finished! What tabs should take priority? What missing functions are most needed? JS, glad to see you're still around. Is there an updated version of your UDF? If so, I'll need to get ahold of it and modify RAS. We'll work this out one way or another. Glad to see there's still an interest.
-
OS: XP SP2 AutoIt Stable: v3.2.12.1 AutoIt Beta: v3.2.13.9
-
Done and done. Now that error has passed, but I'm getting the following error on the same line. Line 301 (File "C:\Program Files\AutoIt3\Beta\Include\Zip.au3"): $hList = $oApp.Namespace($hZipFile).Items $hList = $oApp.Namespace($hZipFile).Items^ ERROR Error: Error in expression
-
Sure thing. It's a pretty massive script, so I'll only post what is needed. #Region --- Includes --- ;----- Standard Includes ----- #include <Constants.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <WindowsConstants.au3> #include <GUIConstants.au3> #include <GUIConstantsEx.au3> #include <GUIListView.au3> #include <Misc.au3> #include <Array.au3> #include <File.au3> ;----- Non-Standard Includes ----- #include <Zip.au3> #include <ModernMenuRaw.au3> #include <String.au3> #EndRegion --- Includes --- Global $sWoWGameDirectory = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Blizzard Entertainment\World of Warcraft", "InstallPath") $sDate = @MON & "-" & @MDAY & "-" & @YEAR $sUIArchive = $sWoWGameDirectory & '\WoW UI Backup\WoW UI Backup - ' & $sDate & '.zip' $fUICache = $sWoWGameDirectory & '\Cache' $fUIInterface = $sWoWGameDirectory & '\Interface' $fUIWTF = $sWoWGameDirectory & '\Interface' $zArchive = _Zip_Create($sUIArchive) _Zip_AddFolder($zArchive, $fUICache, 4) _Zip_AddFolder($zArchive, $fUIInterface, 4) _Zip_AddFolder($zArchive, $fUIWTF, 4)
-
I've updated Auto It and downloaded the latest UDF, and now I'm getting an error. Line 300 (File "C:\Program Files\AutoIt3\Beta\Include\Zip.au3"): $hList = $oApp.Namespace($hZipFile).Items $hList = $oApp.Namespace($hZipFile)^ERROR Error: Object referenced outside a "With" statement. Anyone resolve this yet? I tried the suggestion previously in the thread and could not for the life of me get it to work.
-
Hey all, I put this project down to focus more on my career over the last year. If there's still interest, I'll pick it back up and start taking feature requests again. I'll have to work on it to bring it up to the latest version of AutoIt. Let me know if you're interested.
-
Rochy, Most of the other plugins were developed alongside the main application, and are just executable files within it. I'll post them along side the settings transfer application soon. It does write 3 values to the Windows registry. The option to have the application run at startup (have to have a reg key in place to run the app in startup quickly), the install directory, and install version. The latter two are for update purposes, but that's not yet in place. I'm not yet sure when I'll release the latest build. I test it for a good while before releasing it. I'll try to get at least the toolbar working and upload that fix. As for the other features, I'm still testing them, so it may be a bit.
-
Ha! Good eye Rochey. That's a spelling mistake to be sure. I'm not exactly sure how it happened either. It should be Specify Machine, allowing you to input the name of a machine rather than have it scan the network. In the latest version, the toolbar is working (got lots of complaints on that one), I've created the Ping tool that will allow you to ping machines to determine latency and availability (it also works stand alone), and I've fixed several back-end bugs. Again, if there's a feature/tool that would make this more useful now, let me know what it is (either planned or unplanned) and I'll start work on it for the next release. I always appreciate the ideas, and welcome challanges. Snapshot is still planned, but I've been trying to get out the other plugins first. I've got the basic functionality ready, but I havent begun designing the GUI. If this would be more useful to you, let me know and I'll start working on it.
-
Alright, the links are back up. I'll try to check on this page as often as I can, and I'll prep the latest and greatest for public release. I'm still working out a few small bugs.
-
Sorry for the delay all, I've been swamped at work. I'll put up the last available downloads tomorrow and update the front page. Check back.
-
No, you're not doing anything wrong. I'm more focused right now on making the application functional on the back end. The Toolbar menu is non functional at the moment, although all of the things you will be able to do there, are currently available in the menus themselves. I will make the toolbar functional when I decide what plugins/features will be in the final release.
-
What errors are you getting? I'll correct them in the update I'm working on. Gmail - The two line tabs is actually a Tab Style called $TCS_MULTILINE. Check it out here in the documentation.