up vote 4 down vote favorite
share [g+] share [fb]

Is there any documentation that discribes all the available functions and objects in shoe?

update: 2008.01.21 I am looking for a list of all the methods that can be called against an animate object.

For example I only figured out how to pause an animation using the toggle() method by reading source code from the shoebox (http://the-shoebox.org/).

link|improve this question
This is an extremely confusing question. Perhaps you could be more descriptive in the future - this question almost looks like a case of abuse due to its ambiguity. – Jonathan Sampson Jan 20 '09 at 21:53
2  
I don't see anything particularly egregious about it. It might have been nice to explain what shoes is for those who are not sufficiently oriented to the subject matter, but then those people are not likely to answer the question anyway. – dreftymac Jan 20 '09 at 22:04
1  
My point is "Do you have documentation on functions in shoe" is too ambiguous. "Do you have documentation on functions available in the Shoe GUI Toolkit" is much more descriptive, and will match up to searches better. If I search "Ruby GUI Toolkits," I should be able to find this post. But I can't. – Jonathan Sampson Jan 20 '09 at 22:14
1  
dreftymac, thanks. Jonathan Sampson, excelent sugestion. though I did find your initial comment un-helpfull. This is how we learn. – user54682 Jan 21 '09 at 15:45
feedback

6 Answers

up vote 3 down vote accepted

If you run

shoes -m

in a console (command prompt) window, shoes will run in Help/Manual mode.

In this mode it displays the shoes manual, complete with runnable examples (the manual is a shoes application) This mode has a built-in search feature which jumps straight to the relevant section of the docs and is very handy for reference.

Most of this info is reformatted as html in the help.shoooes.net site mentioned above.

As most open source projects go it's well documented. And _why seems to have actually shown restraint in the documentation (he obviously worked out his cartoony madness in the nobody knows shoes manual!).

link|improve this answer
added link: help.shoooes.net – J.F. Sebastian Jan 21 '09 at 15:55
feedback

Shoes Help seems to have all kinds of reference documentation.

link|improve this answer
feedback

I have never seen such thing for Shoes. It seems Why prefers to document his stuff with cartoons and collages.

Have you read Nobody Knows Shoes?

link|improve this answer
It was just too "My first programming book" at first glance, I'll take another look at it. – user54682 Jan 16 '09 at 17:04
True. But I think the purpose of Shoes is to have an unusually low barrier to entry (like in the old C64 Basic days), allowing kids to start programming and be able to create graphics in a few lines of code. I don't know if there is more to Shoes than being "My first programming framework". – mookid8000 Jan 16 '09 at 18:09
feedback

Animation objects inherit from TimerBase (as do Every objects and Timer objects), and as such have the methods draw, remove, start, stop, and toggle. I don't know too much more... this is from my notes I took while digging through the shoes source. But those would be a good place to start.

link|improve this answer
feedback

It appears that there is no real documentation, as such--you just have to glean it from examples [?] An attempt at rdoc failed pretty well [just ran rdoc from within the github repo] http://roger.doachristianturndaily.info/ruby/shoes/doc/ you can look into the C code to try to discover them :)

link|improve this answer
feedback

It seems like shoes is not capable of interpreting Ruby. There are many things that you can do with Ruby that shoes can't handle. It was not a good choice for what I'm trying to do.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown