Re: [Factor-talk] TryRuby, etc.

2011-08-23 Thread Michael Clagett

Sorry.  Misunderstood what you were asking.
 



From: mclag...@hotmail.com
To: factor-talk@lists.sourceforge.net
Date: Wed, 24 Aug 2011 03:15:58 +
Subject: Re: [Factor-talk] TryRuby, etc.





Hi Andrew --
 
Not a video tutorial, but I found this useful:  
http://www.bluishcoder.co.nz/handbook.pdf
 
Regards,
 
Mike
 



From: andrew.penneba...@gmail.com
Date: Tue, 23 Aug 2011 20:25:58 -0400
To: factor-talk@lists.sourceforge.net
Subject: [Factor-talk] TryRuby, etc.

Has anyone made an interactive online tutorial for Factor comparable to TryRuby?

Cheers, 


Andrew Pennebaker
www.yellosoft.us
-- 
EMC VNX: the world's simplest storage, starting under $10K The only unified 
storage solution that offers unified management Up to 160% more powerful than 
alternatives and 25% more efficient. Guaranteed. 
http://p.sf.net/sfu/emc-vnx-dev2dev
___ Factor-talk mailing list 
Factor-talk@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/factor-talk
-- 
EMC VNX: the world's simplest storage, starting under $10K The only unified 
storage solution that offers unified management Up to 160% more powerful than 
alternatives and 25% more efficient. Guaranteed. 
http://p.sf.net/sfu/emc-vnx-dev2dev
___ Factor-talk mailing list 
Factor-talk@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/factor-talk
   --
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] TryRuby, etc.

2011-08-23 Thread Chris Double
On Wed, Aug 24, 2011 at 12:25 PM, Andrew Pennebaker
 wrote:
> Has anyone made an interactive online tutorial for Factor comparable to
> TryRuby?

I used to run an Factor to JavaScript instance online. I think the
code 'fjsc' still in the repository. Blog posts about it here:

http://www.bluishcoder.co.nz/2006/12/12/compiling-factor-to-javascript.html
http://www.bluishcoder.co.nz/2006/12/17/factor-to-javascript-compiler-updates.html
http://www.bluishcoder.co.nz/2006/12/18/continuations-added-to-fjsc.html
http://www.bluishcoder.co.nz/2006/12/18/cross-domain-json-with-fjsc.html

-- 
http://www.bluishcoder.co.nz

--
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] TryRuby, etc.

2011-08-23 Thread Harold Hausman
On Tue, Aug 23, 2011 at 6:25 PM, Andrew Pennebaker
 wrote:
> Has anyone made an interactive online tutorial for Factor comparable to
> TryRuby?
>

Not just as cool as TryRuby, but this exists:
http://ideone.com/eMK8Y

And to try for yourself:
http://ideone.com/clone/eMK8Y

hth,
-Harold

--
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] TryRuby, etc.

2011-08-23 Thread Michael Clagett

Hi Andrew --
 
Not a video tutorial, but I found this useful:  
http://www.bluishcoder.co.nz/handbook.pdf
 
Regards,
 
Mike
 



From: andrew.penneba...@gmail.com
Date: Tue, 23 Aug 2011 20:25:58 -0400
To: factor-talk@lists.sourceforge.net
Subject: [Factor-talk] TryRuby, etc.

Has anyone made an interactive online tutorial for Factor comparable to TryRuby?

Cheers,


Andrew Pennebaker
www.yellosoft.us
-- 
EMC VNX: the world's simplest storage, starting under $10K The only unified 
storage solution that offers unified management Up to 160% more powerful than 
alternatives and 25% more efficient. Guaranteed. 
http://p.sf.net/sfu/emc-vnx-dev2dev
___ Factor-talk mailing list 
Factor-talk@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/factor-talk
   --
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


[Factor-talk] TryRuby, etc.

2011-08-23 Thread Andrew Pennebaker
Has anyone made an interactive online tutorial for Factor comparable to
TryRuby ?

Cheers,

Andrew Pennebaker
www.yellosoft.us
--
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


Re: [Factor-talk] Tooltip trouble

2011-08-23 Thread Jon Harper
You need a status window to have a status bar and display tooltips.
The listener is a status window, so displaying a button in the
listener will show the tooltip:
"foo" [ drop ]  "bar" >>tooltip gadget.

If you want to use the button in your own window, use
open-status-window to create your window instead of open-window. You
can read more at
http://docs.factorcode.org/content/article-ui.gadgets.status-bar.html

Jon

On Tue, Aug 23, 2011 at 12:49 PM, Michele Pes  wrote:
> Hi list!
> I'm now starting to study the factor gui:
>
> "Label"  add-gadget
> "Quit" [ drop 0 exit ]  "tooltip" >>tooltip add-gadget
> "My Title" open-window
>
> This code seems correct to me, and the listener run this script with no
> problem,
> but the tooltip is not working.
> Where is the error?
>
> Thank you all,
> michele pes
>
>
> --
> Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
> user administration capabilities and model configuration. Take
> the hassle out of deploying and managing Subversion and the
> tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
> ___
> Factor-talk mailing list
> Factor-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/factor-talk
>

--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk


[Factor-talk] Tooltip trouble

2011-08-23 Thread Michele Pes
Hi list!
I'm now starting to study the factor gui:

"Label"  add-gadget
"Quit" [ drop 0 exit ]  "tooltip" >>tooltip add-gadget
"My Title" open-window

This code seems correct to me, and the listener run this script with no
problem,
but the tooltip is not working.
Where is the error?

Thank you all,
michele pes


--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
___
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk