No unfortunately. The way I do this is to:

  set the view_Rect of someControl to someRect

You can then place these scripts in the front script:

setprop view_Rect someRect
 put the long id of the target into targetObject
 put the rect of targetObject into someRect
 trigger_FrontScriptResize someRect, targetObejct
end view_Rect

on resizeControl
 put the long id of the target into targetObject
 put the rect of targetObject into someRect
 trigger_FrontScriptResize someRect, targetObejct
 pass resizeControl
ebd resizeControl

on trigger_FrontScriptResize someRect, targetObejct
 -- do your stuff here
end trigger_FrontScriptResize

I do this for each view rather than a frontScript, but you can mix both
approaches with a local custom property over-riding the global default - for
this though don't put the script in the front script!
_______________________________________________
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