Michal Blasz Grafik komputerowy
Temat: embed fonts - Flash CS5, AS3
Witam wszystkich na grupie. Zrobilem prostego preloader, ktory chodzi w cs3, natomiast w cs5 juz nie... Program wyzuca blad: "Fonts should be embedded for any text that may be edited at runtime, other than text with the "Use Device Fonts" setting. Use the Text > Font Embedding command to embed fonts." Osadzilem font we flashu, jest w bibliotece, i teraz sie zaczyna problem, nalezy jeszcze dodac polecenie do AS, aby zalapal font, znalazlem kilka porad juz na necie, jednak dalej nic - np:http://www.dotstrosity.net/2010/05/10/flash-cs5-font-e...
Czy moglby ktos mi to bardziej wyjasnic... Z gory dzieki za pomoc...
Uzyty font to Verdana bold w "Dynamic Text"
Przedstwaim moj scrypt preloadera:
stop();
addEventListener(Event.ENTER_FRAME, preLoad)
function preLoad(e:Event):void{
var bytestoLoad:Number = loaderInfo.bytesTotal;
var numberLoaded:Number = loaderInfo.bytesLoaded;
if (bytestoLoad == numberLoaded) {
removeEventListener(Event.ENTER_FRAME, preLoad)
gotoAndStop(2);
}else {
preLoader.preLoaderFill.scaleX = numberLoaded/bytestoLoad;
preLoader.bytesPrecent.txt = Math.floor(numberLoaded/bytestoLoad*100) + "%";
}
}Michal Blasz edytował(a) ten post dnia 07.04.11 o godzinie 19:45