[MacRuby-devel] How do I add a background image in xcode4/macruby

2011-05-24 Thread az...@gmx.net
Hi All - I'm new to MacRuby so please be gentle! I am trying to add a background image to my app. I drag an 'image view' over to the window, but none of the options in any of the utilities drawers allows me to specify an image (which is what seems I need to do - according to various youtube vid

Re: [MacRuby-devel] How do I add a background image in xcode4/macruby

2011-05-24 Thread az...@gmx.net
Just a quick note to say I've got the background image working - it was as simple as dragging it from the media drawer (after being copied to the resources folder) duh! On 24 May 2011, at 16:46, az...@gmx.net wrote: > Hi All - I'm new to MacRuby so please be gentle! > > I

[MacRuby-devel] Dynamic refresh in a view - xcode 4 / MacRuby

2011-05-24 Thread az...@gmx.net
I have a label that I have set to blank, and after a user clicks 'go' I generate a random word or number and use: self.label.stringValue = "some_word" to update the view. However, I would like to show 200 or so random words in quick succession before the final one is shown - just because it's

Re: [MacRuby-devel] Dynamic refresh in a view - xcode 4 / MacRuby

2011-05-25 Thread az...@gmx.net
ext_word >> self.setNeedsDisplay true >> end >> >> def next_word >> ... >> end >> >> self.timer = NSTimer.scheduledTimerWithTimeInterval( 1/20.0, >> target:self, selector:"drawWord:", userInfo:nil, repeats:true) >> >> >&

[MacRuby-devel] How do we center label text?

2011-05-26 Thread az...@gmx.net
Couple of quick questions I hope someone can help with. 1. How do we center text in labels? I have a text label, and it is set to blank (text deleted via interface builder) but when the text comes in I'd like it to center, any ideas how to do it? I'm setting my label via self.label.stringValue.

Re: [MacRuby-devel] How do we center label text?

2011-05-27 Thread az...@gmx.net
Thanks Shannon - I managed to work it out with your help: self.label.alignment = NSCenterTextAlignment I've also worked out (2) too :-) self.img.hidden = false does the trick :) On 27 May 2011, at 02:34, az...@gmx.net wrote: > Couple of quick questions I hope someone can help with

Re: [MacRuby-devel] Could not connect button:

2011-06-03 Thread az...@gmx.net
Hi Bryan Check out this quick walkthrough just to make sure you are doing everything correctly: http://youtu.be/JbGqKf38QUI If you can, go through that and let us know if you still get the same problem. Aston On 3 Jun 2011, at 16:41, Bryan Goines wrote: > Hi all, > > I am trying to understa

[MacRuby-devel] Keep getting signature error on submission to mac app store

2011-06-12 Thread az...@gmx.net
Anyone got a step-by-step showing us how to submit an app to the Mac app store? I'm able to submit my app, but I get an email saying: - Invalid Signature - This error occurs when you have signed your app's installer incorrectly. There are two certs required for this process: the "3rd Party M

Re: [MacRuby-devel] Keep getting signature error on submission to mac app store

2011-06-13 Thread az...@gmx.net
1. Create you application Archive > 2. Navigate into the Archive and find your Application .app bundle in Terminal > 3. Execute the following command: codesign -f -s "3rd Party Mac > Developer Application: My Name" MyApp.app/ > 4. Upload as normal from Organizer. > >

Re: [MacRuby-devel] Keep getting signature error on submission to mac app store

2011-06-14 Thread az...@gmx.net
store/ I'll email you a promo code if the app ever gets accepted! A On 14 Jun 2011, at 03:21, Daniel Westendorf wrote: > I'm glad I was able to help! That one took me weeks to figure out :) > > dw > > On Jun 13, 2011, at 6:24 PM, "az...@gmx.net" wrote: >

[MacRuby-devel] Does everyone do this with their MacRuby apps?

2011-06-15 Thread az...@gmx.net
http://redwoodapp.posterous.com/macruby-and-xcode-4-build-a-self-contained-ma I'm still having trouble with getting my app submitted and have opened a ticket with Apple - they got back to me tonight and asked why I have a separate target for deployment - I told them I followed the instructions i

Re: [MacRuby-devel] Does everyone do this with their MacRuby apps?

