I use the following routine to draw lines for charts in LC 6.7.3

on drawLine x,y,x1,y1,tColor
   lock screen
   set the style of the templateGraphic to polygon
   create grc in me
   put the id of the last grc of me into tID
   set the forecolor of grc id tID to tColor
   set the points of grc id tID to x,y,x1,y1
   set the locked of grc id tID to true
   unlock screen
end drawLine

When I run the project in LC 7.0.3 the lines do not draw.
Is there a reason for this?

When I look in the group, all the graphics exist.


All the best

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

Reply via email to