Tagged Questions
F-Script is a scripting programming language for Mac OS X.
2
votes
2answers
204 views
Can F-Script be used to introspect iOS applications?
Can F-Script be used to inspect iOS applications that are running on the simulator or iPhone/iPad hardware? If so, how do I attach the object browser to my custom objects?
1
vote
1answer
101 views
Is F-Script compatible with Smalltalk?
F-Script syntax look like Smalltalk. Is it compatible with any of Smalltalk standard?
1
vote
1answer
54 views
How to link an application classes to F-Script
I would like to create a command line application that accepts a script F-Script that is executed, and which has access to some classes exposed by the application.
How can I do that?
PS: I am ...
1
vote
2answers
131 views
F-Script: Get object reference from object-browser to script-console
I am trying to figure out how to get an object I have found via the object-browser of F-Script to the script console. For example, I found an instance of NSString at adress 0x234243242 as the object ...
0
votes
1answer
91 views
How to round number to 2 decimals
on my way to help a fellow I wrote a simple F-Script without even knowing the existing of such language
http://forums.marketcircle.com/eve/forums/a/tpc/f/2931083693/m/883106236
but I tried to ...
0
votes
1answer
89 views
F-Script categories
Is there a way to implement the equivalent of the following in F-Script? I can't find any reference to it in the documentation.
@implementation SomeClass (SomeCategory)
- (void)doSomething {
// ...