Author Archives: Judah

Announcing VeraType

VeraType is an app I’ve been working on that lets you convert your images into text and your text into images (see screenshots). I’ve just released it a version for Windows and Mac.   It’s mostly for entertainment but it … Continue reading

Posted in Apps, Art, Graphics, Mobile, Technology, Typography | Tagged , , | Leave a comment

Save Login in Flash and Flex

One of the benefits of creating your login in HTML is the browsers ability to save your username and password. This feature is becoming more important with new features like Firefox Sync, Chrome Sync and so on. We can do … Continue reading

Posted in Flash, Flex, HTML | 8 Comments

Using CSS in Flex – Styles Guideline

First, the stylesheet examples. BTW This is a work in progress. fonts.css, /* CSS file for Embedded Fonts */ /**** MyFont ************************************/ @font-face { src: url("/assets/fonts/Font.otf"); fontFamily: MyFont; embedAsCFF: true; fontStyle: normal; } @font-face { src: url("/assets/fonts/Font.otf"); fontFamily: MyFont; embedAsCFF: … Continue reading

Posted in CSS, Flex | Leave a comment

UI Graphic tips in Flex

This example shows how to create text inner shadow, text and display object border, beveled text with border, lines with inner shadow and frames with inner shadow. This example includes a BorderStrokeFilter and TextShadowFilter classes and skinnable container FrameSkin skin. … Continue reading

Posted in Flex, FXG, Graphics, Tips | 1 Comment

Add a border or outline to Text or Bitmap at runtime

Update: I’ve created a new border filter based on the Spark DropShadowFilter. It works better and it’s native. You can read more here. I’ve been trying to figure out how to add an outline to dynamic text and found out … Continue reading

Posted in AIR, Flash, Flex, FXG | 2 Comments