yep, that's exactly what I ended up doing... much more solid approach, slightly more verbose,
But sometimes verbose is good: you can see what's  happening

setting the hilitedline of a fld  makes more sense than
than trying to emulate a  system keyboard input event.

got this now in that same fld.

on tabkey
 if the shiftkey is down then
   saveCaption
   set the hilitedline of fld "fileList" to (gLastLine-1)
   send postimage to fld  "fileList"
 else
   saveCaption
   set the hilitedline of fld "fileList" to (gLastLine+1)
   send postimage to fld  "fileList"
 end if
end tabkey



Ken Ray wrote:


Try:

  send "arrowKey" && quote & "down" & quote to fld "fileList"

But personally if there is a better way, like to activate the same handler
that is activated when "arrowkey down" is triggered, that would be best,
IMHO...

Ken Ray

_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to