Re: Carousel - like control for Mac OS

2011-12-21 Thread Olivier Palliere
HI Nick, In my app, I have two IKImageBrowserView subclasses (thumbnailsBrowser) that I populate with the pictures I need. It supports scrolling out of the box with the mouse or trackpad when needed. For one of my subclass, I resize the popover because it can only have up to 5 pictures in it,

Re: UITextField and UIGestureRecognizers

2011-11-11 Thread Olivier Palliere
, Olivier Palliere oliv...@sunprotectingfactory.com said: I have a UITextField on a view. I want the user to be able to edit it by single tapping on it, but I want to display a popover to chose from a list when the user does a long press on the UITextfield. To do this, I added

UITextField and UIGestureRecognizers

2011-11-07 Thread Olivier Palliere
Hi Guys, Working on an iPad app, I'm running into an annoying issue you may have seen already. I have a UITextField on a view. I want the user to be able to edit it by single tapping on it, but I want to display a popover to chose from a list when the user does a long press on the

Re: NSPopUpButton, notification when selecting value/object

2011-04-11 Thread Olivier Palliere
Hi Mikael, My best guess would the action of that button in your application. This method is called when you 'click' on the NSButton, ie after the mouse up event. Are you looking specifically for a notification? Many thanks, Oli./. -- Molowa On Apr 11, 2011, at 8:57 PM, Mikael Wämundson

Composing an NSImage to print

2011-01-11 Thread Olivier Palliere
 Hi Guys, I'm working on an app for my personal use that needs to print images I drag on an NSImageView to display a thumbnail. Source images are about 500x500 at 300dpi for most. When I want to print them, I use this snippet of code from Apple's doc:   frontRect =

Re: Localization of System Preferences Pane

2009-11-10 Thread Olivier Palliere
Hi Reinis, First thing that comes to mind is that using English, French, German and so for your localized bundles is an old fashioned way that should not be done anymore. It does not support all languages. You must now use the iso code of the country or language you want to support. For

Re: Alert prompts for BetterAuthorizationService

2009-10-07 Thread Olivier Palliere
Hi Todd, If you already installed your tool once and didn't change the kind of rights that it is using, then it is most likely in the /etc/ authorization file. If you remove your rights from there, re-installing your helper will recreate the rights with the new value. Olivier./.

Re: Issues with BAS sample on 10.4.11

2009-04-15 Thread Olivier Palliere
Hi again, Reading again the sampleapp.m from BAS sample, it could be related to the Technical QA QA1277 (credentials globally cached) Will get back to you if I find anything. Oli./. On 04/15/09, Olivier Palliere oliv...@sunprotectingfactory.com wrote: Hi everyone, I am using the Better

Issues with BAS sample on 10.4.11

2009-04-14 Thread Olivier Palliere
Hi everyone, I am using the Better Authorization Sample code from Apple in one of my projects, and I'm seeing a weird behavior on Tiger. I could only test so far on 10.4.11, so I can't say if it happens from 10.4.6 (minimum for BAS) all the way. After a reboot, if I start either my app

Re: Cleaner daemon managed by Launchd?

2009-03-08 Thread Olivier Palliere
On Mar 8, 2009, at 5:38 AM, Michael Ash wrote: On Sat, Mar 7, 2009 at 8:30 PM, Ken Thomases k...@codeweavers.com wrote: On Mar 7, 2009, at 5:26 PM, Olivier Palliere wrote: I am working on an application that once started, sets up some temporary files and so. I didn't think of it at first

Cleaner daemon managed by Launchd?

2009-03-07 Thread Olivier Palliere
Hi All, I am working on an application that once started, sets up some temporary files and so. I didn't think of it at first, but I had the case where a friend force quitted the application, and I was left with the app not running, and still my temporary things hanging around.

Re: Saving a plist file from a thumbdrive

2009-03-04 Thread Olivier Palliere
On Mar 4, 2009, at 9:49 PM, Benjamin Dobson wrote: On 4 Mar 2009, at 20:17:21, Francois Cournoyer wrote: Hi, We have an installer app that runs from the root folder of a thumbdrive like device, The installer is ran from a subfolder or from subfolder on a hard disk works correctly. The

Re: Code Signing Examples

2009-02-20 Thread Olivier Palliere
Hi Tom, Maybe you can have a look at what Mike Bombich did a few years ago, really great stuff on Authenticated Application, and proven to be VERY useful. https://source.bombich.com/websvn/listing.php?repname=Authenticated_Applicationpath=%2Fsc=1 Oli./. On Feb 20, 2009, at 3:47 PM, Tom