Jump to content

Files not creating..?


Gui
 Share

Recommended Posts

;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.

Link to comment
Share on other sites

whatever Edited 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 ...
 

Link to comment
Share on other sites

$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")

:D

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.

Link to comment
Share on other sites

Yeah...

$fille = @DesktopDir & '\Captcha.txt'
$dfile = @DesktopDir & '\DeCapLog.txt'
$file = @DesktopDir & '\MoolaLogin.txt'

FileWrite($fille, "TextGoesHere")
FileWrite($dfile, "TextGoesHere")
FileWrite($file, "TextGoesHere")

:D

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.
Link to comment
Share on other sites

- 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.
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...