Gui Posted January 20, 2010 Author Posted January 20, 2010 ;AutoItSetOption ("CaretCoordMode", 2) AutoItSetOption("WinTitleMatchMode", 4) $fille = @DesktopDir & '\Captcha.txt' $dfile = @DesktopDir & '\DeCapLog.txt' $file = @DesktopDir & '\MoolaLogin.txt' Global $running = 0 Opt("TrayOnEventMode",1) Opt("TrayMenuMode",1) Opt("TrayIconHide", 0) Opt('MouseCoordMode',0) TraySetOnEvent($TRAY_EVENT_PRIMARYUP,"SpecialEvent") TraySetState() That's all around it. I don't think I need to post anymore, it's a thousand line code.
JohnOne Posted January 20, 2010 Posted January 20, 2010 Have you changed your OS, or turned on UAC ? If so try #RequireAdmin AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
MvGulik Posted January 20, 2010 Posted January 20, 2010 (edited) whatever Edited February 7, 2011 by MvGulik "Straight_and_Crooked_Thinking" : A "classic guide to ferreting out untruths, half-truths, and other distortions of facts in political and social discussions.""The Secrets of Quantum Physics" : New and excellent 2 part documentary on Quantum Physics by Jim Al-Khalili. (Dec 2014) "Believing what you know ain't so" ... Knock Knock ...
Juvigy Posted January 20, 2010 Posted January 20, 2010 $fille = @DesktopDir & '\Captcha.txt' $dfile = @DesktopDir & '\DeCapLog.txt' $file = @DesktopDir & '\MoolaLogin.txt' This code doesnt create files. It just creates strings that you can use for file names.
AlmarM Posted January 20, 2010 Posted January 20, 2010 $fille = @DesktopDir & '\Captcha.txt' $dfile = @DesktopDir & '\DeCapLog.txt' $file = @DesktopDir & '\MoolaLogin.txt' This code doesnt create files. It just creates strings that you can use for file names. Yeah... $fille = @DesktopDir & '\Captcha.txt' $dfile = @DesktopDir & '\DeCapLog.txt' $file = @DesktopDir & '\MoolaLogin.txt' FileWrite($fille, "TextGoesHere") FileWrite($dfile, "TextGoesHere") FileWrite($file, "TextGoesHere") Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.
Gui Posted January 20, 2010 Author Posted January 20, 2010 Yeah... $fille = @DesktopDir & '\Captcha.txt' $dfile = @DesktopDir & '\DeCapLog.txt' $file = @DesktopDir & '\MoolaLogin.txt' FileWrite($fille, "TextGoesHere") FileWrite($dfile, "TextGoesHere") FileWrite($file, "TextGoesHere") Well, when ever I used it in the past, the files always got written in, and were there when the time came where I wrote in them. Now, when i'm doing the same thing, and try to get the first strings of the files, it's that array error, and there is no file. But i'll try again I guess. I even tried _FileCreate($file), and no luck.
Gui Posted January 20, 2010 Author Posted January 20, 2010 - What program is suppose to create those log's, and when? (I don't see any file write commands in your example(s), so that can't be it.)- Why do you think your script is responsible for this problem? "I don't think I need to post anymore, it's a thousand line code"It automates something, and was very hard to do. As well as it's my code, and I don't wish to share it. I'm sorry if people usually do here.
Gui Posted January 20, 2010 Author Posted January 20, 2010 Have you changed your OS, or turned on UAC ?If so try #RequireAdminWhat is OS, and UAC?
whim Posted January 20, 2010 Posted January 20, 2010 $fille = @DesktopDir & '\Captcha.txt' $dfile = @DesktopDir & '\DeCapLog.txt' $file = @DesktopDir & '\MoolaLogin.txt' Mhhh... are you sure the Moola ToS allow you to f* around with their logins from Get an Instant Invite "This code helps Moola prevent illegitimate automated sign-ups"
Juvigy Posted January 20, 2010 Posted January 20, 2010 OS = Operating system UAC = User Access Control
Gui Posted January 20, 2010 Author Posted January 20, 2010 Thanks , and I solved it. I just moved the files to closely where they were firstly going to be used. Thanks everyone.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now