Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

Draw use...

 [1/5] from: ronald::gruss::libertysurf::fr at: 13-Jun-2001 22:20


Hi Rebolers, I'm trying to use something like this view layout [area 600x600 effect[draw [ pen red line 0x0 600x600]]] ;this works But when I try this code : test: [pen red line 0x0 600x600] view layout [area 600x600 effect[draw test]] it doesn't work ;-(( Could anybody help me ?

 [2/5] from: ryanc:iesco-dms at: 13-Jun-2001 14:09


Hey Ronald, This is because 'test is not defined in that context. The draw dialect just has no idea what what 'test means. An easy way to give it some meaning is to do it this way: view layout [area 600x600 effect reduce ['draw test]] --Ryan Ronald wrote:

 [3/5] from: allenk:powerup:au at: 14-Jun-2001 7:33


Looks like you need to reduce it so that you are passing this [draw [ pen red line 0x0 600x600]] as the effect block rather than just the words [draw test] view layout [area 600x600 effect reduce ['draw test]] Cheers, Allen K

 [4/5] from: ronald:gruss:libertysurf at: 14-Jun-2001 0:44


Thanks a lot Ryan, it works very well !! I'm always impressed by the acuracy of the responses you give on this list Thanks again, I'll be able to do more in my work ;-))) --Ronald 13/06/01 23:09:31, Ryan Cole <[ryanc--iesco-dms--com]> a écrit:

 [5/5] from: ronald:gruss:libertysurf at: 14-Jun-2001 1:03


Hi Allen, Had some problems with my computer. I'm back again and my message was sent twice. Thank you, thats the solution and it works ! Bye Ronald 13/06/01 23:33:24, "Allen Kamp" <[allenk--powerup--com--au]> a écrit: