IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Showing posts with label Earsffdr. Show all posts
Showing posts with label Earsffdr. Show all posts

Wednesday, January 30, 2013

Re: Cannot Understand Event Earsffdr Cocoa-Applescript

I've tried the applecation bundle thing, and my code looks like this:

 

 

    on myButtonHandler_(sender)

        set theFolder to POSIX path of (the path to current application's NSBundle's mainBundle()'s bundlePath())

        set theFile to theFolder & "/Contents/Resources/Dir.app"

        display dialog theFile

    end myButtonHandler

 

 

But now the error is:

«class ocid» id «data optr00000000E0B3660401000000» doesn’t understand the «event earsffdr» message. (error -1708)

 


In Applescript Editor, the code makes the error : NSBundle doesn’t understand the mainBundle message.

In addition, 'path to current application' doesen't work either, and it displays the original error.


View the original article here

Cannot Understand Event Earsffdr Cocoa-Applescript

Hello Guys,

I'm trying to just write a little X-code 4 app to display it's own directory, using Cocoa-Applescript. I've created a window under MainMenu.xib, and linked it to my code in AppDelegate.applescript. My code looks something like this:

 

on myButtonHandler_(sender)

        set theFolder to POSIX path of (the path to current application)

        set theFile to theFolder & "/Contents/Resources/Dir.app"

        display dialog (the path to me)

        return void

    end myButtonHandler

 

 

The app builds perfectly, but when I click the button, it says:

 

 

[AppDelegate myButtonHandler:]: «script» doesn’t understand the «event earsffdr» message. (error -1708)

 

I have no idea what is happening there, so any help is appreciated!

 

P.S This code also works perfectly in Applescript Editor, but I want it to look better with a window, so this is really weird.


View the original article here