| Author |
Message |
Topic: Capturing variables from Flash swf files?? |
Puzzled Greatly
Replies: 7
Views: 83
|
Forum: Ask for Help Posted: Wed Feb 03, 2010 4:08 am Subject: Capturing variables from Flash swf files?? |
| Hi, I'm not interested in game cheats. I'm making my own swf files and want to be able to keep the variables created in one session and use them again in another. This is for offline use. I know about ... |
Topic: Capturing variables from Flash swf files?? |
Puzzled Greatly
Replies: 7
Views: 83
|
Forum: Ask for Help Posted: Wed Feb 03, 2010 3:21 am Subject: Capturing variables from Flash swf files?? |
Thanks, so how do I find out what the memory address is?
GP |
Topic: Capturing variables from Flash swf files?? |
Puzzled Greatly
Replies: 7
Views: 83
|
Forum: Ask for Help Posted: Wed Feb 03, 2010 2:58 am Subject: Capturing variables from Flash swf files?? |
Hello, is there any way that autohotkey can get a variable generated from a swf file? I'm guessing not but am asking on the off chance.
GP |
Topic: How to stop sort inserting empty lines? |
Puzzled Greatly
Replies: 8
Views: 170
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 12:02 pm Subject: How to stop sort inserting empty lines? |
| Thanks, adding the StringReplace works though I don't get why it should be necessary. Is there any way to make the whole script faster? Right now it's as if each word is pasted individually so an 80 w ... |
Topic: Hotkeys using tab |
Puzzled Greatly
Replies: 3
Views: 135
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 11:47 am Subject: Hotkeys using tab |
Thanks for the reply, I checked out the thread you linked to and some of the links in that thread but didn't find an answer I could understand!
GP |
Topic: How to stop sort inserting empty lines? |
Puzzled Greatly
Replies: 8
Views: 170
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 1:22 am Subject: How to stop sort inserting empty lines? |
I have the following code:
#!down::
clipboard =
Send, ^c
clipwait
sortlist := clipboard
Sort, sortlist
send, %sortlist%
return
I tested this in metapad and notepad++. It s ... |
Topic: Hotkeys using tab |
Puzzled Greatly
Replies: 3
Views: 135
|
Forum: Ask for Help Posted: Sun Jan 31, 2010 12:49 am Subject: Hotkeys using tab |
Hello,
I know #tab uses the windows key and tab as a shortcut and #v uses the windows key and v as a shortcut but how do I make a shortcut using all three keys? #vtab doesn't work.
Thanks,
GP |
Topic: Tabs layout GUI |
Puzzled Greatly
Replies: 8
Views: 123
|
Forum: Ask for Help Posted: Sun Jan 24, 2010 5:14 am Subject: Tabs layout GUI |
Thanks for taking the time to put the example together. I'll need to study it.
GP |
Topic: Tabs layout GUI |
Puzzled Greatly
Replies: 8
Views: 123
|
Forum: Ask for Help Posted: Sun Jan 24, 2010 4:22 am Subject: Tabs layout GUI |
I see, I get what you mean, now. One more thing, do you know how to control the gap between each tab button? I'd like to add some space.
Thanks,
GP |
Topic: Tabs layout GUI |
Puzzled Greatly
Replies: 8
Views: 123
|
Forum: Ask for Help Posted: Sun Jan 24, 2010 3:37 am Subject: Tabs layout GUI |
Thanks, that's almost what I want but I'd like the buttons to be on the left of the tab controls rather than above them. This would cut down on wasted space.
GP |
Topic: Tabs layout GUI |
Puzzled Greatly
Replies: 8
Views: 123
|
Forum: Ask for Help Posted: Sun Jan 24, 2010 2:04 am Subject: Tabs layout GUI |
Hello, is there anyway to get tabs to appear as buttons and be on the left and be horizontal. Hope that makes sense. I got them to appear vertically by amending code from the help file:
Gui, Add, T ... |
Topic: Trimming And Splitting Strings In Files |
Puzzled Greatly
Replies: 2
Views: 76
|
Forum: Ask for Help Posted: Sun Jan 03, 2010 5:47 am Subject: Trimming And Splitting Strings In Files |
I found a solution without using SplitString - just replacing the spaces with new lines was sufficient.
GW |
Topic: Trimming And Splitting Strings In Files |
Puzzled Greatly
Replies: 2
Views: 76
|
Forum: Ask for Help Posted: Sun Jan 03, 2010 3:56 am Subject: Trimming And Splitting Strings In Files |
Hello again,
I've figured out how to strip out the extension:
FileSelectFolder, FolderName, , 3, Folder Contents - Choose a folder
if FolderName =
MsgBox, You didn't choose a folder.
else
... |
Topic: Trimming And Splitting Strings In Files |
Puzzled Greatly
Replies: 2
Views: 76
|
Forum: Ask for Help Posted: Sun Jan 03, 2010 1:05 am Subject: Trimming And Splitting Strings In Files |
Hello,
I've cobbled together a script that lists the files in a chosen directory:
FileSelectFolder, FolderName, , 3, Folder Contents - Choose a folder
if FolderName =
MsgBox, You didn't choos ... |
Topic: Copy to New File |
Puzzled Greatly
Replies: 3
Views: 106
|
Forum: Ask for Help Posted: Wed Nov 11, 2009 2:57 am Subject: Copy to New File |
FileAppend works!
FileAppend, %Clipboard%, C:\temp.txt |
| |