Search found 152 matches
- Tue Nov 05, 2013 8:21 am
- Forum: Technical / Scripting
- Topic: keydown question
- Replies: 5
- Views: 5870
what im trying to do is toggle a key have it downkey when button is pressed have it keyup when pressed again guess i will keep working on it usually i can figure some wierd way of how to do it this one kinda works but really want 1 key to do it i will try your suggestion of using a different toggle ...
- Sun Nov 03, 2013 12:23 am
- Forum: Technical / Scripting
- Topic: keydown question
- Replies: 5
- Views: 5870
keydown question
was trying to find a way to where if i press a key it holds that key down and when i press that key again it releases it im totally at a loss of how i could do this please helps thanks love ya this is what i was thinking is it right? wait>5 GetActiveWindow>window_title,x,y setfocus>%window_title% la...
- Tue Nov 27, 2012 7:19 am
- Forum: Technical / Scripting
- Topic: Locking window for screen scraping
- Replies: 4
- Views: 5666
heres a silly idea im guessing you dont want them to scroll down why not add a move mouse that keeps dragging the scroll bar back to top during the scrape thus preventing them from clicking anywhere else also you can also make the window stay on top check this link http://www.mjtnet.com/blog/2010/09...
- Tue Nov 27, 2012 7:00 am
- Forum: Technical / Scripting
- Topic: Clearing Hotkeys from Multiple Scripts At Once
- Replies: 1
- Views: 3310
- Tue Nov 27, 2012 6:56 am
- Forum: Technical / Scripting
- Topic: Problem with Webrecorder when the display is turned off
- Replies: 3
- Views: 4597
you can change your power options to high performance on laptop to keep it from timing out in your power options Control Panel\Hardware and Sound\Power Options also check on your screen saver options because if it comes on it can interfere with your macro especially if it brings up logon screen If y...
- Tue Nov 27, 2012 5:59 am
- Forum: Beginners
- Topic: Creating functional "boxes" in the script
- Replies: 2
- Views: 9640
- Tue Nov 27, 2012 5:47 am
- Forum: Beginners
- Topic: Cancelling a running script
- Replies: 4
- Views: 8859
marcus taught this in the past got code from him before when someone else asked basically your assigning a key to end the macro using vk_keys the vk115 can be changed to any key you want to use to end it OnEvent>KEY_DOWN,VK115,0,Shutdown SRT>Shutdown Goto>end_macro END>Shutdown //Right at VERY end o...
- Tue Nov 27, 2012 5:41 am
- Forum: Beginners
- Topic: how to make a macros to be repeated?
- Replies: 2
- Views: 17796
if you want it to be an infinite loops /repeate forever
use this
use this
Code: Select all
label>start
//rest of code here//
goto>start
- Tue Nov 27, 2012 5:32 am
- Forum: Beginners
- Topic: Program don't recognize keystrokes
- Replies: 11
- Views: 21414
"sendtext" will try and press enter after the text is sent wich can cause problems instead try using "send" also sometimes you need to have a slight wait after the send before the enter is pressed it looks like your issue is that. i don't see why you would need to hold down the enter button you coul...
- Mon Mar 12, 2012 7:26 pm
- Forum: Technical / Scripting
- Topic: [RESOLVED but ....] Press CTRL fails
- Replies: 4
- Views: 5836
bro simple fix use vk_keys i had same problem in past that was the only viable fix here is the code you will need this code and website http://www.mjtnet.com/vkcodes.htm Let>VK_control=51 Let>ExtendedKey=1 Let>KeyUp=2 LibFunc>user32.dll,keybd_event,r,VK_control,0,ExtendedKey,0 Let>FLAGS={%ExtendedKe...
- Mon Mar 12, 2012 7:19 pm
- Forum: Beginners
- Topic: inconsistent windows manipulation??
- Replies: 2
- Views: 32794
had a problem in the past of redirecting windows similar to this when i was working on keyboard emulator heres the link to show you what i did should help you be able to fix your problem witch is very similar http://www.mjtnet.com/forum/keyboard-emulator-buttons-t5790.html ok im sure by now your won...
- Mon Mar 12, 2012 7:04 pm
- Forum: General Discussion
- Topic: 64 bit 32 bit versions of macro scheduler
- Replies: 1
- Views: 13217
64 bit 32 bit versions of macro scheduler
on the topic of the new macro scheduler and the problem of directing to 64 bit or 32 bit depending on OS come on now no way to fix this are you kidding ? you could easily fix this your the kings of automation is it that difficult to put OS detection into macro scheduler and to automate the redirects...
- Sat Dec 31, 2011 6:27 am
- Forum: Technical / Scripting
- Topic: onevent problem
- Replies: 2
- Views: 4701
this also did not work
Code: Select all
label>start
WaitKeyDown>,
Let>VK_control=81
Let>ExtendedKey=1
Let>KeyUp=2
Let>FLAGS={%ExtendedKey% OR %KeyUp%}
LibFunc>user32.dll,keybd_event,r,VK_control,0,ExtendedKey,0
WaitKeyDown>.
LibFunc>user32.dll,keybd_event,r,VK_control,0,FLAGS,0
goto>start
- Sat Dec 31, 2011 5:46 am
- Forum: Technical / Scripting
- Topic: onevent problem
- Replies: 2
- Views: 4701
onevent problem
ok basically what im trying to do is when i press "," key it holds down the "q" key and when i press the "." key it releases the "q" key its the button i have assigned for my mic button im trying to have it hold down the "q" when i have pushed "," and then release when it detects me pressing "." lab...
- Tue Jun 21, 2011 4:38 pm
- Forum: Technical / Scripting
- Topic: random radio buttons
- Replies: 2
- Views: 4716
random radio buttons
ok so im working on making a program to use for studying, and i want to use 4 radio buttons for the answers. the answers will come from answer.text. the questions will come from questions.text. so each line of text will correspond with the other. like line 1 of question.text file corresponds with li...