[Solved] Is it possible to add a flash video on a fogbugz wiki page [closed]

Currently I don’t believe it is possible to “embed” a screencast. You can add it as an attachment, but I don’t think that’s what you’re trying to do. Also, a better place to ask FogBugz related questions is here: http://support.fogcreek.com/?fogbugz (We aren’t able to check SO every day) solved Is it possible to add a … Read more

[Solved] How can I use Livestream player in iOS/Android app? [closed]

Yes, you can do this via HTML for mobile with LiveStream’s Mobile API. For example, in iOS you can do that like this via html: <html> <body> <h1>iPhone Example:</h1> <video width=”300″ height=”225″ src=”http://xmashablex.is.channel.livestream.com/onDemand/ls/mashable/pla_2bc0bbfa-cc39-4f80-b9ef-376b97da94a4/playlist.m3u8″ poster=”http://www.livestream.com/filestore/user-files/chmashable/2010/06/08/d333a646-94aa-4035-a66e-1185bd885622_1.jpg” controls=”” autoplay=”true” tabindex=”0″> </video> </body> </html> And android/blackberry: <html> <body> <h1>Android Example:</h1> <a href=”https://stackoverflow.com/questions/14130473/rtsp://xmashablex.is.channel.livestream.com:1935/onDemand/ls/mashable/pla_2bc0bbfa-cc39-4f80-b9ef-376b97da94a4″ id=”thumbnail”> <img width=”320″ height=”240″ src=”http://www.livestream.com/filestore/user-files/chmashable/2010/06/08/d333a646-94aa-4035-a66e-1185bd885622_1.jpg” alt=”thumbnail” title=”thumbnail”/> … Read more

[Solved] Convert AS3 to FLA for generating SWF

Open the FLA in an appropriate editor (usually Flash Professional, or other IDEs such as Flash Builder, Flex, etc…) Compile (controlenter for Flash Professional) To clarify: .swf is a compiled Flash program (with embedded code, text, and assets). .fla is a project file that holds the references to everything you want to compile. .as file … Read more