Robin_Gravel |
There is a way to use Print at position x and y anywhere on the screen like Print in agi? Robin Gravel |
Brian_Provinciano |
Yes. Just use the #at parameter. You can see all available options, just look in Controls.sc. You can also add your own. eg. ... (case #title ++paramCnt (send hDialog:text(params[paramCnt])) ) (case #at = diagX params[++paramCnt] = diagY params[++paramCnt] ) (case #draw Animate( (send gCast:elements) 0 ) ) ... |
Robin_Gravel |
Thanks Brian It works. Robin Gravel |