Search found 860 matches

by scriptor2016
21 Apr 2024, 21:45
Forum: Ask for Help (v1)
Topic: Sendinput Won't Send ! Within A Variable
Replies: 10
Views: 94

Re: Sendinput Won't Send ! Within A Variable

Excellent, thank you to both you guys. This is brand new territory for me, I've never come across this sort of problem before so I would have never got it. I've never had a need for text mode until today. As with every tip provided here on the forums, I always save the snippets of code that you guys...
by scriptor2016
21 Apr 2024, 20:20
Forum: Ask for Help (v1)
Topic: Sendinput Won't Send ! Within A Variable
Replies: 10
Views: 94

Re: Sendinput Won't Send ! Within A Variable

oh thanks V0RT3X, just saw your reply now. Let me try that out and see how it goes.. gotta step out for an hour or so but I'll report back then :)
by scriptor2016
21 Apr 2024, 20:19
Forum: Ask for Help (v1)
Topic: Sendinput Won't Send ! Within A Variable
Replies: 10
Views: 94

Re: Sendinput Won't Send ! Within A Variable

This is the code in a nutshell: Variable1:=PaintbrushTool- Variable2:=This Is The Text To Send - But(Will It Work!?) Variable3:=(Variable1 Variable2) Msgbox, %Variable3% controlfocus, Edit1, ahk_class OWL.Dock ;this is the edit box in the "Notes" panel in Photoshop Sleep, 1000 ;give time for the foc...
by scriptor2016
21 Apr 2024, 16:59
Forum: Ask for Help (v1)
Topic: Sendinput Won't Send ! Within A Variable
Replies: 10
Views: 94

Re: Sendinput Won't Send ! Within A Variable

man, I don't know. Tried Send, SendInput, SendEvent and no dice. Saw that to send an ! mark there might be a requirement for it to be enclosed in curly brackets but the problem is, the ! is embedded in Variable2 so I don't know how to interrupt the pasting of Variable2 when it reaches the ! mark in ...
by scriptor2016
21 Apr 2024, 16:43
Forum: Ask for Help (v1)
Topic: Sendinput Won't Send ! Within A Variable
Replies: 10
Views: 94

Re: Sendinput Won't Send ! Within A Variable

thanks mikey let me check it out
by scriptor2016
21 Apr 2024, 16:34
Forum: Ask for Help (v1)
Topic: Sendinput Won't Send ! Within A Variable
Replies: 10
Views: 94

Sendinput Won't Send ! Within A Variable

Hey again.. back with another complicated question that I can't figure out: I have three variables which are: Variable1 Variable2 Variable3 Variable1 contains MyTextToPaste- Variable2 contains This Is The Text To Send - But(Will It Work!?) Variable3 contains Variable1 and Variable2 side by side. I u...
by scriptor2016
16 Apr 2024, 21:23
Forum: Ask for Help (v1)
Topic: Phantom line being written?
Replies: 3
Views: 58

Re: Phantom line being written?

Edit- ok great, it works perfectly now. The extra line is not being written. I would have never figured it out, so thanks again boiler ;)
by scriptor2016
16 Apr 2024, 21:07
Forum: Ask for Help (v1)
Topic: Phantom line being written?
Replies: 3
Views: 58

Re: Phantom line being written?

Thanks boiler, that works. Gives me something to work with here. Still can't get it going in my main project though, it's doing the same thing (adding an extra line at the bottom) for some reason. I'll take a closer look and then report back to this topic ;)
by scriptor2016
16 Apr 2024, 20:25
Forum: Ask for Help (v1)
Topic: Phantom line being written?
Replies: 3
Views: 58

Phantom line being written?

