Search found 21 matches

by Mkonopko
19 Jun 2016, 19:10
Forum: Pulovers Macro Creator
Topic: Pulover's Macro Creator v5.4.1 - The Complete Automation Tool
Replies: 1254
Views: 983131

Re: Pulover's Macro Creator v5.0.3 - The Complete Automation Tool

I'm getting an "Error: Memory limit reached, when I try to use the image find program

Any ideas?
by Mkonopko
03 Jun 2016, 13:39
Forum: Ask for Help (v1)
Topic: comparing 2 variables
Replies: 7
Views: 1945

Re: comparing 2 variables

Tidbit... I learned a lot from this experience. Thank you for your help
by Mkonopko
03 Jun 2016, 12:35
Forum: Ask for Help (v1)
Topic: comparing 2 variables
Replies: 7
Views: 1945

Re: comparing 2 variables

OK here is more of my code. The idea is to create a way to compare two barcodes without having to use a keyboard. Everything worked great till I added the line if(Edit1=Editt2). Now the system will continue as soon as the first charter is add into the edit box. ... and the logic still does not work....
by Mkonopko
03 Jun 2016, 11:44
Forum: Ask for Help (v1)
Topic: I need a simple double click script
Replies: 8
Views: 31709

Re: I need a simple double click script

;Untested

#SingleInstance
LButton::
Sleep, 100 ;controles the speed
Click
Sleep, 100
click
return

esc::exitapp ;to turn it off
by Mkonopko
03 Jun 2016, 11:31
Forum: Ask for Help (v1)
Topic: switching edit box based on #of characters
Replies: 1
Views: 687

switching edit box based on #of characters

I need to able to scan 2 barcodes and compare them without ever having to touch a keyboard. Here is part of my code. It works until I try to add anything even a msgbox that would display the contents of the variable. Any ideas? #SingleInstance Edit1= Edit2= Gui, Add, Edit, vEdit1 gLabel Gui, Add, Ed...
by Mkonopko
31 May 2016, 09:18
Forum: Ask for Help (v1)
Topic: comparing 2 variables
Replies: 7
Views: 1945

Re: comparing 2 variables

I've manually changed these numbers to be the same and different. Unless I log off and then log back in I'll receive the last result
by Mkonopko
31 May 2016, 08:49
Forum: Ask for Help (v1)
Topic: comparing 2 variables
Replies: 7
Views: 1945

comparing 2 variables

What am I doing wrong? If I change the variable the answer does not change?

#f4::
#SingleInstance Force
#NoEnv


Var1 = 1
Var2 = 2

if (Var1 = Var2)
msgbox They are the same
else
msgbox, They are not the same
return
by Mkonopko
24 May 2016, 16:37
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

As long as you are entertaining wishes... how about if found this will allow the trigger of an action like an "if found do this else do that" command. it already does that. perhaps you should read the docs for AHK's if command: https://autohotkey.com/docs/commands/IfExpression.htm Ok so using this ...
by Mkonopko
24 May 2016, 15:01
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

As long as you are entertaining wishes... how about if found this will allow the trigger of an action like an "if found do this else do that" command. it already does that. perhaps you should read the docs for AHK's if command: https://autohotkey.com/docs/commands/IfExpression.htm Ok so using this ...
by Mkonopko
23 May 2016, 20:33
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

As long as you are entertaining wishes... how about if found this will allow the trigger of an action like an "if found do this else do that" command.
by Mkonopko
22 May 2016, 21:54
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

where/how did you create the MCode? Paste the below code into your script up till ";================= The End ================= ;" Lastly, paste the output from findText as I did in my example. This is a GREAT little program. I have so many uses for this. Code starts below: ; Note: parameters of th...
by Mkonopko
20 May 2016, 19:37
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

Got it!!! This will be very useful to me. I'd like to recommend that you automatically post the additional code to the file.
Anyway many thanks for your help.

Marty Konopko
by Mkonopko
20 May 2016, 16:07
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

Here is my code: ; Note: parameters of the X,Y is the center of the coordinates, ; and the W,H is the offset distance to the center FindText(x,y,Text,c,w=150,h=150,ByRef rx="",ByRef ry="") { xywh2xywh(x-w,y-h,2*w+1,2*h+1,x,y,w,h,c) if (w<1 or h<1) Return, 0 v:=Trim(RegExReplace(Text,"[^0_\n]+"),"`n"...
by Mkonopko
20 May 2016, 15:59
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

I tried pasting this first at the beginning of the code then after the code. No luck
by Mkonopko
20 May 2016, 15:16
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

1-I clicked on catch and caught the text
2-I did the "test" and it worked fine
3=I selected "Copy" I did a ctrl-a to copy everything

I could not find
“ ;======== Copy The Next Functions To Your Code ======== ”
by Mkonopko
20 May 2016, 15:06
Forum: Ask for Help (v1)
Topic: run command based on the number of charters in field
Replies: 6
Views: 1756

Re: run command based on the number of charters in field

Albireo: I forgot about the "OK" button on the input box. Let me play with this problem over the next few days. I'm stuck on how to count the characters. I'll poke around and see what I can come up with. If you are struck with a flash of brilliance and post it for me I will not complain :-) Many tha...
by Mkonopko
20 May 2016, 14:43
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

So I'm trying to write a standalone script that finds your name when I hit Win F3 How would I modify this? #f3:: Text= ( __000__________________________________ _00__________00________________________ _00____________________________________ 0000___0000__00_00___00_00__00___0000__ _00___00__00_00__00...
by Mkonopko
20 May 2016, 14:01
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567834

Re: FindText - Catch screen image into text and then find it Topic is solved

I am not a programmer and I struggle to make these things work. Could you post an example of how you would run this code once it is generated?
I'm getting a "call to non-existing function" error
by Mkonopko
20 May 2016, 13:17
Forum: Ask for Help (v1)
Topic: run command based on the number of charters in field
Replies: 6
Views: 1756

Re: run command based on the number of charters in field

Here is my plan. There is an AHK input box open on the screen. I would scan the bar code with the RX# (always 9 digits in my case) This would execute a series of commands that would open a screen on my pharmacy software that is asking for the National Drug Code number aka NDC # screen. Now I would s...

Go to advanced search