Archive forApril, 2004

Bild mit Ohren

“Schöne Idee bei The Weekly Standards. Der Screenshot hat Ohren. Präziser ausgedrückt, ihm wurden Reiter angeheftet. Die ermöglichen den Wechsel zwischen unterschiedlichen Ansichten. Hier sind es Screenshot und Datenblatt.

Screenshot

Das ginge sicherlich auch mit Legenden, Perspektiven oder Varianten. Realisiert wird es mit ein wenig Javascript und ‘display : none’.

Screenshot

Adam Howells Website stellt übrigens einmal pro Woche eine Website vor. Wichtigstes Kriterium: Die W3C Standards müssen eingehalten werden.”

[full article at Dr. Web Weblog]

Comments off

Präsentationstipps

“HPS, ein österreichisches Spezialtrainingsinstitut für Präsentationstechnik, stellt auf seiner Website http://www.hps-training.com gut 50 Präsentationstipps für den perfekten Präsentationsauftritt zur Verfügung.

Gegliedert in 12 Rubriken, bietet diese Tipp-Sammlung einen echten Nutzen für Präsentatoren und die, die es noch werden wollen.”

[full article at BildungsBlog]

Comments

Die nützliche Browserleiste

“Chris Pedericks Web Developer Toolbar hat sich zu einem Schmuckstück weiterentwickelt. Das Teil kann inzwischen so viel, dass man hier nicht alles aufzählen kann. Die Screenshots zeigen mehr.

Screenshot

Zu haben ist die Leiste kostenlos für Mozilla und Firefox. Ideal für nicht nur für neugierige Webworker, sondern auch hilfreich bei der eigenen Arbeit. Die verschiedenen Outline-Modi sorgen für Durchblick.

Screenshot

Ein zurückhaltender Button rechts außen zeigt sogar, ob die gerade betrachtete Seite den W3C Standards entspricht.

Screenshot

Sogar an “Themes” hat der Entwickler gedacht. Die Leiste lässt sich dem eigenen Geschmack anpassen. Selbst Entwürfe aus eigener Hand sind machbar.”

[Dr. Web Weblog]

Comments

Übersicht über “minimalistisches Webdesign”

“Obwohl die Seite schon alt ist (immerhin stammt sie aus 2002): http://textbased.com/~minimalist/ ist eine interessante Übersicht.”

[via F - LOG - GE]

Comments off

FLASH: Loading JPEGs Dynamically

By Dave Lally

Okay, for those who have been a little intimidated by some of my lengthier
(read: poignant) tutorials, I’ll throw one at you that’s basic in concept, but one that you can play with if you’re a little more advanced: Loading a JPEG dynamically into Flash. You can keep your SWF file size down by loading your images on the fly rather than imbed them. Plus you can also easily change your image without having to open up Flash at all. First let’s look at the code:

_root.createEmptyMovieClip(”HomerRocks”, 1);

with(HomerRocks){
_x = 35;
_y = 20;
loadMovie(”indian.jpg”);
}

I’ve included the source files again for those who wish to use them. In the first line, we create an empty MovieClip on the root timeline to “hold” our jpeg on the Stage. Within the parenthesis, you name your empty MovieClip with quotes, which, in this case, is HomerRocks. Because he does.

The number following the name assigns the level where you want the empty clip to reside. If you have multiple levels being used in your movie, make sure you don’t assign a level already in use, as only one object can occupy any level at a time. I don’t have anything else going on in this file, so I simply chose level 1.

Next, I’m using the with() statement as a form of shorthand. See, basically, I’m a lazy person, and I don’t want to type:

HomerRocks._x = 35;
HomerRocks._y = 20;
HomerRocks.loadMovie(”indian.jpg”);

Though this does the same thing as the original code, I don’t really want to type “HomerRocks” three times.
Remember, Dave = lazy.

So by using with() and assigning a name of a MovieClip (HomerRocks), any properties or actions I apply in the curly braces will pertain to the named MovieClip. Within the braces of my with() statement, I set the _x and _y positions of my empty MovieClip. When you position an empty MovieClip in this way, remember that you are setting the point for the TOP LEFT corner of your clip. So wherever you assign your clip is where the top left corner of your jpeg will end up. I assigned the _x and _y simply to get it somewhat centered on the stage, and while it is not necessary to do so, I thought I’d show that you can treat your empty MovieClip
like any other MovieClip. You could also assign it a function to move across the stage, or change its rotation or whatever else you can think of.

The last line of the code uses the loadMovie() action to actually call your jpeg from wherever it lies on your server. In quotes, I’ve entered “indian.jpeg.” You would type the URL to your image
you wish to load. That’s all there is to it.

If you want to take it a step further, you could add a preloader component (or make one yourself) and show the progress of your loading jpeg, and have it fade in when it’s done loading. Have fun with it!

[Lockergnome’s Web Developers]

Comments off

FONTS: Relative Font Sizes

“Bojan Mihelac at A List Apart writes:

“Relative font sizes make Web sites more accessible and easier to read -
but they’re not much help unless the person using the site can find a
way to actually change text size. Internet Explorer, the most widely
used browser, buries the option for selecting text size in a second-level menu, which makes text resizing a hassle and is too complicated for some users. On-site buttons that let people increase and decrease text size can make it easier for them to find and use the option. “Unfortunately, most existing methods for using resizing buttons ignore the user’s default settings. Here’s a simple solution for text resizing that respects users’ choices and also gives them an additional option for resizing.”
[Continue] “

[Lockergnome’s Web Developers]

on most systems and browsers, font sizes can be changed using <CTRL> and + / <CTRL> and - or <STRG> and + / <STRG> and -

Comments off

Farbsäume und Farbrauschen aus Digitalfotos entfernen

“Manchmal mache ich Fotos mit einem Sony Camcorder, dessen 1152 x 864 CCD Chip sich zwar durchaus für Schnappschüsse eignet, der bei schwachem Licht aber zu starken Farbsäumen und Farbrauschen neigt.”

[full article at qxm.de]

Comments

FTP

Comments (1)

Wie erstelle ich ein Photo Album mit Movable Type?

“Diese Frage beantwortet Elise Bauer in einem ausführlichen Tutorial in ihrem Blog “Learning Movable Type” wo sie Tipps und Tricks zum Umgang mit MT veröffentlicht. Via dwh!…”

[pixelgraphix]

Comments

Gültiger Hypertext: Webseiten validieren

“Stefan Bucher hat ein Tutorial zum Thema “Gültiger Hypertext: Webseiten validieren” veröffentlicht. Der Artikel richtet sich an fortgeschrittene Website-Macher, die auf einige ihrer neugierigen Fragen schnell aussagekräftige Antworten bekommen möchten…. “

[pixelgraphix]

Comments

· « Previous entries