Just was wondering it there a way to this with the layer or number on the
size & position tab in the property inspector?

 put empty
  put 15 into maxxr
  put 2 into maxxc
  repeat with cc = 1 to maxxc
    repeat with rr = 1 to maxxr
      if there is a fld ("fcd"&rr&"qty") then
        put fld ("fcd"&rr&"qty") into item 1 of line rr of combinedValues
        put cc && rr & cr after msg
      else
        put "  " into item 1 of line r of combinedValues  -- tried this
thinking it would put a space in if no number
      end if
      if there is a fld ("fcd"&rr) then
        put fld ("fcd"&rr) into item 2 of line rr of combinedValues
        put cc && rr & cr after msg

      end if
    end repeat
  end repeat

  filter combinedValues without empty
  replace "," with "  " in combinedValues
  put combinedValues after msg
  put combinedValues into fld combinedOutput



Robert Mann
President
GP Racing LLC



_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to