Tag Archives: JSFL

Link dump: 18-03-2008

Just a linkdump, because my wrist is still broken: We needed a external font library for a project that we did. Here are two links to useful information: (Runtime font loading with AS3 / Flash CS3 (not Flex!)) http://blog.sitedaniel.com/2008/10/fontcontrol-class-external-font-library/ http://www.betriebsraum.de/blog/2007/06/22/runtime-font-loading-with-as3-flash-cs3-not-flex/ There is just one thing that could drive you mad: If you additionally place a [...]

Custmm Grumm – AI 2 Array

Another experiment towards Custmm Grumm. This time my task was to export/import an Illustrator file to Flash… Yeah, yeah; I know: you say “import to stage” … correct! But what I need is the shape converted to code (coordinates in the x-direction and y-direction).. Ha, you stopped grinning! Well the first part is correct. You [...]

Object 2 Layer jsfl

For a project of mine: Custmm Grumm I needed to change a shape into an array (explained in this post shape 2 array jsfl ). To make this happen I imported the .AI file (Illustrator) to the stage. But it will place everything on one layer, every shape it’s own ‘group’ and the script I [...]

Shape 2 Array jsfl

For a project of mine: Custmm Grumm I needed to change a shape into an array, you could say that I needed to change a Illustrator/vector file into code. As far as I know there is no other method then the one I created here with jsfl. To make this happen I imported the .AI [...]

XML Reader Flash panel – Todo and Requests

A while ago, I created XML Reader Flash panel. I’ve been using it (and colleagues) for some time now, and I found some points of improvement: Doesn’t work correctly on a mac (scrollbar disappears) External XML (fill in url of XML) Remove \r and \n in node Errors about wrong formed XML Different methods of [...]

Readable trace JSFL

Oke I’m getting into it, after comment trace JSFL and uncomment trace JSFL I created another trace related JSFL command. It’s a extension on a trace that really says nothing; you are testing the code you just written trace (thisVar); but you really want to: trace (‘thisVar: ‘ + thisVar); And now you can: change [...]

Uncomment trace JSFL

Oke I did the damage, I will fix it…. In my previous post about comment trace JSFL I made it possible to comment all traces in a actionscript frame. Well now I’ve made a JSFL command to make it possible to undo that. Example: // trace (“something”); becomes trace (“something”); How to install: Save [mck] [...]

Comment trace JSFL

Do you recognize the following situation? You have to change a small thing in a FLA that colleague / freelancer made. So you open the FLA export it, and the output window get filled with numbers, variables, booleans and other trace comments… Of course you know that a trace should be removed after it did [...]

About extending Flash

I recently started to get interested in JavaScript Flash (JSFL) and I’m really impressed with its ‘power’. As the title says: it extents the Adobe Flash authoring environment: you can add commands, new tools / panels, behaviour, actions, templates, and much more. You can make Flash do stuff it can’t do out of the box. [...]