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, whether we allow a brush or "spray can"  to apply "pixels" to a layer is 
an open question. We have to examine the use cases. 

What would a child do with her colored artwork once it is finished? Share it, 
post to Facebook, Instagram, email it so a friend... The use case where a 
children in interested in actually printing a copy where we see major 
problem with a different resolution, seems very small...

 Most screenshot programs turn the "object" into a JPG or PNG. As do phones' 
screenshot's. So, there is a case to a made for allowing pixels. Because once 
is JPG'd, it is pretty portable, even at smaller resolutions. 

BR

HH wrote

This is only a demo if your "coloring book" uses simple pixel paint.

HTML5 also includes SVG/Canvas which makes it easy to use the same objects
for different screen sizes and resolutions (it would be a nightmare with 
paint).



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 "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 mouseUp

colorPalette "Color map": execution error at line n/a (Object: object does not 
have this property)

and, looking in the dictionary we see "selectedColor" is reserved for internal 
use.

Something has changed?

BR





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

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 SVG/Canvas which makes it easy to use the same objects
for different screen sizes and resolutions (it would be a nightmare with paint).


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 you both.

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)

Cheers from Kauai

BR


On 6/22/19, 12:38 PM, "use-livecode on behalf of Niggemann, Bernd via 
use-livecode"  wrote:

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

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

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

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 selectedColor2 of me
end mouseUp

2. script of grp "Palette" of cd id 1001 of stack "HAColorChooser":

on resetControls
  set the selectedColor2 of colorPalette 1 to getcolor(false)
end resetControls

