"ajzbc" <[EMAIL PROTECTED]> writes: > In Windows applications, one can "Select All" by using the keyboard > combination <CTRL + A>. On a note in PowerPro, one can use the mouse and > click the "A" button to accomplish the same task. This may seem like an > incredibly silly request but is there any way to use <CTRL + A> in a > note or is there a way to set up another keyboard combination to execute > the "Select All" functionality. I only ask because I suffer from severe > RSI from using a mouse too much and prefer to use the keyboard. Thanks > in advance for any help you might be able to give.
Create a key/mouse action on Ctrl+A, with the target set to c=PowerProNote (only applies to PP notes) and the action as *Script Runfile the folowing script: nh=win.parent(win.getfocus,1) nh.setsel(0, nh.length) (using the win and note plugins). It seems to work for me... One thing - it does slow down Ctrl-A handling in other windows - looks like it delays the action until you release the keys fo some reason. Paul. -- A little inaccuracy sometimes saves tons of explanation -- Saki ------------------------ Yahoo! Groups Sponsor --------------------~--> Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/JV_rlB/TM --------------------------------------------------------------------~-> Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
