Re: AppleScript-ObjC Bridge Question

2015-10-30 Thread Dave
Hi, This is a normal Objective-C type project but calls to AppleScript files as per http://appscript.sourceforge.net/asoc.html here is an example: LTWAppleScriptHandlerOutlook.h file: @interface LTWAppleScriptHandlerOutlook : NSObject { } -(NSString*) testOutlook:(NSString*) theNameString; -(

Re: AppleScript-ObjC Bridge Question

2015-10-30 Thread Shane Stanley
On 30 Oct 2015, at 8:46 PM, Dave wrote: > > I can’t seem to find any other documentation on this and was wondering if > init would get called if I defined it, when I execute the following: Why wouldn't it? -- Shane Stanley ___ Cocoa-dev mailing

Introduction animations

2015-10-30 Thread Eric E. Dolecki
I'm not sure what to call this - but many apps have a welcome/introduction where you can swipe and the animations are based on the position of the swipe. Yahoo! weather does this as you scroll down through the content for a location. Does anyone have any sample code for rolling one of these? Even

Re: AppleScript-ObjC Bridge Question

2015-10-30 Thread Dave
Well, obviously it does get called, but how do you actually define in is AppleScript? I mean what is the equivalent of: -(id) init { self = [super init]; if (self == nil) return nil; [self doSomething]; return self; } In AppleScript? All the Best Dave > On 30 Oct 2015, at 09:46, Dav

Re: AppleScript-ObjC Bridge Question

2015-10-30 Thread Shane Stanley
On 31 Oct 2015, at 2:40 AM, Dave wrote: > > Well, obviously it does get called, but how do you actually define in is > AppleScript? I mean what is the equivalent of: I posted it several messages back: on init() continue init() -- Add you