Archive for July 30th, 2007

Hi,
 snap2objects made an excellent list of 45 free design programs that you can use, to help you with your work with FL CS3 and FLEX 3.
Here are some of them, which i think can improve greatly our work.
- Terragen 0.9.43
- LOOXIS Faceworx 1
- Bryce 5.5
- Blender 2.44  
- 3D Canvas 7.0.1.2
- 3D Box Shot Maker
To Check full [...]

Here it is a embedding font class by Maohao.
package
{
import flash.display.Sprite;
import flash.text.TextField;import flash.text.Font;
import flash.utils.getDefinitionByName;public class SimpleTextPaneTestDrive01 extends Sprite
{
private static var embeddedFont:Font = null;
public function SimpleTextPaneTestDrive01()
{
var embeddedFontClass:Class = getDefinitionByName(”Font1″) as Class;
Font.registerFont(embeddedFontClass);
var embeddedFontsArray:Array = Font.enumerateFonts(false);
embeddedFont = embeddedFontsArray[0];var fmt:TextFormat = new TextFormat();
//fmt.bold = true;
fmt.color =0xffffff;
fmt.size = 16;//Old day fashion: If you embed it in a textfield on stage
// fmt.font [...]

Hi,
New update of the Air iPhone app by merhl. It’s very nice with this new feature.
 
Check and download it here.
You will need the Air runtime to run it. Download it here.
Brgds,
CP

Another source code exampleby Peter, of loading and embedding an XML file in our Flex application at compile-time (as opposed to dynamically loading at run-time, which we’ll save for a future example), and displaying that information in a DataGrid control.
Check it here.
Brgds,
CP

Hi,
Here is a source code released by Peter, at Flex Examples site, where you can learn how to load files using the URL classes.
Brgds,
CP