Murten

Murten

This user hasn't shared any profile information

Home page: http://www.murtensaerbi.be

Posts by Murten

The night Katelijne was on fire!

0

This is totally unrelated to flash or even webdesign in general but really crazy nonetheless.

I was driving home from a late meeting and suddenly spotted a huge cloud of black smoke hanging above my hometown. While getting closer and closer I started to see the flames coming out above the houses and by the time I was in the middle of my otherwise so peaceful hometown all I could see was smoke, fire and firemen. I grabbed my camera and got out of the car to take some quick shots of this absolut crazyness.


But First! Trivia! Some facts you all need to know about the auction of Mechelen:

* It is the largest European co-operative society as an auction.
* The Auction, as first Belgian auction, obtained both the ISO 9002 and the HACCP certificate.
* In 2009, the turnover of the Auction of Mechlin amounted to 178 million EUR.
* Almost 40% of all Belgian horticultural products are sold at the Auction of Mechelen.

Anyway, enough facts: see some pics!

katelijneOnFire

katelijneOnFire

katelijneOnFire

katelijneOnFire

katelijneOnFire

Murten updates his blog on poetry day!

1

“A new Murten Saerbi post!” your mail/twitter/rss feed said. But it couldn’t be more wrong: you were deceived by the mighty interweb.

I currently have loads to do (which is good and I will definately show you proof of this bold statement) but I actually wrote down some useful none-Murten-is-great related posts aswell and am in the process of tweeking them for release on the blog. I’m also working on my own website (for real, this time) so I will keep you boys and girls updated on this.

Stay tuned, this post will be updated tomorrow!


UPDATE on 28 january 2010:
Well I promised that I would update this post today and I may be many things but I’m not a liar! As a bonus for me not posting a while and in light of “Flanders and the Netherlands poetry day 2010″: a rhyme for the wonderful people I am currently doing a project for:

logo content cowboys

I’m working for cowboys, that’s really no lie,
they eat cacti for breakfast instead of regular pie!
They create graphics for all,
make sites big and small,
and they’re really nice too: they use “howdy” for “hi”!

Murten does Houwelyckx wegenbouw!

1

A local company that specializes in public works, both industrial and residential projects, driveways and swimming pools was on the lookout for a website that would represent their solid work and healthy growth on the internet.

A slick and easy-to-use navigation together with a modern design is exactly what Houwelyckx wegenbouw needed and goes nicely together with the new offices and the 10.000m² functional workplace.

Houwelyckx website screenshot

You can check the website out over at www.houwelyckx.be/.

Facebook sharer: share stats

0

An addition to my post about the most simple way to incorporate facebook connect in a project (facebook share):

Facebook launched a new share button, one that can keep statistics to the url you provide it! This is great news for people that like to track data regarding their share efforts on facebook. It’s basically a small database that stores information (see below) about a url so you can do all sorts of euhm… stuff with it.

They have a share button for it which looks like this (the number means how many times this item is shared):

facebook share button

They also provide a slightly less subtle button that places the amount something is shared on top of the button. To make it even more easy they made a generator for it: the share widget.

Here’s what you can track:

- How many… Users share the link on Facebook.
- How many… Users “like” the shared story.
- How many… Users comment on the shared story on Facebook.
- How many… Users click back to your site from the story.

There is also a browser call to it, which is an awesome little thingy for flash/flex applications since it returns an xml.

note: Be sure to URL encode the link in your applications!

Some additional information about the facebook share can be found on the facebook developer blog.

Murten does Grande Home!

1

Grande Home is all about light-switching-technology: They sell touchscreen switches with a nice design for a very affordable price.

Since they promote themselves at just about every workshop or renovation, building or decoration event we at Murten Saerbi had to deliver them something good looking to instantly show the people just how cool their switches are. Therefore we went for a 3D demo house that runs on flatscreens pc’s on the event itself.

If there is a mouse present users can click the switches below to turn the lights in the house on or off. If there isn’t a mouse present or a user leaves the screen be for 10 seconds or more the application turns into a presentation and switches the lights on and off. This subtle movement automatically attracts the people to come and take a look at this small but cool application and the switches in general. Don’t take my word for it, check it out for yourself.

Grande Home screenshot

The app also runs online as a testcase, you can check it out here.

Share on facebook without fbconnect: fb sharer

1

The intro:
Let’s say you do not want to incorporate the whole facebook connect as3 lib (check my excellent copy of an excellent post by Steven Van Hissenhoven) in your flash project but do want people to interact with facebook through your website.

For instance, by posting pictures or generated images from within flash. Totally doable and easy, even! Just use facebooks sharer page!


The (javascript) code:
First you need a javascript function that can trigger the sharer. I always go for a popup, but you can ofcourse open the sharer anyway you want. A fairly easy to understand javascript snippet I made that looks like this should be pumped somewhere in your html:

function facebookme(pictid){
	url = "http://www.your-url-here.com/images/" + pictid;
	title = "Add a picture to facebook!";
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(url)+'&t='+encodeURIComponent(title),'sharer','toolbar=0,status=0,width=626,height=436');
}


