Questions tagged [simbl]

SIMBL short for SIMple Bundle Loader, formerly Smart InputManager Bundle Loader.

SIMBL is an application enhancement (InputManager bundle) loader for Mac OS X developed by Mike Solomon. It helps third-party developers modify and add functionality to applications developed with the Cocoa environment without access to the source code. SIMBL loads code via the InputManager system, which was developed to support foreign input methods. Plugins using SIMBL have advantages over normal InputManager modifications such as targeted code loading into specific applications. Designed for Solomon's PithHelmet, SIMBL is now used by other developers.

38 questions
1
vote
1 answer

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, -(void)doSomething; I got this from class-dumping…
1
vote
1 answer

Subclass Objective-C class without linking with the superclass?

I'm writing a SIMBL plugin for Spotlight, and I'm trying to create a subclass of an internal Spotlight type. While I can get headers directly from the executable using class-dump, I don't have a static library to link against, so compiling a…
1
vote
1 answer

TerminalColours not loading in OS X Terminal

I've installed SIMBL and downloaded TerminalColors, then copied this bundle to Plugins directory to SIMBL/Plugins. Everytime I started the Terminal, the following message was shown: Terminal 2.3 (v309) has not been tested with the…
felipe.zkn
  • 2,012
  • 7
  • 31
  • 63
1
vote
1 answer

LaunchAgent not launched

I'm using SIMBL in one of my product and run into the problem that the LaunchAgent was not launched on some customer systems. It could be that the problem started with Mac OS X 10.8.3. net.culater.SIMBL.Agent.plist:
catlan
  • 25,100
  • 8
  • 67
  • 78
1
vote
1 answer

How to find the full path for finder overlay icon in icon view?

I'm using simbl plugins to add overlay icon in finder like this: finder overlay icon The problem is: I can not find the right way to get the file's full path in override function: FO_drawImage in IKImageBrowserCell, I only get a title. -…
twotrees
  • 11
  • 1
1
vote
0 answers

mach_inject or Simbl for inject code into the Finder

I made a Simbl plugin that inject code into the Finder. And it works well but at every restart I must relaunch the Finder to allow my code to properly inject itself. So i made this LaunchAgent :
kavaliero
  • 389
  • 1
  • 4
  • 22
1
vote
1 answer

Getting full path of list view in Lion

I have the same question that was asked in Getting the full path of a TFENode in Lion. I have little knowledge about Objective-c and so I am not too clear about the answer. I used EasySIMBL to intercept Finder process and then use Les Nie's approach…
sinlam
  • 11
  • 1
1
vote
1 answer

Why SIMBL plugins don't seem to work with TextEdit and Preview in Lion?

I'm developing a SIMBL plugin that will run in any application (I'm on Lion 10.7.4). It works fine with most of them (including Apple apps like Finder, Safari or Terminal), but TextEdit and Preview don't seem to play well. I'm not sure it is…
join
  • 23
  • 4
0
votes
1 answer

SIMBL "[NSCFString objectForKey:]: unrecognized selector sent to isntance"

I am currently tinkering with SIMBL, attempting to make my own plugin. I am currently following the tutorial provided at http://www.culater.net/wiki/moin.cgi/CocoaReverseEngineering and am entirely sure that I have followed it exactly. However, when…
Julio
  • 2,261
  • 4
  • 30
  • 56
0
votes
1 answer

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 bundle file path "library/Application…
Amit Gupta
  • 21
  • 2
0
votes
1 answer

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. (OSStatus error -1708.)" (the AppleEvent was not…
Albert
  • 65,406
  • 61
  • 242
  • 386
0
votes
1 answer

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 I have been using…
djd22
  • 11
  • 3
0
votes
1 answer

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 20:56:06,372 TextEdit: Error loading…
Albert
  • 65,406
  • 61
  • 242
  • 386
0
votes
1 answer

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. Menu Extra is belonging to the…
moyashi
  • 1
  • 1
0
votes
1 answer

SIMBL installation error? No folder Library/Applications Support/SIMBL

Terminal returned "installation successful" but when searching for the folder Library/Applications Support/SIMBL it does not exist. Does it mean it wasn't installed? Will I have to uninstall it or can I try to install it again as it is. No errors…
user7249897