Computerforum LOGO - your opinion.

I have to admit that what dragon said is pretty true when you look at it so here is a less flashy version: http://jupiter.walagata.com/w/mectronno1/ComputerForum2.swf
Here is a smoother version of it (higher frame rate and the effect is done a bit differently):
http://jupiter.walagata.com/w/mectronno1/ComputerForum3.swf
It is not on a webpage so it will take up the entire browser but because it is all vector so it can be scaled however you want.

Flash is a bit hard to get started in but once you understand the syntax it becomes easy to make anything provided you know some math.

This was just some hit checking to detect how close the mouse is to the dot than changing the position randomly based on the information.

onClipEvent (load) {
x_pos = this._x;
y_pos = this._y;
}
onClipEvent (enterFrame) {
this._x = x_pos;
this._y = y_pos;
if (x_pos<(_root.mouse._x+10)) {
if (x_pos>(_root.mouse._x-10)) {
if (y_pos<(_root.mouse._y+10)) {
if (y_pos>(_root.mouse._y-10)) {
this._x = x_pos-1+(random(20)/10);
this._y = y_pos-1+(random(20)/10);
}
}
}
}
if (x_pos<(_root.mouse._x+6)) {
if (x_pos>(_root.mouse._x-6)) {
if (y_pos<(_root.mouse._y+6)) {
if (y_pos>(_root.mouse._y-6)) {
this._x = x_pos-2+(random(20)/5);
this._y = y_pos-2+(random(20)/5);
}
}
}
}
if (x_pos<(_root.mouse._x+3)) {
if (x_pos>(_root.mouse._x-3)) {
if (y_pos<(_root.mouse._y+3)) {
if (y_pos>(_root.mouse._y-3)) {
this._x = x_pos-5+(random(20)/2);
this._y = y_pos-5+(random(20)/2);
}
}
}
}
}
Lol it dosent like tabs so the code looks a bit odd but thats ok.
It looks complex but it is pretty easy if you read it.:)

Btw, what are the color values for the gradient. I know mine are a bit too bright. If you could give them to me in hexadecimal it would be nice but RGB is fine too.
 
Last edited:
Here are my entries yet again (this time different):

test1.jpg

test2.jpg

test3.jpg


JAN :D
 
Continued ;)

test4.jpg

cool5.jpg

I have designed a little CF thing instead of the case. I just can't chose the right font for the words Computer Forum.

JAN :D
 
Last edited:
Yea i think that it needs a change to be honest
As a matter of fact, i am going to try to make one right after i get my main computer back
 
Hey thats pretty good
Did you use photoshop for that? Cause thats what i use for all my digital imaging
I still haven't found the time to make one myself, been busy with this essay i'm doing on the history of computers and the difference between science and technology
Woot, i've almost finished
 
Last edited:
this is what i got:

CFbannercopy.gif


it looks cooler with that tiling effect all the way across, but then it wouldn't fit with the rest of the thing across the top. but if you want me to i can create something that goes all the way across
 
i dont think its spooky just a bit too modern for this forum. Perhaps experiment with different type faces and see how it turns out.
 
Back
Top