On Fri, 5 Jul 2002 [EMAIL PROTECTED] wrote:

> Would this run faster?

Definitely, but there's one other optimization: Don't call
binaryEncode so much, it's pretty expensive:

> on mouseUp
>   put fld "data" into tOrigData
>   set the itemdelimiter to TAB
>   create image
>   put it into tID
>   set the width of tID to tWidth
>   set the height of tID to tHeight

local tbp, tgp
put binaryEncode("CCCC",0,0,255,0) into tgp
put binaryEncode("CCCC",0,0,0,255) into tbp

>   put empty into iData
>   repeat for each line l in tOrigData
>     repeat for each item i in l

      if i > 0 then put tgp after iData ---make green
      else put tbp after iData  --- make blue

>     end repeat
>   end repeat
>   set the imageData of tID to iData
> end mouseUp

Regards,
  Scott

> Philip Chumbley

********************************************************
Scott Raney  [EMAIL PROTECTED]  http://www.metacard.com
MetaCard: You know, there's an easier way to do that...


_______________________________________________
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard

Reply via email to