Posts Tagged ‘SWF’

Flash Decompiler VS. Flash Encryption: How To Protect Your Flash Source Code & Resource

encryption-shield-57903 Because SWF is an open format, if someone wants to peek at your scripting and extract your resources, they can easily do so. It’s very interesting that on the header and sidebar of Ntt.cc, you can find two our sponsor banners: ActionScript Obfuscator and Flash Decompiler, the first one which can encrypt your swf files, stop Flash decompiler and protect your ActionScript. The second one which can decompile the flash file: convert SWF to FLA.

(more…)

Tips: How To Get The SWF Path In ActionScript 3

presentblue-icon Sometimes we need to get the swf path in our flex/flash project, it can be done with _root._url in actionscript 2, but _root not work in actionscript 3. How to get the swf path in as 3? The following is 2 ways on how to get it.

Hope it will be useful for you.

(more…)

RSSReader–a simple example of Syndication Library

Newspaper-Feed-add-256x256 Problem Summary: Once I want to display a series article of Flex performance from InsideRIA(www.insideria.com) in my blog. I recognized that the amount of the articles is increasing. I should keep the links dynamically. However, I am not the provider of the blog system, so I cannot modify the codes to meet my requirement. Luckily, I can embed SWF in my blog articles. So, I just need to develop a simple RSS reader in SWF format.

Solution Summary: I do not want to parse the RSS myself. It’s a hard work to deal with. I tried to find some open source library of RSS parsing in programmed by action script 3.0. Googled for many, I got the syndication library(http://code.google.com/p/as3syndicationlib/) at last.

Use the syndication library to parse Atom and all versions of RSS easily. This library hides the differences between the formats so you can parse any type of feed without having to know what kind of feed it is.

The detailed information will be found in the project home(http://code.google.com/p/as3syndicationlib/). Then, I started to develop my own RSS reader

Search-256x256 Demo | DownloadDownload Full Project

(more…)