Somewhat related to the previous topic, this code reads a .txt file from the hard drive, reverses its contents, and then writes the amended data back to the hard drive again (it creates a new file, it doesn't overwrite the original). The original file (MyTest1.txt) looks like: one two three four fiv...
by scriptor2016
16 Apr 2024, 17:58
Forum: Ask for Help (v1)
Topic: Read from variable instead of text file
Replies: 10
Views: 126

Re: Read from variable instead of text file

Found a simple solution on the forums. fileread, str, C:\MyTestFile.txt s:=StringReverse(str, "`n") msgbox, %s% Return StringReverse(str, Separator="", OmitChars="") { Loop,Parse,% StrReplace(str,Separator,(BS:=chr(8))),%BS%,%OmitChars% i := A_LoopField (a_index=1 ? "" : BS i) Return StrReplace(i, B...
by scriptor2016
16 Apr 2024, 17:39
Forum: Ask for Help (v1)
Topic: Read from variable instead of text file
Replies: 10
Views: 126

Re: Read from variable instead of text file

So here I am working on this code some more (a little project I have going) and I've come to realise that I'd like to reverse the contents of "str" immediately after it's loaded in from the file. So in other words the text file would be upside down (or find a way to make "str" upside down, if that m...
by scriptor2016
15 Apr 2024, 20:31
Forum: Ask for Help (v1)
Topic: Read from variable instead of text file
Replies: 10
Views: 126

Re: Read from variable instead of text file

Perfect, thanks a lot!! Your help is much appreciated. I actually tried that syntax but I forgot to include the brackets so it didn't work. Oh well lesson learned. I'll keep this topic going if I come across any other issues with the code. :)
by scriptor2016
15 Apr 2024, 17:30
Forum: Ask for Help (v1)
Topic: Read from variable instead of text file
Replies: 10
Views: 126

Re: Read from variable instead of text file

wow, this is awesome. It works perfectly! I'm going to keep working with this and develop it more into my code. Curious, how would I pop up a messagebox when it hits either boundary ("one" or "ten"), something like, msgbox Upper Limit Reached! or msgbox, Lower Limit Reached! I'm guessing it has some...
by scriptor2016
15 Apr 2024, 16:42
Forum: Ask for Help (v1)
Topic: Read from variable instead of text file
Replies: 10
Views: 126

Re: Read from variable instead of text file

actually I think I got it: fileread, str, C:\MyTest.txt line := StrSplit(str, "`n", "`r") n := 0, line := StrSplit(str, "`n", "`r") WheelUp:: ToolTip % line[n := Max(1, n - 1)] WheelDown::ToolTip % line[n := Min(line.Count(), n + 1)] Is this now reading from the variable instead of the hard drive on...
by scriptor2016
15 Apr 2024, 16:38
Forum: Ask for Help (v1)
Topic: Read from variable instead of text file
Replies: 10
Views: 126

Re: Read from variable instead of text file

thanks mikeyww! It works :)

Question- how do I load the text file in as the variable instead of pre-defining it inside the () brackets as your code is right now?
by scriptor2016
15 Apr 2024, 15:07
Forum: Ask for Help (v1)
Topic: Read from variable instead of text file
Replies: 10
Views: 126

Read from variable instead of text file

Hi all This is going to be a complicated question but I'll do my best... c:\MyTextFile.txt contains: one two three four five six seven eight nine ten When scrolling with WheelUp or WheelDown, the code reads each individual line of text in the file and displays the data as a tooltip. For example: A s...
by scriptor2016
15 Mar 2024, 18:00
Forum: Ask for Help (v1)
Topic: Use AHK script only when Photoshop is active - Photoshop WinTitle?
Replies: 2
Views: 85

Re: Use AHK script only when Photoshop is active - Photoshop WinTitle?

Those shortcuts look a little complicated, with the modifers and everything (CTRL, ALT, etc)

If you're interested, I could maybe help you out a little bit if you can describe what you want each shortcut to do.
by scriptor2016
24 Feb 2024, 02:24
Forum: Forum Issues
Topic: Documentation and Google
Replies: 27
Views: 1242

Re: Documentation and Google

oh ok never mind - found it, thanks
by scriptor2016
24 Feb 2024, 02:22
Forum: Forum Issues
Topic: Documentation and Google
Replies: 27
Views: 1242

Re: Documentation and Google

Sorry boiler, I'm not getting it - page 1 of what thread? (I haven't been here in a really long time so I'm kind of out of touch at the moment..)
by scriptor2016
24 Feb 2024, 01:50
Forum: Forum Issues
Topic: Documentation and Google
Replies: 27
Views: 1242

AHK topics not searchable in Chrome?

Hi everyone Long, long time. Playing around with AHK again , it'll take some time to become re-aquainted :) I'm searching for topics as I always did by typing in something like the following into a google search: "AHK clear an edit control" but nothing shows up in Google's search engine results anym...

Go to advanced search