Re: fillRule - An useful vector graphic property

2011-01-18 Thread Alejandro Tejada
;They get turned back into CRs internally, Yes, this is a really helpful tip. Thanks a lot, Chris! :-) Al -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/fillRule-An-useful-vector-graphic-property-tp3224507p3224630.html Sent from the Revolution - User mailing list a

Re: fillRule - An useful vector graphic property

2011-01-18 Thread form
Just a tip, in case its useful... You can just use a comma instead of CR when populating the points. They get turned back into CRs internally, but it makes it easier to hand-jam values in the code to use "1,1,20,20,100,100" instead of "1,1"&cr&"20,20"&cr&"100,100" ~ Chris Innanen ~ Nonsanity O

Re: fillRule - An useful vector graphic property

2011-01-18 Thread Scott Rossi
Recently, Alejandro Tejada wrote: > Now, Livecode only needs some way to create irregular > masks from Polygon vector graphic. :-) There is a way, but it's not easy -- ink effects. See the second card of this stack (in your message box): go url "http://www.tactilemedia.com/site_files/downloads

fillRule - An useful vector graphic property

2011-01-18 Thread Alejandro Tejada
Hi all, Just today, I found about this use for the property named "fillRule" Put the following script of 7 lines in a button: (Watch for wraps in the Third line) create graphic set the style of it to polygon set the points of it to "50,50" & cr & "50,100" & cr & "100,100" & cr & "100,50" & cr &