In a previous article in this series I told you about a reported exploit for Adobe Flash Player. It seems that the security bulletin that this exploit was based upon was released before the version 9.0.124.0 of the Player. Reading the latest security bulletin Adobe informs us that the exploit is not applicable to this [...]
Using events is fun in MXML components is fun and easily you can specify events using Event meta tag inside the component like this:
<mx:Metadata>
[Event(name="myevent", type="com.MyEvent")]
</mx:Metadata>
The following lines defines the myevent attribute of the component like this:
<com:FramedImage x="10" y="10" myevent="handleMyEvent(event)" … />
FramedImage component is a custom component which displays a framed image.
For [...]
In this article I’ll present a new component I built: ImageRail. This MXML component will display a series of thumbnails having the possibility to scroll them horizontally.
Parameters:
paths: an array containing URLs to images
images: an array containing image objects
imagesToShow: an unsigned integer that specifies the number of images displayed at a time - deafult is [...]
A very recent news on Zdnet announced that there is an very serious exploit that Adobe Flash Players 9.0.115.0 and 9.0.124.0 are vulnerable; other versions may also be affected.
The link to the whole story is here.
As we promised we are back with a tutorial on how to build Flex applications for Astro flash player. This will be a step by step tutorial which is intended to help you install the last Flex SDK from daily builds. So let’s start…
1) Get the Flex SDK Daily build.
2) Create a new folder: “3.0.1.1739“.
3) [...]
Today I installed Astro! What I did to be able to still develop and debug flash player 9 applications? I installed the Flash Player 10 just for Firefox and for debug I’m using IE. You can inverse it and install the ActiveX for IE and keep Firefox with the flash player 9.
The links to [...]
In the previous articles in this series I explained how to create a horizontally and vertically resizable canvas. In this third article we will add the possibility to resize in both direction by dragging the right bottom corner.
What we will do:
add the new UI control (the right bottom button)
create the necessary events for it
create CSS [...]
Adobe Flash Player 10 (codename “Astro”) can be downloaded from Adobe site following this link: http://labs.adobe.com/technologies/flashplayer10/
New features:
Hardware acceleration - flash player will use the GPU for some visual processing tasks
Advanced Text Layout - a new engine for text layout (as you may know the old TextField has big problems when rendering text, htmlText and images) [...]
Although is just one receipt I’m glad that my post was selected to be part of Flex 3 Cookbook. The original post can be found on Flex Cookbook Beta site by the name “Using More Themes in the same Application“.
The book release is in May but till now (13th of May 2008) it is still [...]
In this article I’ll show the same application I presented at FlexCamp Bucharest Romania 2008 - the video from the conference is available here and although it is in Romanian it might be useful. In the presentation I’m showing the power of Flex: doing complex applications with a few lines of codding.
With this article [...]
During last week I had to do a small application for AIR. That was until friday when I had to release it and found out that the app had to work also in normal browser. Since almost all the code was independent of the type of app (AIR/Flex) my task was pretty easy:
Get all existing [...]
In this post we will implement a login process with remember password functionality. In AS3 and also in AS2 we can use a SharedObject to store data on the users browser. Shared objects are similar to the all known browser cookies but are managed by the flash player. Shared objects can store data also remotely [...]
Bellow you can find a list tags and their attributes that are supported by flash player (and also by flex framework). This list applies to TextArea, TextFields and other controls that are html enabled.
Anchor tag (<a>)
Creates a hypertext link.
href
target
Bold tag (<b>)
Renders text as bold.
Break tag (<br>)
Creates a line break in the text field.
Font tag (<font>)
Specifies [...]
In the past days I had to write a small app in AIR and one of the problems I came across was the saving of preferences locally. I needed to be able to read/write a file on the local file system. After some digging I found the answer and decided to make a small tutorial [...]
If you use Combo boxes to display options in some cases you may want to display options that are containing more than a few words. Maybe you want to know how a user arrived on your flex application and you want him to select from some complex options, but in the same time you don’t [...]