0
votes
0answers
28 views
shoes url not working in Ubuntu?
Hello all,
i have been using Shoes in windows from couple of months and it was working awesome, but now i am having Ubuntu set up on my machine and i am trying to run shoes in it but it seems like URL …
0
votes
3answers
125 views
Best way to create GOOD LOOKING, multi-platform, desktop Ruby apps?
Hi everyone,
I've got an idea for an idiotically simple application, one that converts HAML and SASS into HTML & CSS files for the user by watching directory changes (like Compass). Almost all the …
1
vote
1answer
40 views
Automatic height of edit box
My shoes application has three items stacked on top of each other (with a stack, of course), in order:
A banner
An edit box
Two buttons in a flow
What I want to do is have the banner stay at it's …
0
votes
1answer
30 views
Centring a flow in Shoes
Can I center the contents of a flow in Shoes?
I know that a paragraph can be centred like:
para 'Centred paragrpah', :align=>'center'
However, this does not work with flows:
…
0
votes
2answers
128 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 the IronRuby …
0
votes
2answers
83 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 the problem isn't …
0
votes
2answers
213 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
48 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, but it remains …
0
votes
3answers
510 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
Is this a bug in …
0
votes
2answers
282 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.
…
1
vote
1answer
43 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 ...
I thought I could …
1
vote
1answer
42 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 width is: "
para …
0
votes
1answer
27 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 to display a …
1
vote
2answers
60 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 => "Show a Color" …
2
votes
2answers
182 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 all the graphics in …