2011-06-16 Thread az...@gmx.net
I think that's a great idea Rich! Daniel - I hope you get the time to do one soon :) If I ever mange to get mine successfully submitted I'll post how/what I did too. A On 16 Jun 2011, at 15:13, Daniel Westendorf wrote: > I have wanted to do this for a while because of my own frustrations > getti

[MacRuby-devel] How do you embed the MacRuby framework for an app that's to be submitted to the App Store?

2011-06-16 Thread az...@gmx.net
Sorry if it seems as though I am repeating myself, but maybe if I try and get this done step by step I might get somewhere :p (Honestly on the verge of just giving up on MacRuby :() Anyone know what I need to do to get MacRuby correctly embedded in my App for app store submission? I'm currently

Re: [MacRuby-devel] How do you embed the MacRuby framework for an app that's to be submitted to the App Store?

2011-06-16 Thread az...@gmx.net
t; wrote: >> All you should have to do is add the --embed switch to the deployment >> target. See the attached screenshot. >> >> dw >> >> On Thu, Jun 16, 2011 at 4:59 PM, az...@gmx.net wrote: >>> Sorry if it seems as though I am repeating myself, b

Re: [MacRuby-devel] How do you embed the MacRuby framework for an app that's to be submitted to the App Store?

2011-06-16 Thread az...@gmx.net
rough it. I also ran into this problem: > http://lists.macosforge.org/pipermail/macruby-devel/2011-May/007681.html > > dw > > On Thu, Jun 16, 2011 at 5:55 PM, az...@gmx.net wrote: >> Hey Daniel >> >> Mine's the same (apart from the gems). >

Re: [MacRuby-devel] Does everyone do this with their MacRuby apps?

2011-06-17 Thread az...@gmx.net
Can you write a quick guide for us Laurent? Then perhaps one of us could expand it into a full how-to? Or maybe you can you let us know if the steps detailed here: http://www.brontesaurus.com/2011/04/signing-xcode-4-projects-for-mac-app.html And here: http://redwoodapp.posterous.com/macruby-and

Re: [MacRuby-devel] Does everyone do this with their MacRuby apps?

2011-06-17 Thread az...@gmx.net
Here ya go - a quick guide - but I think it includes everything: http://astonj.com/uncategorized/how-to-submit-your-macruby-app-to-the-apple-mac-app-store/ Thanks for Daniel for the last piece of the puzzle! On 17 Jun 2011, at 20:15, Laurent Sansonetti wrote: > I think we need an "official" tu

[MacRuby-devel] Do MacRuby apps take longer to be reviewed on the Mac App Store?

2011-06-23 Thread az...@gmx.net
Mine's been 'in review' for two days now... maybe they are trying to tell me they don't like my app :p How long did it take for your app to get reviewed? I'm guessing they have to be reviewed by a team that knows MacRuby - hence it might be a bit longer than normal. (My app is only about 140 li

Re: [MacRuby-devel] Do MacRuby apps take longer to be reviewed on the Mac App Store?

2011-06-23 Thread az...@gmx.net
y when you don't have to > resubmit them. > On Thursday, June 23, 2011 at 11:13 AM, az...@gmx.net wrote: > >> Mine's been 'in review' for two days now... maybe they are trying to tell me >> they don't like my app :p >> >> How long did it ta

Re: [MacRuby-devel] Do MacRuby apps take longer to be reviewed on the Mac App Store?

2011-06-23 Thread az...@gmx.net
Apple is getting faster, but it still feels like ages while you wait for your > app to show up live. > > [edit] Double post - stupid Sparrow >> On Thursday, June 23, 2011 at 11:28 AM, az...@gmx.net wrote: >> >>> Thanks for the reply Dominic. I shall just have to sit

Re: [MacRuby-devel] Do MacRuby apps take longer to be reviewed on the Mac App Store?

2011-06-23 Thread az...@gmx.net
Well it's been reviewed - but got rejected :( They said I should remove 'Mac' from the name - yet there's lots of other apps in the store that have Mac in the name :cry: On 23 Jun 2011, at 16:41, az...@gmx.net wrote: > Haha I know what you mean Dominic - I can't

Re: [MacRuby-devel] Do MacRuby apps take longer to be reviewed on the Mac App Store?

2011-06-23 Thread az...@gmx.net
at 22:53, Matt Aimonetti wrote: > That's actually a common complain I heard from many people. Oh well, now you > know it's not because you used MacRuby :p > > - Matt > > On Thu, Jun 23, 2011 at 1:21 PM, az...@gmx.net wrote: > Well it's been reviewed - but

[MacRuby-devel] My MacRuby app has been accepted on the Mac App Store!

2011-07-08 Thread az...@gmx.net
Hey Everyone! My App has finally been accepted onto the Mac App Store :-) http://luckymac.com/ It took a while but we got there in the end! Originally the app was named LuckyMac Lottery (as I was planning on doing a few 'LuckyMac' apps) but they didn't like the word 'Mac' in the app title so

