Posts Tagged ‘WordPress’

Chugging along on Fless, the WordPress Flash front-end

Friday, March 28th, 2008

I’ve spent a day or two reformatting and tightening up the code I left lingering on the Fless project I started.

Here is the example

It doesn’t look like much but it shows the ease of use of the framework.

Here is the code to create the basics:

public class Main extends MovieClip{

public function Main(){

var blog:Fless = new Fless();

blog.phpURL = “http://yourwebsite/getPost.php”;

blog.addEventListener(PostEvent.UPDATE, postsReady);
blog.getPosts(0, 20);

}

private function postsReady(e:PostEvent):void{
trace(”posts ready”);
trace(e.posts);

var curPost:CurrentPostView = new CurrentPostView(e.posts[0]);
curPost.x = 50;
curPost.y = 50;
curPost.width = (stage.stageWidth / 2) - 50;
curPost.height = stage.stageHeight - 100;
addChild(curPost);
}

}

I’m definitely looking for input from Flash devs that use WordPress to see what kind of features they would like.

fless v 0.00001 alpha

Wednesday, November 21st, 2007

It ain’t much but this is what 0 - 1 hr of PHP knowledge and 4 months of AS3 knowledge will get you in an afternoon.
fless

Flash WordPress front-end

Tuesday, November 13th, 2007

I’m about a week and a half into blogging and I realized that WordPress has a great back-end but the front end is only as good as the template. As a Flash developer I can make front-ends all day that make users want to drool but the back-end is always the tricky part. I’ve started the preliminary coding/research into making a front-end for WP in Flash. But what I don’t have is the needs of the community in the back of my mind. Again, I’ve only been blogging for a week or so. Therefore if any heavy WP users have specific challenges they need met I’d love to hear about them. Or, if you’re a Flash dev and you know what kind of a class kit you’d enjoy working with to build your own blog’s front-end, leave a comment.