Skip to Content Skip to Search Go to Top Navigation Go to Side Menu


Archive for October, 2007


Intense Debate has launched!


Tuesday, October 30, 2007

I’m glad to report that Intense Debate has ended it’s Closed Beta period and is now entering an Open Beta! These are very exciting times, and it’s amazing to see how well our service performs with this sudden hiatus in the traffic. The Chameleon theme is also performing fairly well, even due to my complete rewrite. I’ve only had to fix one or two small things.

So if you have a blog, go check out the newest, and brightest shining star on the Internet for today: Intense Debate Comments. Installing it on Blogger and typepad with a widget is a breeze, a Wordpress install is really easy. www.intensedebate.com

If you have any complaints/questions/suggestions about the interface or the commenting experience altogether, please drop me a few lines. I’m always working on making the Intense Debate Comments your dream commenting system come true.

Desk Stretching, something we all should do


Monday, October 22, 2007

I’m sitting alot in front of the screen, and I know I should exercise or at least take breaks every hour or so to stretch some and get the blood flowing. However, and I don’t think I’m alone here, I never seem to get around to.

Now, however I’m trying a new thing. I’m setting a timer for 60 minutes, and when it rings I’ll follow this stretching plan for a few minutes, then start the clock again. I also hope to drink a glass of water during this break. It all sounds very good, but I’m very skeptical myself… At least I’ll try to get this going.

border: 1px solid; magic!


Wednesday, October 17, 2007

I don’t know if this is common knowledge among webdesigners, but this was all new for me. If you don’t select a color for a border, just say “border: 1px solid;” (for example) it will inherit the color of the current object. I’ve checked this in Firefox 2 and Opera 9, and it really works here.

Very interesting, at least I think so..

Flash Movie Controls - Play/Pause Button


Friday, October 5, 2007

I’m not very experienced in Flash. I can do basic movies with tweens, some playback buttons and maybe one or two animations, but that’s pretty much it. For a recent project however, I had to do a pause button.

Now this might seem like an easy task, but it isnt. A pause button must both pause and play the video. I looked around the web for some easy solutions, but couldn’t come up with anything useful (although I’m sure there are guides for it out there, I just didn’t look hard enough..). This is what I came up with:

TO CREATE A PLAY/PAUSE BUTTON
1. Create a movieclip called “playpause”. Put this movieclip anywhere in your main movie.
2. Create a button in this movieclips first frame, call this button “pause”.
3. Now go to frame two, create a keyframe and another button, call this one “play”.
4. Create another layer, call this layer “script”. Put the marker in the first frame and open Frame Actions. Type in “stop();”. Create another keyframe, and do the same thing again.
5. The buttons need some actionscripting too to be able to work. They need to both make the other button display and to play and pause our movie, which is the main target. I found a way to do this really easily. Click the button “pause”, and open Button Actions. Then type in:

on (release) {
gotoAndStop(2);
_parent.stop();
}

The first line displays the play button, the other one pauses the main movie. Select the other button, “play”, and type in:

on (release) {
gotoAndStop(1);
_parent.play();
}

Save the document, press Command+Enter (PC: CTRL+Enter) and make sure it works.