Skip to content


Aptana Studio

I’m switching to aptana studio now for my developing. It may be faster or slower, i donno, but I hope it works better.

Posted in Uncategorized.


Plugin Support

I’m working on the plugin stuff. There are currently ~5 plugins, 2 are accessible through the UI.

To run others just, in the script executor type in Ax.exec(“plugin_name_here”). I will add reflecting as a plugin eventually.

Posted in Ajax Animator.


Sorry for the downtime.

My site was down for over the last 24 hours due to a problem with my webhost that considered my site a ToS violator or something similar.

Well, over this period of time, i’ve perfected the clipboard and fixed frame inserting. Hope you like it!

Posted in Meta.


Updates

I updated to the new OnlyPaths 0.1.03 version. It gets rid of the issues where you rotate and it accidentally goes into another mode.

The onlypaths component is much much more stable.

Posted in Ajax Animator, OnlyPaths.


Clipboard

I got the clipboard stuff started. its buggy now, and wont really work well.

Posted in Ajax Animator.


Path/Polygon Tweening

I added support for path tweening (the underlying component of polygons as well).

Posted in Ajax Animator.


Fixed Path Moving.

I fixed the way you moved paths, it was really simple, I changed

var xinc = left-xshe;
var yinc = top-yshe;

to

var xinc = left-box.x;
var yinc = top-box.y;

So paths can be moved correctly now. I also changed the default grid size to 5px rather than 15px

Posted in Ajax Animator.


Keyboard Shortcuts!

I got some keyboard shortcuts implemented. Most of them are just copied off Adobe’s book, so it shouldn’t be too hard to learn.

Here is the list (you can grab it off the Help->Keyboard Shortcuts and you can see i’m bolding the button labels like in KDE’s Tip of The Day boxes)

F5 Insert Frame
F6 To Keyframe
F7 Empty Frame
Enter Preview/Play
Page Up Go to Previous Frame
Page Down Go to Next frame
Ctrl+C Copy
Ctrl+X Cut
Ctrl+V Paste
Ctrl+Z Undo
Ctrl+Shift+Z Redo

Posted in Ajax Animator.


New Recovery Menu + Reload Animation

I organized some buttons from the tool menu into a new “Recovery” submenu. It is marked by a shield for it’s icon. From it, you can select Reload Canvas, which saves onlypaths, Reload Application, which is what you do when your truly desparate and the app is rendered useless (such as if you type in Ax=null; into the script executor). Now there’s a new button, Reload Animation. It tries to save the state of the animation and reloads it, in the process, restarting the timeline and canvas.

Posted in Ajax Animator.


Fixed Rotation (Again)

Okay, now you can do move the rotated stuff too!

Posted in Ajax Animator.