Search found 17 matches
- Mon Aug 28, 2006 4:24 pm
- Forum: Beginners
- Topic: GetClipBoard does not work
- Replies: 7
- Views: 9095
- Mon Aug 28, 2006 4:02 pm
- Forum: Beginners
- Topic: GetClipBoard does not work
- Replies: 7
- Views: 9095
I got some idea from our conversation. The script command appeared there because it remained in the clipboard from copying from your message. It seemed then the macro got stuck while pressing "Ctrl+c". The other macro is massive but I have recalled that I was using "c" variable pretty much. I have c...
- Mon Aug 28, 2006 3:25 pm
- Forum: Beginners
- Topic: GetClipBoard does not work
- Replies: 7
- Views: 9095
I have not seen such rapid replies anywhere else on forums :shock: Thx! :D Back to the subject. I am using MSched 8.0.3. I have just copied a bit of the code "Wait>1; WaitClipBoard" to my macro. What happend now was that the message box appeared saying... "Wait>1; WaitClipBoard" which must have stay...
- Mon Aug 28, 2006 3:07 pm
- Forum: Beginners
- Topic: GetClipBoard does not work
- Replies: 7
- Views: 9095
GetClipBoard does not work
Hi! I was trying to retrieve some text from the website. So I wrote: MouseMove>100,505 LClick Press Shift MouseMove>215,505 LClick Release Shift Press CTRL Send>c Release CTRL GetClipBoard>Something MessageModal>%Something% This macro works perfectly. So I put it at the end of another macro (which w...
- Tue Aug 22, 2006 3:16 pm
- Forum: Beginners
- Topic: LibFunc>imglib,CompareBitmaps, match,d:\screen1.bmp,d:\sc
- Replies: 25
- Views: 28000
- Tue Aug 22, 2006 2:54 pm
- Forum: Beginners
- Topic: LibFunc>imglib,CompareBitmaps, match,d:\screen1.bmp,d:\sc
- Replies: 25
- Views: 28000
Unfortunately for me it is still not working properly :( I ve compared new results with the old ones and the only difference is that instead of 50 the max value is now 100. So all the values have doubled and that is it. I still get MATCH 8/100 for the pictures which differ 5% from each other at the ...
- Tue Aug 22, 2006 2:20 pm
- Forum: Beginners
- Topic: LibFunc>imglib,CompareBitmaps, match,d:\screen1.bmp,d:\sc
- Replies: 25
- Views: 28000
- Tue Aug 22, 2006 1:51 pm
- Forum: Beginners
- Topic: LibFunc>imglib,CompareBitmaps, match,d:\screen1.bmp,d:\sc
- Replies: 25
- Views: 28000
- Tue Aug 22, 2006 12:59 pm
- Forum: Beginners
- Topic: LibFunc>imglib,CompareBitmaps, match,d:\screen1.bmp,d:\sc
- Replies: 25
- Views: 28000
Hi! I play with the plugin too and I must say that this is not perfect yet (v.1.03). I compare little pictures (50x50) placed on the different places on the screen with the ones saved on my drive. The pictures I compare are less than 5% different from each other. But the values I get from MATCH can ...
- Tue Aug 22, 2006 10:46 am
- Forum: Beginners
- Topic: Label / Array does not work with a variable
- Replies: 3
- Views: 5286
- Mon Aug 21, 2006 10:39 pm
- Forum: Beginners
- Topic: Label / Array does not work with a variable
- Replies: 3
- Views: 5286
Label / Array does not work with a variable
The below macro does not work (Error: Label not found) although in the help file there is written: "Goto>Label_Name. Label_Name can be or include a variable name". Aparently the Label itself cannot, am I right? Let>m=1 GoTo>%m% Label>%m% MessageModal>%m% And another macro that does not work. This ti...
- Mon Aug 21, 2006 12:10 pm
- Forum: Beginners
- Topic: Loops not working (apparently)
- Replies: 2
- Views: 4462
- Mon Aug 21, 2006 11:19 am
- Forum: Beginners
- Topic: Loops not working (apparently)
- Replies: 2
- Views: 4462
Loops not working (apparently)
Hi! I am making a makro containg a part with loops. Unfortuantely they do not want to work properly. I checked everything and run out of ideas. Maybe you can help me. //===================The first loop Let>c=0 Let>m=1 Repeat>m if>m=1,CheckNext1 Let>XMax=100 Let>YMax=100 Let>X=98 Repeat>X Let>X=X+1 ...
- Tue Aug 01, 2006 1:47 pm
- Forum: Beginners
- Topic: Selecting a random name from a list
- Replies: 11
- Views: 14313
Thank you very much! That is exactly what I was hoping to exist in msched :D I was trying to use two arrays before but because of the randomisation I could not make it. I was receiving each array shuffled different way. And I needed matching pairs. But with the 'separate' command and the rest that b...
- Mon Jul 31, 2006 11:30 pm
- Forum: Beginners
- Topic: Selecting a random name from a list
- Replies: 11
- Views: 14313
:) Let me put it this way. Instead of Sally or Harry from the above example I would like to have cursor's positions on the screen (x,y) preset by me and put to an array (if possible). From these places I would like the macro to choice one of them randomly, make a click, then eliminate, choice anothe...