GoboLinux

I stumbeld upon this linux distribution today. What is really speciall about it is how they have set up the filesystem in a very inovative way that even most windows users can understand and use.

In GoboLinux you don’t need a package manager because the filesystem is the package manager: each program resides in its own directory, such as /Programs/Xorg/7.2/ and /Programs/KDE-Libs/3.5.8

I havent tried this myself yet but i plan on trying it out on a VM very soon.

Gobolinux’s FS layout have some advantages, like:
* Easy package management, no need to handle and track multiple files scatered in the system
* Easy coexistence of multiple versions of the same package
* Easy to rollback, just change symlinks
* Easy for third-party application distribution, just make a bundle with all it needs

Free flex book component

It’s hard to find a flipbook script for free but i managed to find one after a bit of searching, this script by Ruben Swieringa is still in alpha but works very good apart from some minor gliches. This is a good alternative if you don’t want to spend alot of money.

http://www.rubenswieringa.com/blog/flex-book-component-alpha

I used this for one of my latest work.

To compile his source you need Flex Builder, you can get a free trial over here.

I am still very new to working with Flex Builder, but with a little javascript,php and actionscript experience i quickly got the hang of the basics.

Javascript for Flash CS3 ActionScript 3.0 Part 1

I wanted to write down some information that i found hard to find when trying to implement simple JavaScript actions to a ActionScript Flash CS3 link.

We will start by making a button that calls a popup from JavaScript within Flash CS3

Start by creating a new flash-file (CTRL+N) and choose ActionScript 3.0

Then create some simple object, maby something like this:

Now select your object and press F8. Rename the object “button” and choose Type: Button.

Now we need to give the new object an “Instance Name”, we will call it “btn”

Now we need to create a new layer for the ActionScript, so press Insert Layer and rename the new layer to “action”.

This was the easy part, now we are beginning the ActionScripting. make sure you have selected the keyframe in your action layer then open up your Actions panel by pressing F9 and insert the following code:

var js:URLRequest=new URLRequest();
js.url=”javascript:window.open(’sitepop.html’,'popup’,'width=550,height=400);newWindow.focus(); void(0);”;
 
btn.addEventListener(MouseEvent.CLICK,openPopUp);
 
function openPopUp(evt:MouseEvent):void
{
navigateToURL(js,’_self’);
}

This will popup sitepop.html in a new window with set height and width.