0
votes
3answers
109 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 …
0
votes
1answer
27 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:
…
1
vote
1answer
37 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
2answers
78 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
124 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
198 views
Problem in Ruby Shoes packaging?
The (Ruby Shoes) packaging solution from Hacketyhack.net doesnt work.
Can anyone point me to an alternative?
1
vote
2answers
59 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" …
0
votes
1answer
48 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'
require 'statemachine'
…
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 …
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
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
19 views
How can I change the button text in Shoes?
Once a button is created in Shoes, is it possible to change the text? I've tried modifying the :text key in the button style--@button.style.inspect confirms the text is changed--but the button still …
0
votes
1answer
42 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 …
1
vote
2answers
109 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 files?
I just can't …
1
vote
1answer
84 views
Make text transparent in Shoes.app
Is there a way in Shoes to have text show up transparent?
I have:
Shoes.app{
para "Text", :stroke => rgb(1.0,0.0,0.0,0.5), :size => 100
}
But it's just showing up 100% red. I know opacity …