Re: [MacRuby-devel] My MacRuby app has been accepted on the Mac App Store!

2011-07-08 Thread az...@gmx.net
2011 um 19:21 schrieb az...@gmx.net: >> >> The app wasn't planned - a friend crowd sources numbers for the lottery on >> Twitter, and so one day I created a Ruby script for him - and then thought, >> wonder if I could make it an executable script where he'd ju

Re: [MacRuby-devel] [ANN] Launch: Redwood - Spotlight for the cloud

2011-08-01 Thread az...@gmx.net
Congrats Derek - looks good! On 1 Aug 2011, at 18:07, Derek Haynes wrote: > Redwood is a "Spotlight for the cloud" -- it searches Basecamp, Gmail, > Google Docs, and Pivotal Tracker from one search bar on your desktop. > You can download Redwood from our homepage: > > http://redwoodapp.com > >

Re: [MacRuby-devel] Keymando is now Available in the App Store!

2011-08-01 Thread az...@gmx.net
Nice job Kevin - I bet it will interest lots of Vim users. Aston On 1 Aug 2011, at 21:05, Kevin Colyar wrote: > Hey Guys, > > I've finally released my MacRuby app, Keymando, to the App Store! > > http://keymando.com > > What is Keymando? > > > Keymando is a full-featured inpu

[MacRuby-devel] Is Xcode4 broke on Lion?

2011-08-17 Thread az...@gmx.net
Just upgraded Xcode for Lion, created a new app, added ':button' to the attr_accessor in AppDelegate but when I click on MainMenu.xib and App Delegate a connection for button doesn't appear in the connections tab. (I went into my old app too, added :tested to the attr_accessor but it doesn't app

Re: [MacRuby-devel] Is Xcode4 broke on Lion?

2011-08-17 Thread az...@gmx.net
in IB, and switch the class name back to my > MacRuby class. Kinda sucks, but there's not currently a better option for > Lion with Xcode 4.1 or 4.2. > > Dominic > On Wednesday, August 17, 2011 at 3:56 PM, az...@gmx.net wrote: > >> Just upgraded Xcode for Lion, create

Re: [MacRuby-devel] Is Xcode4 broke on Lion?

2011-08-17 Thread az...@gmx.net
d actions in, linking them in IB, and switch the class name back >>> to my MacRuby class. Kinda sucks, but there's not currently a better option >>> for Lion with Xcode 4.1 or 4.2. >>> >>> Dominic >>> On Wednesday, August 17, 2011 at 3:56 PM,

Re: [MacRuby-devel] Is Xcode4 broke on Lion?

2011-08-17 Thread az...@gmx.net
Hopefully it'll be back to normal soon. > > Dominic > On Wednesday, August 17, 2011 at 4:04 PM, az...@gmx.net wrote: > >> Thanks Dominic. >> >> I know zero Obj-C so am just going to have to give up until they fix it :( >> (Do you know if it has been report

Re: [MacRuby-devel] [ANN] Launch: MemoryCloud - Where memories live

2011-09-01 Thread az...@gmx.net
Looks good - congrats! Ast On 1 Sep 2011, at 17:16, Steven Buxton wrote: > > http://memorycloudapp.com - We built this 100% in MacRuby 0.10 and it was a > blast to build. Started building it in 0.6 and worked on it all the way to > Lion and 0.10. Never had 1 issue in app approval with it be

Re: [MacRuby-devel] XCode 4 error

