Re: Resuscitation of Scott Raney Paint Tools

2019-06-26 Thread Sannyasin Brahmanathaswami via use-livecode
You are right... the art work repository will be all "vectorized" for that reason, " different screen sizes and resolutions". Further discussion here: It will be seen whether we can do with LiveCode to do coloring of SVG. Currently not an option/not doable. Would require a widget. Also,

Re: Resuscitation of Scott Raney Paint Tools

2019-06-23 Thread Richmond via use-livecode
Saucy work: http://forums.livecode.com/viewtopic.php?f=5=32783 Richmond. On 22.06.19 17:50, Sannyasin Brahmanathaswami via use-livecode wrote: I am trying to get a stack that worked in 1999-2000 under Metacard using a stack Scott Raney built. It is still on line Go stack URL

Re: Resuscitation of Scott Raney Paint Tools

2019-06-23 Thread hh via use-livecode
> BR wrote: > The UI is a bit messy, but I want to give a demo of what is possible > for a coloring book with LC versus scripting this whole thing in HTML5 > with JS/CSS/HTML. (it would be a nightmare) This is only a demo if your "coloring book" uses simple pixel paint. HTML5 also includes

Re: Resuscitation of Scott Raney Paint Tools

2019-06-22 Thread Sannyasin Brahmanathaswami via use-livecode
HH and Bernd I did the cmd-F on the whole Paint stack, as Hermann originally suggestioned Bernd: set the selectedColor2 of me to the mouseColor --<--- add this This was needed to actually get a color! I guess previously Scott had access to the "selectedColor" somehow in Metacard Thanks to

Re: Resuscitation of Scott Raney Paint Tools

2019-06-22 Thread Niggemann, Bernd via use-livecode
do what Hermann suggested but add a line to the mouseUp handler script of colorPalette of grp "palette" of cd id 1002 of stack "HAColorChooser": on mouseUp set the selectedColor2 of me to the mouseColor --<--- add this setcolor the selectedColor2 of me end mouseUp Kind regards Bernd

Re: Resuscitation of Scott Raney Paint Tools

2019-06-22 Thread hh via use-livecode
It works here in 9.5.0/9.0.5/9.0.2/8.1.10. But if you won't use the simple find dialogue I described then you could directly write (change the two instances of "selectedColor"): 1. script of colorPalette of grp "palette" of cd id 1002 of stack "HAColorChooser": on mouseUp setcolor the

Re: Resuscitation of Scott Raney Paint Tools

2019-06-22 Thread Sannyasin Brahmanathaswami via use-livecode
HH wrote: " replace with selectedColor2 Save and you are done." I tried that originally. Does not work. on mouseUp setcolor the selectedColor2 of me end mouseUp # calls setColor which "which" is empty "of me" # calls colorPalette "Color Map" It would seem you need to change the

Re: Resuscitation of Scott Raney Paint Tools

2019-06-22 Thread hh via use-livecode
This is a custom property name only. So do cmd-F in the PaintTools stack search for selectedColor in "this stack and its stack files" replace with selectedColor2 Save and you are done. ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: Resuscitation of Scott Raney Paint Tools

2019-06-22 Thread Richmond via use-livecode
Possibly, to really get at the 'problem' if, indeed, problem there be, would be to go back to MetaCard and export the Paint Tools as a single stack, rather than a substack of a one-button mainstack? Tomorrow I'll fire up my G5 iMac and export that stack . . . Richmond On 22.06.19 17:50,

Resuscitation of Scott Raney Paint Tools

2019-06-22 Thread Sannyasin Brahmanathaswami via use-livecode
I am trying to get a stack that worked in 1999-2000 under Metacard using a stack Scott Raney built. It is still on line   Go stack URL "http://www.himalayanacademy.com/studyhall/hapaint.rev; But now, when I click the color palette I get   on mouseUp setcolor the selectedColor of me end 

Resuscitation of Scott Raney Paint Tools

2019-06-22 Thread Sannyasin Brahmanathaswami via use-livecode
I am trying to get a stack that worked in 1999-2000 under Metacard using a stack Scott Raney built. It is still on line Go stack URL "http://www.himalayanacademy.com/studyhall/hapaint.rev; But now, when I click the color palette I get on mouseUp setcolor the selectedColor of me end