| Author |
Message |
Forum: Support Topic: Script to Keep Typing in Last Form i Window Goes Inactive |
| PooFox |
|
Posted: March 27th, 2010, 11:02 pm
|
|
Replies: 1 Views: 237
|
| I could spend hours trying to get a script together for this but i thought id check if anyone had one already first. I have a script running to auto activate the window under the cursor without raising it which is useful for many things, but the problem is i have a habit of moving the cursor away fr... |
|
 |
Forum: Support Topic: MouseWheel Scrolling in Cubase |
| PooFox |
|
Posted: March 25th, 2010, 1:08 am
|
|
Replies: 7 Views: 396
|
| You need a solid understanding on the AHk language and you don't have it now. Please go through the tutorials and learn the basics. heheh was it that obvious? javascript:emoticon(':roll:') yea i know and ive read all that stuff. im on here because THAT didnt make much sense to me. but youve given m... |
|
 |
Forum: Support Topic: MouseWheel Scrolling in Cubase |
| PooFox |
|
Posted: March 24th, 2010, 9:16 pm
|
|
Replies: 7 Views: 396
|
| ok this is starting to work really well! i just need a bit more help and then cubase users all over the world can enjoy mouse wheel scrolling at last!!!! i think i need each new wheel scroll to ADD some time to the wheelsU timer. dont know how to do this, but basically i want the middle mouse button... |
|
 |
Forum: Support Topic: MouseWheel Scrolling in Cubase |
| PooFox |
|
Posted: March 24th, 2010, 10:36 am
|
|
Replies: 7 Views: 396
|
| [quote="Leef_me"]>>thats what i feared. :?: but what about the code I posted, does it work 4 u? i kinda assumed it would but was worried that the repeated ctrl up messages would mess with things. ill give it a go here shortly. >>i cant use A_EventInfo because the resolution on my wheel is ... |
|
 |
Forum: Support Topic: MouseWheel Scrolling in Cubase |
| PooFox |
|
Posted: March 24th, 2010, 2:55 am
|
|
Replies: 7 Views: 396
|
| thats what i feared. thanks for the tip, but do you know a simple way to tell ahk to loop actions when it has received mousewheel input in the last, say 100ms? this would help a lot of problems im having but i cant use A_EventInfo because the resolution on my wheel is too high. it always shows 0. Is... |
|
 |
Forum: Support Topic: MouseWheel Scrolling in Cubase |
| PooFox |
|
Posted: March 23rd, 2010, 11:36 pm
|
|
Replies: 7 Views: 396
|
| I changed the title of this posting because it became about something else. i ended being able to change the program to make this work easier and so didnt need the first bit of script. Now its become about how to use the mousewheel to scroll horizontally in cubase. #IfWinActive ahk_class REAPERwnd ;... |
|
 |
Forum: Support Topic: Actively Drag Edges of Selection in Cubase |
| PooFox |
|
Posted: March 21st, 2010, 11:20 pm
|
|
Replies: 11 Views: 453
|
| ok so now it works wonderfully: ctrl click updates the left edge of the time selection until i release lmb ;; Ctrl+Left Click Sets Left Edge $^LButton:: MouseGetPos X1,Y1 Loop { While GetKeyState("LButton","P") { Send {Ctrl Down} MouseGetPos X2, Y2 Mou... |
|
 |
Forum: Support Topic: Actively Drag Edges of Selection in Cubase |
| PooFox |
|
Posted: March 21st, 2010, 10:46 pm
|
|
Replies: 11 Views: 453
|
| nice, thanks. never saw any info on the $ symbol or what it does. still dont quite understand but... hey thanks for your help, its been arduous getting anything to work with this program. i almost gave up thinking how much time i was wasting in frustration and confusion and the thought kept cropping... |
|
 |
Forum: Support Topic: Actively Drag Edges of Selection in Cubase |
| PooFox |
|
Posted: March 21st, 2010, 9:17 am
|
|
Replies: 11 Views: 453
|
| this piece of code gets me pretty darn close, but i cant figure out why it doesnt detect when ive released the ctrl button. it continues to hold the shift button etc and it doesnt work every time i control click. im using this in cubase to ctrl click anywhere and set the left side of the loop (norma... |
|
 |
Forum: Support Topic: Actively Drag Edges of Selection in Cubase |
| PooFox |
|
Posted: March 20th, 2010, 6:30 am
|
|
Replies: 11 Views: 453
|
| this does nothing, why? WinWaitActive ahk_class CubaseFrameWindowClass #Persistent { GetKeyState, state, Ctrl if state = D { MouseGetPos , WinX, WinY MouseMove , WinX, 200, 0 Send , {Shift Down} MouseClick , Left,,, 1, 0, D Tooltip down } if state = U { Send , {Shi... |
|
 |
Forum: Support Topic: Actively Drag Edges of Selection in Cubase |
| PooFox |
|
Posted: March 20th, 2010, 5:18 am
|
|
Replies: 11 Views: 453
|
| i got this to work but it only worked the first time and i have no idea why. Got what to work? SHOW YOUR CODE WHEN ASKING FOR HELP since my question was general and my code in constant flux, that really made no sense, but uh, thanks for your expertise. anyways, heres something that produced the res... |
|
 |
Forum: Support Topic: Actively Drag Edges of Selection in Cubase |
| PooFox |
|
Posted: March 20th, 2010, 4:21 am
|
|
Replies: 11 Views: 453
|
| I may be wrong, but I think you are making the very easy mistake of the command GetKeystate and the function. [/code] yea well i dont understand when to use either. they seem to both do basically the same thing. actually im not that interested in the differences (so please lets not go into that, im... |
|
 |
Forum: Support Topic: Actively Drag Edges of Selection in Cubase |
| PooFox |
|
Posted: March 20th, 2010, 3:47 am
|
|
Replies: 11 Views: 453
|
| How do I lay out a script so that in a certain active window whenever i hold the ctrl key it performs some specific mouse movements and clicks and then some other movements etc when i RELEASE the ctrl key? once or twice i got this to work but it only worked the first time and i have no idea why. |
|
 |
Forum: Support Topic: MouseWheel to Intelligently Move Mouse Cursor |
| PooFox |
|
Posted: March 19th, 2010, 11:47 pm
|
|
Replies: 2 Views: 285
|
| thanks for the help, i get the timer function better now, but i wasnt getting the results i wanted with this script. ive got something fairly close now, but now all i think i need is a way to apply some acceleration to the mousewheel so that i can move it a little more predictably with the mousewhee... |
|
 |
Forum: Support Topic: MouseWheel to Intelligently Move Mouse Cursor |
| PooFox |
|
Posted: March 15th, 2010, 10:13 am
|
|
Replies: 2 Views: 285
|
| Hi, im having a hard time executing a seemingly simple script. No doubt this is due to my inexperience, but I could really use some pointers. i think i can get this to work if someone could point out some code to me that would accomplish this one thing: When i scroll the mousewheel in a certain wind... |
|
 |
| Sort by: |