0
votes
2answers
67 views
How do I use Ruby1.9 with Shoes?
Shoes wraps it's own Ruby install, right?
I can't use Fiber which is a Ruby1.9 feature. And, I want to use a Fiber for creating a generator.
Here's my code (so you can make sure …
0
votes
2answers
112 views
Run Shoes clone in IronRuby
I found cool article on Creating cross platform GUI's with IronRuby where someone re-created the Shoes DSL by _why the lucky stiff in IronRuby.
Awesome right!
So, I downloaded …
0
votes
2answers
165 views
Problem in Ruby Shoes packaging?
The (Ruby Shoes) packaging solution from Hacketyhack.net doesnt work.
Can anyone point me to an alternative?
0
votes
1answer
34 views
How can I create a hidden button in Shoes?
In Shoes, I'd like to create a button that is initially hidden. I've tried passing :hidden => true as part of the button style, as well as calling @button.hide() after creating it, …
0
votes
3answers
468 views
Can’t install gems that depend on hoe
I can't seem to install the twitter gem in my shoes app.
When I try...
Shoes.setup do
gem 'twitter'
end
require 'twitter'
I get
hoe requires RubyGems version >= 1.3.1
…
1
vote
1answer
37 views
Why do I lose my instance variables when I invoke Shoes#’visit’ ?
I'm sure this has to do with the intricacies mentionned in Shoes > Manual > Rules but I just don't get it. If someone would care to explain why @var == nil in the following code .. …
0
votes
2answers
249 views
dropdown select box with “filter as you type” in shoes
Question: Does anyone have an example of a "filter as you type" dropdown control using Shoes?
Examples: If you are looking for examples of what i am talking about, see these.
ht …
1
vote
1answer
34 views
Shoes: Element.width return 0
I don't understand why the width function is implemented on all elements if it returns 0 for non-zero width elements. The following returns 0 for me.
Shoes.app do
p = para "My w …
1
vote
2answers
51 views
private method ‘split’ called for (Shoes::EditLine):Shoes::EditLine
Hi. I am trying to write a simple program that takes a rgb value and changes the background to that color using Shoes (Raisins revision 1134). Here is my code:
Shoes.app :title =& …
0
votes
1answer
26 views
How to make an element take up all-the-width-that-is-left?
Shoes.app do
flow do
file = "something with variable length"
para "Loading #{file}: "
progress :width => -300
end
end
As you can see from the code I am trying …
0
votes
1answer
42 views
Why can’t Shoes::Setup#gem find my gem?
Despite reading what has been written on this here and here and here, I still can't get these lines to work for me:
Shoes.setup do
gem 'statemachine'
end
require 'rubygems'
req …
2
votes
2answers
170 views
Method for building lightweight, cross-platform, text editor
I'm planning to build a simple, lightweight text editor that combines a great look with keyboard focused input.
I want to have a lot of control over things like antialiasing and a …
1
vote
2answers
102 views
How do I define a Shoes applications icon?
I have created an application in shoes and the .dmg(.app) and .exe version work on there respective target systems, but how do I control the icon that is used for the executable fi …
1
vote
1answer
129 views
Run Shoes gui app in IDE
Is there any way to write Shoes application using IDE (NetBeans for example)?
I hadn't found this solution and I don't like running Shoes app, selecting files, run.
I'm sure code …
0
votes
1answer
45 views
How do I apply border to a flow on click?
I've got this piece of Shoes app:
flow :top => 10, :left => 10 do
flow :width => 0.3 do
para @board.deck.card
click do
if @board.source_pile
@boa …
