hi
change font is simple but you must followe some rules:
- install all fonts from fonts pack
- open main full.fla and embed a fonts you like into library:
To embed a font symbol:
1. Select Window > Library to open the current FLA file’s library.
Open the library that you want to add the font symbol to.
2. Select New Font from the library’s pop-up menu (upper-right corner of the Library panel).
3. Type a name for the font symbol in the Name text box of the Font Symbol Properties dialog box.
4. Select a font from the Font menu .
5. Select Bold, Italic, or Alias text if you want to apply a style to the font.
6. Enter the font size to embed (is optional)
7. click export to actionscript and to first frame
8.and then click OK to apply the changes and return to your document.
- recompile main_full.fla
- open css you need to change (for menu is style.css)
and replace:
.menu {
font-family: "AtomicSansICG";
font-size: 19;
color:#E4E4E4;
text-align: center;
}
with:
.menu {
font-family: "yourfontname";
font-size: 19;<- set here font size
color:#E4E4E4;<-change static font color here[/b]
text-align: center;
}
to change rollover font color:
open btn_up.as, find :
TweenMax.to(btn_txt, .5, {tint:0x
ffffff,glowFilter:{color:0xffffff, alpha:1, blurX:8, blurY:8}});
replace text in red with your color
- to change the clicked color find:
TweenMax.to(btn_txt, .5, { tint:0x
11b5c1 } );
two times and replace the color
for submenu you have to open sub_btn.as
after all recompile main_full
cheers
marco