Flex :: Loading Embedded Fonts From Modules?
Nov 28, 2009
As some of these languages have very big font sizes (e.g. Chinese), I do not want to load all these fonts into the app. at once but was thinking to put them into different modules and then load only the specific module (depending on which language is chosen in the main app). For this I moved the style part from the main app:
<mx:Style>
@font-face
{
font-family:DedicatedFont;
[Code]....
into the different modules. Above one is e.g. for the Chinese font (cma.ttf).
The modules are created and I can also use the fontstyle (DedicatedFont) in the module itself, but I can not access it from my main application.
View 1 Replies
Similar Posts:
Dec 17, 2010
I have an Image component with a source set to an embedded image. When I load this module into a shell module, the image doesn't show up. Why? I have to put an instance of that image into the shell module's codebase just to make it work. That shouldn't be, right?
View 1 Replies
Nov 29, 2010
We have a large flash site which is translated into 11 languages. We have a font loading system whereby all the characters required to display the site in each language are embedded in external swfs (so 11 swfs).recent update to the site requires us to use the Text Layout Framework (TLF) for one area of text display, which of course only supports fonts embedded in the new CFF format. I've attempted to embed a second instance of the font using the tag embedAsCFF="true", and after loading in the font SWF I can see this font is correctly registered as it shows up in the array returned by Font.enumerateFonts.The TextFlow instance I am using has the following properties set:
textFlow.fontLookup = FontLookup.EMBEDDED_CFF;
textFlow.renderingMode = RenderingMode.CFF;
textFlow.fontFamily = "HeadingFontCFF";
[code]....
View 2 Replies
Jan 20, 2011
I'm working with modules and each of it will be compiled (deployed) in a common folder in a webproject. In the main class I defined an array of module paths which I need for loading all these defined modules.
How can I make that more dynamically, for instance, I want to say, load all modules in a certain folder an its subfolders without to know each module by name.
View 1 Replies
Jan 9, 2012
I am going to write a Flex mobile application which can benefit from loadable modules, but encountered "Modules are not supported for AIR mobile applications." statement here.
Is there any workaround to load swf modules (containing UI with some code) in the mobile application developed for iPhone/Android/BlackBerry?
View 1 Replies
Mar 13, 2011
I'm trying to embed a font using css on in my flex project via CSS:
@font-face {
src: url("/slimCurves.ttf");
fontFamily: SlimCurves;
[Code]....
When I try to apply the style to a text input field the input field looses its existing style, but doesn't seem to inherit the custom one.
<s:TextInput width="100%" fontSize="33" text="test" styleName="slimCurves"/>
If I apply the same style to a label, the label shows the text in the custom font as would be expected.
View 2 Replies
Jun 30, 2011
I need to use multiple fonts in my Flex 4 application, so I compile them into swf and load at runtime. I have single .ttf file for each font. When I dont load font's swf file at runtime, flex uses copy of this font installed on my system, and it works fine - I can switch between regular, bold and italic faces of the font correctly.However,when I load fonts from swfs, setting their style to bold or italic makes no effect. I tried different ways of compiling swfs (css using mxmlc compiler, fontswf utility,.as files with [embed] tags), but nothing worked. When compiling using css it sometimes throw errors that font face is not supported, and it seems that some fonts are available only in bold-italic style only or bold style only.I use cff fonts, load them using etcs.ru.utils.FontLoader utility. Fonts are loaded correctly, I check this with Font.enumerate fonts.So is there any way to embed these .ttf files with all styles available?
View 1 Replies
Jul 11, 2010
I save my (embedded) fonts in an external file (fonts.swf) that gets loaded at runtime. Pretty standard. I also use a bunch of UI artwork generated in the Flash IDE. Some of this artwork contains static textfields (thus, not proper TextFields that can change. Just frozen glyphs). Here's the problem: if I use the same font in any static textfield and then embed that same font into my collection of runtime fonts, the runtime font will refuse to render. It's the same effect you get if you set a textfield with embeddedFonts=true to use a font that isn't embedded. If I change the static textfields to use a different font, the runtime fonts work just fine.
[Code]...
View 2 Replies
Dec 22, 2010
Edited Short Version:The Adobe Flash docs list a property embedFonts on TextAreas:
A Boolean value that indicates whether the font specified in fontFamily is an embedded font. This style must be set to true if fontFamily refers to an embedded font. Otherwise, the embedded font is not used. If this style is set to true and fontFamily does not refer to an embedded font, no text is displayed. The default value is false. Regarding the "If this style is set to true and fontFamily does not refer to an embedded font, no text is displayed" statement: How can I detect in ActionScript when this scenario happens?
TL;DR Original Version: I have a flash application which loads external .swf files containing embedded fonts, so that these fonts can be used within the main application. We're accomplishing this by using the following ActionScript code on anything which uses custom fonts:
[Code]...
View 1 Replies
Feb 6, 2012
I can't seem to get TextArea to render any embedded fonts in project. I've searched online and have found a couple of instances of this issue but no solutions.
I have a few fonts embedded with my app. Spark Label & the mx:TextArea (switching embedAsCFF to 'false') will display them correctly so I know they're embedded OK. I have the fontFamily value in a binding but I even tried just instantiating a new TextArea then assigning one the the embedded fonts via the fontFamily style and have had no luck.
/* In my CSS file */
@font-face {
src:url("assets/fonts/UbuntuMono/UbuntuMono-Regular.ttf");
fontFamily: UbuntuMono;
[Code].....
View 1 Replies
Feb 29, 2012
My app does the following:enumerate fonts installed on the clients machine, and populate a dropdown list with them present a s:TextArea with special characters (like äöü)update the TextArea's font family to the one selected in the dropdown After it updates, there seems to be three possible results: the correct glyph, a blank space, or a fallback glyph in a device font (seems to be _serif, though the CSS style is _typewriter). My goal is to programmatically detect whether a device font supports all the glyphs in a chosen user font.
I have tried getBounds on various children (to detect 0 width, etc.), getting info about atoms, and comparing fontFamily for a correct glyph against fontFamily for a blank or fallback glyph. For formatting changes that dispatch a UpdateCompleteEvent or CompositionCompleteEvent, i am always doing my checks after it completes.
View 1 Replies
Jun 5, 2010
I cannot get embed fonts working Everywhere I look it says to do it like I am doing it below, but it doesn't work. I am using FlashDevlop with Flex compiler. There are no error messages. I have tried taking everything out of the Embed directive and adding it in one by one, but no affect.
When I use the system font, it works.
When I use the embedded fonts without setting embedFonts to true, I get TimesRoman.
When I use embedded font with embedFonts to true, I get nothing.
ActionScript Code:
package fontManager{
import flash.text.TextField;
import flash.text.TextFormat;
import flash.display.Sprite;
import flash.events.Event;
public class Main extends Sprite
[Code] .....
View 5 Replies
Mar 22, 2010
I am observing a problem with how an embedded font is applied to certain Flex components, namely mx:Label and mx:DataGrid. I have a CSS that declares three variations on an embedded font as follows:
@font-face
{
src:url("buttons.swf");
[Code].....
(I've snipped some stuff from both style rules, so if you think there's something that may be causing a conflict I can certainly post the entire definition. It's mostly color, line and padding stuff for the DataGrid.)
The problem that is for both Label and cells in the DataGrid the text is being rendered as sort of a times new roman font. The headers in the DataGrid are fine, just the text in the cells is wonky. All other components use the correct font as defined in the CSS/SWF.
View 1 Replies
Oct 4, 2011
I'm testing some font embedding in Flex 4. Using the tutorial below (modified a bit), I'm loading in fonts via compiling CSS into SWFs. [URL] When I apply those styles to my Flex components all is well, however, I need to add an AS3 component to my Flex app. This component has some Flash text fields in it. The only way I know to embed fonts in AS3 is completely different and I believe requires another load. What I want to know is if there is any way that the text fields in my AS3 component can use the same styles and embedded fonts that the Flex components are using.
View 1 Replies
Oct 30, 2010
I am working on a feature for an application that requires Flex 4 functionality. Due to some migration issues of the application from Flex 3.5 to 4.0, I have decided to implement this feature as a module that is compiled with Flex 4.0. The theory is that the application would remain compiled in Flex 3.5 and load the module when it needs it.[code]
View 1 Replies
Jul 21, 2010
Right I can upload the font to the server.But the only examples I can find - require registerFont(Verdana);Which means I'll need to create a new SWF with the new font embedded and reupload to the server. I need an automated way of doing this or perhaps something different altogether?
View 2 Replies
Jun 21, 2009
I can't figure out why my fonts won't be embeded.
[CODE]...
View 1 Replies
Aug 4, 2009
I am dynamically loading rss description into it and would like to have first character and characters unsupported by other font be in that first font. i limited the range of char of that second font so all unsupported chars and first char should be in that first font.
View 2 Replies
Nov 20, 2011
I'm trying to embed a font in FlashDevelop. My folder structure is My embed metadata is
[Embed(source = 'resources/04B08.TTF', fontName = '04b08')] public var _04b08:Class;
My code is
public var titleFormat:TextFormat;
public var titleText:TextField;
private function init(e:Event = null):void
[code]....
If I use this, I get
But I uncomment the titleText.embedFonts = true; line, I get This is the method that all of the guides I can find use. What should I do to get it to work?
View 1 Replies
Dec 28, 2007
When you use funky/weird fonts in a fla are they embedded automatically like a PDF file? So if the viewer doesn't have that font they can still see it?
View 3 Replies
Jul 15, 2009
I've made this style sheet:
HTML Code:
.plat {
font-family: "Trebuchet MS";
font-size: 13px;
}
.boldgold {
[Code]...
View 2 Replies
Jun 1, 2009
Using Flash CS3, I have created a class that when called will
1.) Create a Dynamic text field,
2.) Import external HTML into it,
3.) Apply an external CSS style sheet to it, and
4.) Place it on the stage
So far it works great, but now I'd like to be able to specify an embedded font from the css file. I followed the basic procedure for making a library symbol of the font, setting its linkage to Export for Actionscript on the first frame, and gave it a unique name "myFont"
In my style sheet, I tried using:
font-family: "myFont";
or
font-family: myFont;
but neither way seems to work.
I also found numerous tutorials on how to make it work in AS2, but nothing in AS3. When I specify embedFonts=true in the before-mentioned class, it will not display any of the text, though it does draw the box and any image contents from the html file.
View 7 Replies
Jun 12, 2009
If I use a wierd or obscure font in my flash project, then I dont have to worry about the user having the same font installed, because it gets embedded in the SWF, correct? Or does it depend on something? If so, what?
Also, what about fonts getting embedded in the FLA file? If I use a wierd or obscure font in a flash project I'm working on, and then I pass off the FLA to a friend to finish the project, does he need the font installed? Or is it in the FLA file already? how this stuff worked but I sent the FLA to a friend and now hes asking for the font. I was sure it would be embedded.what is a good way to test that the fonts get embedded in the SWF? Do I have to uninstall the font inquestion and view the SWF and see if its still using the font?
View 3 Replies
Dec 2, 2009
My file seems to be too heavy, so I checked the option to compile with the file size information code]...
View 5 Replies
Oct 20, 2010
- Created a seperate swf with 2 fonts in the library, linkage "_Arial" and "_ArialBold". "_ArialBold" has the style set to "bold". On the first frame I have:
Font.registerFont(_Arial);
Font.registerFont(_ArialBold);
When I load the swf in my main application and itterate through the list of available fonts the 2 new fonts are returned, but fontName outputs "Arial" in both cases not the linkage name.
textformat.font = "Arial";
This works fine, but I can't figure out how to assign the embedded font "_ArialBold" to a textfield. How is this done?
View 2 Replies
Jun 30, 2010
How to embedded the fonts to textarea
View 1 Replies
Nov 4, 2010
I have a shared fonts.swf file containing a variety of fonts that my main swf uses. I have a movieclip within the fonts.swf file which is exported for runtime sharing. In my main swf i have the fonts.swf imported for runtime via a movieclip. This all works fine and allows me to use the fonts within the fonts.swf file in my main swf. All of my text fields are dynamic and created/updated via AS. I use the following method to style my text boxes(additional code removed for succinctness, this is just so you can see the overall methodology)[code]...
View 3 Replies
Mar 28, 2011
Create new AS3 fla fileIn publish settings, click 'Generate Size report'Put some text on the stage - Classic text, static (Though it doesn't seem to matter)Make sure the font is '_sans' (There is no 'Use device fonts' option for this font choice)Publish the fileNote that _sans is now embedded in the SWF, occupying bytes in the size report. Try the same in CS3, and there is nothing embedded, as you would expect. Unfortunately I can't get my fla loaded into CS3 because CS5 will only allow me to export as CS4.
Similarly, change the font to something specific, like Verdana, and set it to use device fonts and it still embeds font data (We're talking about 3 or 4k) but doesn't list any glyphs. Occasionally though, by screwing around, it doesn't embed anything. Then nudge some text in some magical way and it's back to embedding redundant data.
View 2 Replies
Jun 19, 2011
embedded fonts aren't working for me in TextFlow. The non-embedded/pre-included fonts are working fine but if i try to add my own font, it doesn't work.i have the font set to DF4 and i have it exported for ActionScript with a class name.the font i'm using specificaly is Kozuka Gothic Pro L, which is OpenType.
View 4 Replies
Apr 11, 2012
I have this line in my Main.as:
[Embed(source = "assets/SKA_75_marul_CE_extended.ttf",
fontName = "SKA_75_marul_CE_extended",
fontWeight = "bold",
advancedAntiAliasing = "true",
mimeType = "application/x-font")]
public static var SKA_75_marul_CE_extended:String;
And this exists in the constructor of an extended Sprite called Pointer.as:
var format:TextFormat = new TextFormat();
format.font = "SKA_75_marul_CE_extended";
format.color = 0xFFCCCC;
format.size = 20;
[code]....
View 1 Replies