Of course you have first to toplevel stack "HAColorChooser"
(if it's open as palette).
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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 selectedColor to selectedColor2 in the 
control "Color Map" but

"colorPalette"  which also is  only for internal use.

I can see it "Color Map" on screen, select it. But you can't get the inspector 
on it, opens up "No Object Selected" or set a custom property on it 

He is exposing "deep engine" code and objects we can’t easily leverage in 
today's IDE

BR


On 6/22/19, 9:26 AM, "use-livecode on behalf of hh via use-livecode" 
 wrote:

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
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

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
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


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, 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 "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 mouseUp

colorPalette "Color map": execution error at line n/a (Object: object does not 
have this property)

and, looking in the dictionary we see "selectedColor" is reserved for internal 
use.

Something has changed?

BR





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

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 mouseUp

colorPalette "Color map": execution error at line n/a (Object: object does not 
have this property)

and, looking in the dictionary we see "selectedColor" is reserved for internal 
use.

Something has changed?

BR





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

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 mouseUp



c



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Raney's new thing

2018-05-17 Thread Mark Wieder via use-livecode

On 05/17/2018 01:38 PM, Tom Glod via use-livecode wrote:

awesome.  is this done using LC?


Since it's web-based, I doubt it. In theory it's open source, but I 
haven't found any links to source code, and I imagine it won't appear 
until v1.0 is ready. And it'll probably take me that long to read 
through the manifesto anyway.


--
 Mark Wieder
 ahsoftw...@gmail.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Raney's new thing

2018-05-17 Thread Tom Glod via use-livecode
awesome.  is this done using LC?

On Thu, May 17, 2018 at 4:35 PM, Mark Wieder via use-livecode <
use-livecode@lists.runrev.com> wrote:

> I guess not really 'new' since it's been in progress for four years, but
> this is a recent surfacing of the beta.
>
> http://www.matchism.org/
>
> --
>  Mark Wieder
>  ahsoftw...@gmail.com
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Scott Raney's new thing

2018-05-17 Thread Mark Wieder via use-livecode
I guess not really 'new' since it's been in progress for four years, but 
this is a recent surfacing of the beta.


http://www.matchism.org/

--
 Mark Wieder
 ahsoftw...@gmail.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Rossi and TactileMedia

2018-05-01 Thread Lagi Pittas via use-livecode
Hi All,

I too think Scotts stuff is a cut above. I bought tm1 and 2 with no usage
in mind just because they looked so good - they were never used
just played with, somewhere in that code there are going to be nuggets for
the future.

If you go to tactilemedia now it goes to scottrossi.design - (talk about
bleeding edge "we don't need no steeenkin dot coms"

but if  you go to http://tactilemedia.com/blog/ all his clever artistry is
there to download for posterity.

To be honest these articles and stack should be on the resources  on
livecode.com - they show what you can do with a "baby language" (one of my
colleagues when he saw the "put a into b" of livecode)

"There are none so blind as those who program in C"  - Lagi Pittas

Regards Lagi



On 1 May 2018 at 04:51, Todd Fabacher via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Hi Alex,
>
> You asked:
>
> Can you say if you have any plans to produce versions of your widgets for
> non-mobile
> platforms? - YES, 100%. It is true we are looking at mobile for the moment,
> but we are looking to all platforms if possible.
>
> TMAlign - is more an IDE tool and not a widget, but I will take a look
>
> Thanks,
>
> Todd Fabacher
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Rossi and TactileMedia

2018-04-30 Thread Todd Fabacher via use-livecode
Hi Alex,

You asked:

Can you say if you have any plans to produce versions of your widgets for
non-mobile
platforms? - YES, 100%. It is true we are looking at mobile for the moment,
but we are looking to all platforms if possible.

TMAlign - is more an IDE tool and not a widget, but I will take a look

Thanks,

Todd Fabacher
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Rossi and TactileMedia

2018-04-30 Thread Mike Kerner via use-livecode
I'm also a huge fan of tmnavigator, that has saved me from screaming and
throwing a tantrum on multiple occasions, but that's not a widget.

On Mon, Apr 30, 2018 at 11:47 AM Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:

> spell correct. I typed tmalign.
>
> > On Apr 30, 2018, at 08:45 , Bob Sneidar via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > malign.rev.sh
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>


-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Rossi and TactileMedia

2018-04-30 Thread Bob Sneidar via use-livecode
spell correct. I typed tmalign. 

> On Apr 30, 2018, at 08:45 , Bob Sneidar via use-livecode 
>  wrote:
> 
> malign.rev.sh


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Rossi and TactileMedia

2018-04-30 Thread Mike Kerner via use-livecode
Todd,
I think every one of the tmc2 controls would be a good start, as would a
calendar widget.  More customization options are always better.

On Mon, Apr 30, 2018 at 11:36 AM Roger Guay via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Hi Bob,
>
> If your problem with tmAlign was the same as mine, namely the title greyed
> out and no longer readable, I hacked/fixed it by adding "set the blendlevel
> of grc "header_base" of stack "tmAlign3" to 90” on OpenStack.
>
> I did a similar thing with tmEffects.
>
> Cheers,
>
> Roger
>
>
>
> > On Apr 30, 2018, at 8:09 AM, Bob Sneidar via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > I really liked TMAlign. I had a problem with it recently in a newer
> version of LC so I removed it.
> >
> > Bob S
> >
> >
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Scott Rossi and TactileMedia

2018-04-30 Thread Bob Sneidar via use-livecode
Actually my problem now is that the plugin seems to be a bash shell not a 
livecode stack. Not sure how that happened. If I try to rename it from 
malign.rev.sh to malign.rev it won't open saying it is corrupted. In either 
case it will not load as a plugin. I will have to go back and see if I have an 
old copy of it. 

Bob S


> On Apr 30, 2018, at 08:35 , Roger Guay via use-livecode 
>  wrote:
> 
> Hi Bob,
> 
> If your problem with tmAlign was the same as mine, namely the title greyed 
> out and no longer readable, I hacked/fixed it by adding "set the blendlevel 
> of grc "header_base" of stack "tmAlign3" to 90” on OpenStack. 
> 
> I did a similar thing with tmEffects.
> 
> Cheers,
> 
> Roger
> 
> 
> 
>> On Apr 30, 2018, at 8:09 AM, Bob Sneidar via use-livecode 
>>  wrote:
>> 
>> I really liked TMAlign. I had a problem with it recently in a newer version 
>> of LC so I removed it. 
>> 
>> Bob S
>> 
>> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Scott Rossi and TactileMedia

2018-04-30 Thread Roger Guay via use-livecode
Hi Bob,

If your problem with tmAlign was the same as mine, namely the title greyed out 
and no longer readable, I hacked/fixed it by adding "set the blendlevel of grc 
"header_base" of stack "tmAlign3" to 90” on OpenStack. 

I did a similar thing with tmEffects.

Cheers,

Roger



> On Apr 30, 2018, at 8:09 AM, Bob Sneidar via use-livecode 
>  wrote:
> 
> I really liked TMAlign. I had a problem with it recently in a newer version 
> of LC so I removed it. 
> 
> Bob S
> 
> 

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Scott Rossi and TactileMedia

2018-04-30 Thread Bob Sneidar via use-livecode
I really liked TMAlign. I had a problem with it recently in a newer version of 
LC so I removed it. 

Bob S


> On Apr 29, 2018, at 12:09 , Todd Fabacher via use-livecode 
> <use-livecode@lists.runrev.com> wrote:
> 
> Scott was such a talented innovator and I loved the work he did.
> 
> At Digital Pomegranate we were customers and used TactileMedia controls.
> Since we are now creating UI widgets, please let us know what controls
> from TactileMedia you liked the most and we will see if we can make them
> into now LCB widgets.
> 
> --Todd
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Rossi and TactileMedia

2018-04-29 Thread Alex Tweedly via use-livecode

Hi Todd,

can you say if you have any plans to produce versions of your widgets 
for non-mobile platforms ?


Thanks,

Alex.


On 29/04/2018 20:09, Todd Fabacher via use-livecode wrote:

Scott was such a talented innovator and I loved the work he did.

At Digital Pomegranate we were customers and used TactileMedia controls.
Since we are now creating UI widgets, please let us know what controls
from TactileMedia you liked the most and we will see if we can make them
into now LCB widgets.

--Todd
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Rossi and TactileMedia

2018-04-29 Thread Todd Fabacher via use-livecode
Scott was such a talented innovator and I loved the work he did.

At Digital Pomegranate we were customers and used TactileMedia controls.
Since we are now creating UI widgets, please let us know what controls
from TactileMedia you liked the most and we will see if we can make them
into now LCB widgets.

--Todd
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Omegabundle, Scott Rossi and TactileMedia

2018-04-29 Thread Douglas Ruisaard via use-livecode

I was intrigued by Roger's reference to "tmAlign and "tmEffects" ... always on 
the lookout for tools to make my programming life easier.  In the process I 
also ran across references to "Omegabudle 2011 for Livecode" ... which sounded 
like a GREAT deal.  HOWEVER, I cannot find anywhere that I can acquire these 
tools much less more information regarding them.  The " paradigmasoft.com" site 
(referenced in 
"http://lists.runrev.com/pipermail/use-livecode/2012-February/168494.html;) now 
re-directs to " valentina-db.com" with no reference to this Omegabundle 
whatsoever.  The " omegabundle.com" site does not have any reference to any LC 
tools (that I can find).  I've gone back a few months in THIS list and don't 
see any recent entry by Lynn Fredricks, who was the President of Paradigma 
Software in 2012.

Scott Rossi's TactileMedia store, when accessed directly, only has "tmControl 
1" available and scant info on it.  If you Google for "tactilemedia store", you 
can find a reference to "tmControl 2" but, again with little info.  Absolutely 
NOTHING about "tmAlign" or "tmEffects" or anything else for that matter.

I will try to contact Mr. Rossi and Lynn Fredricks directly but, in the 
meantime, if anyone has any suggestions as to how to acquire these utilities or 
where they might be available, I'd greatly appreciate the information.

Cheers!
Doug

Douglas Ruisaard
Trilogy Software
(250) 573-3935

> --
> 
> Message: 7
> Date: Sat, 28 Apr 2018 10:48:44 -0700
> From: Roger Guay <i...@mac.com>
> To: use-livecode@lists.runrev.com
> Subject: Scott Rossi and TactileMedia
> Message-ID: <2c5a3b88-d72f-4cb6-af6c-87b559257...@mac.com>
> Content-Type: text/plain; charset=utf-8
> 
> I am a total fan of Scott and the many contributions he has offered to the LC 
> community over the
> years. I particularly like his little plugins tmAlign and tmEffects and use 
> them all the time.
> However, the title bars of these have gone from light on dark to light on 
> light in V9 of LC, to such
> an extent that one can hardly read the menu items. And, so far, I have been 
> unable to find a
> resolution on Scott?s TactileMedia website. Can anyone suggest an easy fix 
> for this?
> 
> I have missed Scott?s frequent participation to this list and hope he is 
> well!!
> 
> 
> Cheers,
> 
> Roger
> 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott Rossi and TactileMedia

2018-04-28 Thread Roger Guay via use-livecode
Thanks, Jacque. I will try.


> On Apr 28, 2018, at 12:29 PM, J. Landman Gay via use-livecode 
> <use-livecode@lists.runrev.com> wrote:
> 
> On 4/28/18 12:48 PM, Roger Guay via use-livecode wrote:
>> I am a total fan of Scott and the many contributions he has offered to the 
>> LC community over the years. I particularly like his little plugins tmAlign 
>> and tmEffects and use them all the time. However, the title bars of these 
>> have gone from light on dark to light on light in V9 of LC, to such an 
>> extent that one can hardly read the menu items. And, so far, I have been 
>> unable to find a resolution on Scott’s TactileMedia website. Can anyone 
>> suggest an easy fix for this?
>> I have missed Scott’s frequent participation to this list and hope he is 
>> well!!
> 
> I don't think he reads the list regularly any more, you'd probably get a 
> quicker response if you wrote him directly.
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Scott Rossi and TactileMedia

2018-04-28 Thread J. Landman Gay via use-livecode

On 4/28/18 12:48 PM, Roger Guay via use-livecode wrote:

I am a total fan of Scott and the many contributions he has offered to the LC 
community over the years. I particularly like his little plugins tmAlign and 
tmEffects and use them all the time. However, the title bars of these have gone 
from light on dark to light on light in V9 of LC, to such an extent that one 
can hardly read the menu items. And, so far, I have been unable to find a 
resolution on Scott’s TactileMedia website. Can anyone suggest an easy fix for 
this?

I have missed Scott’s frequent participation to this list and hope he is well!!


I don't think he reads the list regularly any more, you'd probably get a 
quicker response if you wrote him directly.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Scott Rossi and TactileMedia

2018-04-28 Thread Roger Guay via use-livecode
I am a total fan of Scott and the many contributions he has offered to the LC 
community over the years. I particularly like his little plugins tmAlign and 
tmEffects and use them all the time. However, the title bars of these have gone 
from light on dark to light on light in V9 of LC, to such an extent that one 
can hardly read the menu items. And, so far, I have been unable to find a 
resolution on Scott’s TactileMedia website. Can anyone suggest an easy fix for 
this?

I have missed Scott’s frequent participation to this list and hope he is well!!


Cheers,

Roger



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Pro Git 2, Scott Chacon, Ben Straub, eBook - Amazon.com

2018-02-07 Thread Monte Goulding via use-livecode
That book is available online for free here https://git-scm.com/book/en/v2 
<https://git-scm.com/book/en/v2>

> On 8 Feb 2018, at 12:54 am, Brian Milby via use-livecode 
> <use-livecode@lists.runrev.com> wrote:
> 
> Saw this book free for Amazon Kindle.  Not sure how long it will be free
> though.
> 
> https://www.amazon.com/Pro-Git-Scott-Chacon-ebook/dp/B01ISNIKES
> 
> 
> Sent from my iPhone
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Pro Git 2, Scott Chacon, Ben Straub, eBook - Amazon.com

2018-02-07 Thread Matthias Rebbe via use-livecode
Thanks Brian for this information.

Btw, the German website of Amazon is also giving it away for free

https://www.amazon.de/Pro-Git-Scott-Chacon-ebook/dp/B01ISNIKES/ref=tmm_kin_swatch_0?_encoding=UTF8=1518017853=8-1
 
<https://www.amazon.de/Pro-Git-Scott-Chacon-ebook/dp/B01ISNIKES/ref=tmm_kin_swatch_0?_encoding=UTF8=1518017853=8-1>



> Am 07.02.2018 um 14:54 schrieb Brian Milby via use-livecode 
> <use-livecode@lists.runrev.com <mailto:use-livecode@lists.runrev.com>>:
> 
> Saw this book free for Amazon Kindle.  Not sure how long it will be free
> though.
> 
> https://www.amazon.com/Pro-Git-Scott-Chacon-ebook/dp/B01ISNIKES 
> <https://www.amazon.com/Pro-Git-Scott-Chacon-ebook/dp/B01ISNIKES>
> 
> 
> Sent from my iPhone
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Pro Git 2, Scott Chacon, Ben Straub, eBook - Amazon.com

2018-02-07 Thread Brian Milby via use-livecode
Saw this book free for Amazon Kindle.  Not sure how long it will be free
though.

https://www.amazon.com/Pro-Git-Scott-Chacon-ebook/dp/B01ISNIKES


Sent from my iPhone
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


[OT] Scratchboard of Dar Scott

2012-05-11 Thread Bob Sneidar
Hey Dar. Who did that scratchboard of your portrait on your swcp.com page? That 
is pretty good work! 

Bob



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [OT] Scratchboard of Dar Scott

2012-05-11 Thread Dar Scott

On May 11, 2012, at 10:00 AM, Bob Sneidar wrote:
 Hey Dar. Who did that scratchboard of your portrait on your swcp.com page? 
 That is pretty good work! 

I forgot the name of the artist; that was done in the early 80s for a book on 
microcomputer innovators.  It looks cool because it looks like they did a piece 
on me in WSJ.

Somebody gave it a haircut and cropped it in the late 90s where it lost 
something.  That is what is at the website.

I don't look like that anymore and I have been discussing changes with the web 
design person.  I look like Santa in the last few months of the year, but 
perhaps at other times I scare small children, so we have to find a picture 
safe for Internet.  Perhaps, I should warn people when it changes.  

Right now, I'm making changes by hand and getting the website simplified and 
valid.  Sometime later a new look might come.  Right now the only new look is 
graph paper instead of wood grain.  And soon, a new picture.  The website was 
originally created in the 90s with modems in mind, so the speed of page changes 
might be startling.  

Dar


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Scott

2012-03-18 Thread Ken Ray

On Mar 13, 2012, at 12:21 PM, Jim Hurley wrote:

 Thanks Scott and Colin,
 
 LiveCode and this list make it sooo easy. It is almost embarrassing.
 
 Does anyone know what program, if there is ONE, that opens when you double 
 click on a jpg or png image in Windows?
 
 What happens when you click on an image.jpg? Does Windows present options?

On my Win7 machine, jpg and pngs open in Windows Photo Viewer.

Ken Ray
Sons of Thunder Software, Inc.
Email: k...@sonsothunder.com
Web Site: http://www.sonsothunder.com/  

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Scott

2012-03-13 Thread Jim Hurley
Thanks Scott and Colin,

LiveCode and this list make it sooo easy. It is almost embarrassing.

Does anyone know what program, if there is ONE, that opens when you double 
click on a jpg or png image in Windows?

What happens when you click on an image.jpg? Does Windows present options?


Jim



 
 Message: 17
 Date: Mon, 12 Mar 2012 14:00:43 -0800
 From: Scott Rossi sc...@tactilemedia.com
 To: LiveCode Mail List use-livecode@lists.runrev.com
 Subject: Re: Exporting a snapshot directly to Preview
 Message-ID: cb83b20b.5b07d%sc...@tactilemedia.com
 Content-Type: text/plain; charset=US-ASCII
 
 Hi Jim:
 
 Here's an example for OS X:
 
 on mouseUp
   put specialFolderPath(desktop)  /exported.png into theFilePath
   export snapshot from img 1 to file theFilePath as PNG
   launch theFilePath with /Applications/Preview.app
 end mouseUp
 
 You can choose whatever image format you need, and you should probably make
 the script more robust by checking for the existence/path of the Preview
 app, confirm overwriting of the exported file, etc.
 
 For Windows, you might be able to use MS Paint but I haven't tested this.
 
 Hope this helps.
 
 Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Thanks to Scott Rossi

2011-12-26 Thread Richard Gaskin

Roger Eller wrote:


I think this is the newsletter you seek.

http://www.runrev.com/newsletter/december/issue125/
http://www.runrev.com/newsletter/december/issue125/newsletter3.php


Thanks for the links.

Unfortunately, those going directly to the newsletter index at 
http://runrev.com/developers/resources/newsletters/ won't be able to 
find them, as that page only has links up to October, and none of the 
more recent newsletters are linked there.


Is this an opportunity for RevIgniter to help make a CMS that's less 
work to keep current than whatever RunRev is currently using?


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Thanks to Scott Rossi

2011-12-26 Thread Andre Garzia
On Mon, Dec 26, 2011 at 1:23 PM, Richard Gaskin
ambassa...@fourthworld.comwrote:

 Is this an opportunity for RevIgniter to help make a CMS that's less work
 to keep current than whatever RunRev is currently using?


I support this idea! It is time for RunRev to use LiveCodeServer in more
places in its own website.



-- 
http://www.andregarzia.com -- All We Do Is Code.
http://fon.nu -- minimalist url shortening service.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Thanks to Scott Rossi

2011-12-24 Thread Alejandro Tejada
Hi Roger,


Roger Guay wrote
 
 A special thanks to Scott Rossi who again gives us an elegant gift in the
 latest revUP. 
 And a wish for a Happy Holiday to all of you on this great list!
 Thanks and cheers,
 

Many Thanks and wish the same for every one of you.
Just for curiosity, Which revUP newsletter did you
wrote about?

http://runrev.com/developers/resources/newsletters/

Al

--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Thanks-to-Scott-Rossi-tp4226154p4232166.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Thanks to Scott Rossi

2011-12-24 Thread Roger Eller
On Sat, Dec 24, 2011 at 5:34 PM, Alejandro Tejada wrote:

 Hi Roger,


 Roger Guay wrote
 
  A special thanks to Scott Rossi who again gives us an elegant gift in the
  latest revUP.
  And a wish for a Happy Holiday to all of you on this great list!
  Thanks and cheers,
 

 Many Thanks and wish the same for every one of you.
 Just for curiosity, Which revUP newsletter did you
 wrote about?

 http://runrev.com/developers/resources/newsletters/

 Al


I think this is the newsletter you seek.

http://www.runrev.com/newsletter/december/issue125/
http://www.runrev.com/newsletter/december/issue125/newsletter3.php
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Thanks to Scott Rossi

2011-12-22 Thread Roger Guay
Hi All,

A special thanks to Scott Rossi who again gives us an elegant gift in the 
latest revUP. 

And a wish for a Happy Holiday to all of you on this great list!

Thanks and cheers,
Roger Guay

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Omegabundle for LiveCode Ending Soon; Scott Rossi's Building Beautiful Buttons Article

2011-05-14 Thread Lynn Fredricks
Hello all,

Just a quick note if you've expressed interest in this bundle.

We've posted Scott Rossi's Building Beautiful Buttons with tmColor and
tmGradient over on the Omegabundle website at Omegabundle.com.

If you've been thinking about this bundle - don't think too long! Our slated
end date is May 23, 2011. Don't forget that there are solutions for new
users of LiveCode, and others for those who already have it. For the same
price as buying LiveCode Pro Mobile (one desktop platform and one mobile
platform), you are getting over $4000 of the best plugins, externals and
related products.

Best regards,

Lynn Fredricks
President
Paradigma Software
http://www.paradigmasoft.com

Valentina SQL Server: The Ultra-fast, Royalty Free Database Server 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode