I want to use FXG created from products like Illustrator or Fireworks within my subclassed Shape objects.
Solution
1. Create FXG file with Illustrator or Fireworks.
2. Save it to your project src/ folder.
3. You can use it like your own classes instantiated from Graphics
When using a ComboBox, the menu for the ComboBox is clipped by the stage. If you need wide menu items, you have little choice by place the ComboBox so that this isn't an issue.
Solution
This example extends a ComboBox to use the NativeMenu class (flash.display.NativeMenu) to display the menu for the ComboBox, eliminating this problem.
I want to launch my extension in the same language the user is running the host application.
Solution
The Creative Suite SDK makes it easy for you to localize your extensions so they can be displayed in the same language the user is running the host application. The SDK allows you to localize both the configuration information and the Flex UI of your extension using resource properties files.
This recipe will teach you the steps required to create custom shape text containers in Fireworks. Traditionally Fireworks allows text to flow into rectangular shapes but you can also flow into, or around, shapes.
Solution
We will draw shapes and use "combine path" to get complex text layouts. The approach is similar to masking but the difference here is that the text will respect the newly created shape, it will not be obstructed by the mask.
When using a ComboBox, the menu for the ComboBox is clipped by the stage. If you need wide menu items, you have little choice by place the ComboBox so that this isn't an issue.
Solution
This example extends a ComboBox to use the NativeMenu class (flash.display.NativeMenu) to display the menu for the ComboBox, eliminating this problem.
I want to use FXG created from products like Illustrator or Fireworks within my subclassed Shape objects.
Solution
1. Create FXG file with Illustrator or Fireworks.
2. Save it to your project src/ folder.
3. You can use it like your own classes instantiated from Graphics