2011-09-11 Thread az...@gmx.net
I just tried to get the XCode 4.2 beta but it's saying for iOS developers only (I have an OSX dev licence) - is that a fault on their part or are betas of it usually available for OS X dev licences only? (Or am I looking in the wrong place :/) AstonJ On 11 Sep 2011, at 18:37, Matt Aimonetti wr

Re: [MacRuby-devel] -twolevel_namespace issue?

2011-09-13 Thread az...@gmx.net
I think it would be easier to collaborate on a project like this if we had a good forum - where threads can be sticked, announcements be posted etc It's one of the things I miss from the PHP world, where there are lots of communities using forums very effectively. From support to collaboration,

Re: [MacRuby-devel] Apps in the MAS built with MacRuby

2011-09-18 Thread az...@gmx.net
Mine's a simple little app: http://luckymac.com/ If you want a code for it just let me know! Aston On 18 Sep 2011, at 16:52, Eloy Duran wrote: > Hey guys, > > For an upcoming presentation I’m giving (on saturday at SecondConf) I’d like > to have an updated list of apps built with MacRuby whi

Re: [MacRuby-devel] Apps in the MAS built with MacRuby

2011-09-18 Thread az...@gmx.net
If it's made with MacRuby, yes: http://astonj.com/tech/how-to-submit-your-macruby-app-to-the-mac-app-store/ On 18 Sep 2011, at 17:20, Pavlos Vinieratos wrote: > if I make a little game with gosu, can I put it on MAS? > > On Sun, Sep 18, 2011 at 7:11 PM, az...@gmx.net wrote: >

Re: [MacRuby-devel] MacRuby App Store Code Signing Issue

2011-10-13 Thread az...@gmx.net
Those emails might be old - go by what the status is on the Apple site :-) Aston On 13 Oct 2011, at 18:05, Elliot Temple wrote: > Short version: > > Getting errors like this emailed from Apple when I submit my app, please help: > >> Invalid Signature - the executable Hard >> Platformer.app/Co

[MacRuby-devel] Is this possible in MacRuby?

2011-11-17 Thread az...@gmx.net
Hi All, Is it possible to make a Lion app(/option) with MacRuby which allows you to change the opacity (alpha value) of other apps/windows via the View menu? So say I have a PDF open in Preview, I'd go to: view menu > transparency, and then set it to 50% Is this possible? Would it be a pain to

Re: [MacRuby-devel] Is this possible in MacRuby?

2011-11-19 Thread az...@gmx.net
, Joshua Ballanco wrote: > On Thu, Nov 17, 2011 at 1:07 PM, az...@gmx.net wrote: > Hi All, > > Is it possible to make a Lion app(/option) with MacRuby which allows you to > change the opacity (alpha value) of other apps/windows via the View menu? > > So say I have a PDF open

Re: [MacRuby-devel] Is this possible in MacRuby?

2011-11-21 Thread az...@gmx.net
ng like it might be possible as Little Snitch intercepts network connections :/ Thanks in advance. Aston On 20 Nov 2011, at 00:37, Joshua Ballanco wrote: > On Thu, Nov 17, 2011 at 1:07 PM, az...@gmx.net wrote: > Hi All, > > Is it possible to make a Lion app(/option) with MacRu

Re: [MacRuby-devel] The future of MacRuby

2012-04-05 Thread az...@gmx.net
Thanks for the update Matt. I haven't actually used MacRuby since my last app, although would love to see it for iOS (as well as keeping OS X support). I guess that would get a lot more people interested too, given the success and popularity of the iOS platform. I think most of your other sugge

Re: [MacRuby-devel] RubyMotion: Ruby for iOS

2012-05-03 Thread az...@gmx.net
This is awesome news - congrats Laurent!! Aston On 3 May 2012, at 18:02, Laurent Sansonetti wrote: > Hi guys, > > I am extremely excited to announce the immediate availability of > RubyMotion, a revolutionary toolchain for iOS development in Ruby. > > (RubyMotion is what I have been working on

Re: [MacRuby-devel] RubyMotion: Ruby for iOS

2012-05-03 Thread az...@gmx.net
Personally I think it's the next best thing that could happen aside from Apple releasing it as a 'serious' platform with their full weight behind it. MacRuby was great, but Apple didn't really care about it, Laurent did - as much as he could while not getting paid for it - but Apple didn't, leas