Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
302 views

SIMBL/Bundle/dylib injection into Dock.app

I'm working on a simple SIMBL bundle to decrease the FullScreen animation time in Lion. It's no big deal to change the animation of the windows, however doing that for the menubar/desktop animation ...
2
votes
1answer
183 views

What are the advantages and disadvantages to SIMBL and mach_star?

For writing hacks and unofficial extensions for Mac OS X apps, there seem to be two choices today: SIMBL and mach_star. I'm starting a project that will require injecting into another process, and I ...
2
votes
1answer
324 views

Safari version number?

I am developing a plugin of safari on MAC.Now I want to know all the version number for safari3,safari4,Because I can see that in some plugin samplecode info.plist: the MinBundleVersion is 5530, and I ...
1
vote
1answer
116 views

how to load injection lib in mac applications at application start?

I have a dynamic library, I intent to inject in running application & newly launched applications. I can inject it in running applications with the help of a process running with root user ...
1
vote
1answer
165 views

Google Chrome: OpenScripting.framework - can't find entry point InjectEventHandler

I try to inject several SIMBL plugins (e.g. Afloat and FScriptAnywhere) into Chrome and other applications. It works fine on all other applications but not on Chrome. There I get this output on ...
1
vote
1answer
71 views

Question about SIMBL implementation

In the source code of SIMBL Agent, there're several codes which send Apple events to the target application. It's like: [app setSendMode:kAEWaitReply | kAENeverInteract | kAEDontRecord]; id ...
1
vote
1answer
304 views

SIMBL with Method Swizzling

I have some great troubles overriding some functions in an external App that I use SIMBL to hook in to. In this app, there is a class - let's call it "AppClass". In this class there is a function, ...
1
vote
2answers
1k views

Mac OS X Window Server vs. X11: the insane task

Dedicated to all who likes low-level Window Server (CoreGraphicsPrivate.h, etc), X11 on Mac, SIMBL and other crazy stuff :) There's a simple X11-emulated application on Mac (like xterm, xeyes and so ...
1
vote
1answer
259 views

make Installer metapackage to require SIMBL?

Using PackageMaker, how do I make a .(m)pkg that will require that SIMBL is installed - if it's installed, the installation should simply proceed, otherwise, SIMBL should be installed before ...
1
vote
4answers
2k views

Safari plug in for iPhone

i want to ask if you can use SIMBL and develop a plug-in for iPhone Safari.
0
votes
0answers
32 views

how to make SIMBL base plugin Package file?

I have created a SIMBL based plugin which runs on safari but i am not able to make package file of my plugin through package maker, Following step i am doing. 1: in Package make set the my plugin ...
0
votes
0answers
78 views

SIMBL plugin with a Sandboxed app

I have created a SIMBL plugin for TextEdit in Lion however I am unable to send an NSDistributedNotification with a userInfo object as the Sandbox stops the Notification from being posted. I get the ...
0
votes
1answer
53 views

AppleEvent: how to debug `eventDidFail`?

I am getting this error from SIMBL in the console: 05.09.11 17:00:09,165 SIMBL Agent: eventDidFail:'tvea' error:Error Domain=NSOSStatusErrorDomain Code=-1708 "The operation couldn’t be completed. ...
0
votes
1answer
71 views

Cannot send NSDistributedNotification's from SIMBL plugin

I am developing an SIMBL plugin for TextEdit, the plugin adds an additional menu. The menu has a number of items that when selected (among other things) send messages to my own application. To do this ...
0
votes
1answer
67 views

SIMBL plugin fails to load framework

On console, I am getting these errors: 27.08.11 20:56:06,371 sandboxd: ([83008]) TextEdit(83008) deny file-read-data /Users/az/Library/Frameworks/FScript.framework/Versions/A/FScript 27.08.11 ...
0
votes
0answers
42 views

Access javascript context of safari extension from obj-c

I am writing a SIMBL plugin (obj-c app) that injects itself into Safari and has access to all classes/objects used by Safari. I am trying to access the javascript context my safari extension global ...
0
votes
0answers
27 views

Writing a SIMBL hack for a save dialog

I've managed to make Fireworks accept .fwx files (still saved with the PNGf type), but now I'd like to add .fwx to the Fireworks save dialog. This seems like a job for SIMBL, but I'm unsure as to how ...
0
votes
2answers
490 views

How do I implement method swizzling?

I am trying to modify behaviour of a program (i dont have it's source) using SIMBL. I used class dump and found out that I need to overide an instance method This method is in the class called ...
0
votes
1answer
131 views

How to load SIMBL plug-in to the SystemUIServer

I have experience in developing two SIMBL plug-in. Those are working properly on the Mac OS X 10.6.6 at this moment. I'm planning to make a new SIMBL plug-in that modifies behavior of Menu Extra. ...
0
votes
2answers
79 views

Can a SIMBL plug-in be proprietary and closed source?

I'm not sure, because SIMBL is GPL.
0
votes
1answer
31 views

Singletons in Cocoa Plugins

How would I get a hold of a singleton in the main application from a SIMBL plugin? When I try to call something like [ProcessControl sharedInstance], I get an error that ProcessControl is undefined ...
0
votes
1answer
38 views

Why instance of class WebBaseNetscapePluginView not respond selector in safari4?

I am developing a plug-in with Safari. I followed the adblocker sourcecode to swizzle the method: ...
0
votes
1answer
492 views

How to develop a safari plugin(input managers) use SIMBL?

Now I want to develop a safari plugin use SIMBL , but I searched a lot of webpage not found some sourcecode or simple sample , someone can give me or point to a location ? Thank you very much!!!