Как я ставил FD
http://www.murmadillo.tut.su/html/flash-soft.html
Как jpg вставлять
http://www.murmadillo.tut.su/html/in...wing-flex.html
Рисуете вектор в Inkscape ембедите svg так-же как и jpg

Код AS3:
package
{
import flash.display.*;
public class DocInsertImage extends Sprite
{
[Embed(source = 'image.svg')]
private var PicSvg:Class;
public function DocInsertImage():void
{
addChild(new PicSvg);
}
}
}