This function can be addressed out of flash by the External Interface class and expects a pictid, basically the name of the image you want to share on facebook. This can be a generated image or one already on the server. Like I said: the function is pretty simple: it only expects an image and will open a sharer popup that will show you the image and the page title.

Now, let’s assume you want to have a description. A little more tricky, but still quite easy: Facebook has certain meta tags that you can use to populate the sharer. It will automatically pick these things up if they are present in your html page:

<meta name="title" content="Your page title here." />
<meta name="description" content="A description here. Can be quite long even and will appear under the title next to the picture if provided." />
<link rel="image_src" href="thumbnail_image" / >


This works great and could be a nice add-on for your website that on top of that is supereasy to do and requires no facebook connect api knowledge at all. All you need to do now is the flash part which is even more easy!


the (flash) code:

import flash.external.ExternalInterface;
 
ExternalInterface.call("facebookme", picture_path_here);


“facebookme” is the name of our javascript function we placed in the html. “picture_path_here” is a variable that holds something like “2.jpg” (or the full url to the image, but then be sure to change the javascript function!). Also don’t forget to import the ExternalInterface class which can be found in the “external” package.


The outro:
Boom, that’s it. It’s a nice step to loads more posts about facebook and flash even if I say so myself. Now go forth once again, young flash vampires!

Steven Van Hissenhoven, as3 and facebook connect

1

A few weeks ago adobe anounced a new ActionScript 3 Library for the Facebook API (www.adobe.com/go/facebook). Facebook and flash are two ever growing platforms and combined could make even more awesome projects so naturally Murten Saerbi went on a mission to find a client/test project to use these two puppies together.

While doing the project I kept thinking about a quick how-to to further explain how it all works.

Constantly delaying this however, made sure somebody beat me to it. Be sure to check out the magnificent post Adobe Flash & Facebook Connect by Steven Van Hissenhoven. You can download the source code and view an example, I barely would have done it better myself! He even made a header about it which is a solid idea and a quick and easy test to… well… test it out.

Go forth, my flash-meets-facebook connect ninjas!

Murten does the absolut band!

1

Together with the funkiest cowboys in Belgium (or perhaps even the world) Murten Saerbi made it possible for Tim vanhamel to search a band.

If you are a musician and are freaky/deaky enough to play with Tim vanhamel just start recording yourself and apply on the absolut band website. You can apply for drums, guitar and bass but don’t let that stop you from selecting “other” and submitting your very own flute youtube movie.

The Absolut band website

I suggest you check it out over at http://www.theabsolutband.be.

Murten does withaview!

0

Withaview.be is a website that holds a list of the best restaurants in Antwerp which you can order on budget or style. You can also search the most popular ones or just sort alphabetically. Doesn’t sound super-high-technical, you say?

Well, it doesn’t even have to be!

If you don’t fancy the slick and polished design of the website you surely must be a fan of the restaurant pages.

Every restaurant has its own page with an introduction movie and basic information such as contact details, opening hours and place to be. And that’s where I came in: the movie is easy embeddable on your own blog and/or website by using the build-in “add to website” or “share” functions. You can also easily share it with your friends by mail or msn. Therefore it is THE website if you’re looking for a nice place to eat in Antwerp (soon to come: other cities aswell). At the end of each movie related restaurants pop-up so you can easily check out some other introduction movies.

Another thing that’s on its way and pretty fancy – even if I say so myself – is the facebook integration. People will be able to add a restaurant movie to their facebook profile to promote the restaurants they like best!

A nice restaurant to have some breakfast the old-fashioned way is Farine’s Food over at the Vlaamse Kaai 40 in Antwerp, Belgium. Check out the player below or pay the withaview website an online visit over at withaview.be.


http://www.withaview.be

basic image gallery #1: circle showcase

0

The intro:
A while ago I made a post about loading images in a grid and an example of how to use the document class. Basic stuff, I know, but it’s a good base to learn/start from.

What I am planning on doing now – I actually already started – is creating a couple of cool ways to display images: basic image galleries. I’m planning on doing a couple so if you have ways that you want me to try out shout them out in the comments.

All galleries will load images out of an xml, so my source files include a custom xml loader. First one up is a circle gallery. All my examples use Tweener for the code animations, so I suggest you download it.

My first example is a circle image gallery by using sine & cosine – that’s Math – which you can see in the preview. The flash file contains alot of comments to explain my actions but it’s really pretty simple once you get the hang of it.


The quick tips:
Flash does not use degrees, but radians. Luckily there’s a simple formula for this:

radian = angle * Math.PI / 180;



The cosine of an angle will give us an x coordinate and the sine of that same angle will give us the y coordinate:

pic.x = Math.cos(radian);
pic.y = Math.sin(radian);



The example:

Get Adobe Flash player




The settings:
Inside the xml you can add pictures and choose the radius of the circle.


The aftermath:
You can download the source here. This example is intentionally kept basic but is very versatile and easy to expand. With a little bit of code you can add multiple-page functionality, more animation, maybe even load your flickr account pictures in it with a link to the high-res version! Anyway, the possibilities are endless. Go ahead and try some stuff out! Fly my pretties, fly!

Murten's RSS Feed
Go to Top