Hey guys, i just uploaded a new site I did for a friend, you can check it out at
www.rafaelmacho.com. Comments are very well appreciated. (now its time to redo my own site, heh…)
anyway, I noticed two things about it already that need fixing ASAP, and I’m wondering if a few wisemen here could help me out. I’ve already tried searching through the tutorials and the forums as well. here are the two issues:
-
the sites uses two fonts. DIN, and supertext, a pixelfont. In the menu’s themselves, the font is correcttly displayed (except for in the white fields underneath ‘info’), so they must have been embedded by flash, but its not displayed correctly in the lower paragraph or in the project number that fades in after clicking on a menuitem. Does anyone know why this might be happening? The flash help files are no help.
-
I don’t think the images are preloading correctly. When clicking on a menuitem, a function loads a module that fades white, loads the image, then fades out. It’s supposed to stay white until the image loads, then fade out. But it doesn’t preload. I have a script on there like such:
(with the variable _root.targetimage holding the location of the .jpg, and loading into _root.module.container)
onClipevent(load) {
loadMovie(_root.targetimage, _root.module.container);
}
onClipEvent(enterFrame) {
BytesL = _root.targetimage.getBytesLoaded();
BytesT = _root.targetimage.getBytesTotal();
if (BytesL == BytesT) {
_root.mod.gotoAndPlay(12);
} else {
_root.mod.gotoAndPlay(10);
}
}
am i doing something wrong? please help, i will love you forever.
thanks a trillion,
CommanderCool