Web Design Resources & Tutorials to help you design the best website!
If your a beginner like me when it comes to designing a game for the Microsoft mobile platform “Windows Phone 7″ then you are gonna need all the help you can get.
Most of your help is going to come in the form of tutorials and even more helpful are the video tutorials.
The site Exhd.com has [...]
Here is how you can reload a Flex Application Via a Click of a button using the Application.application.url property
<code>
<?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical" backgroundColor="0xFFFFFF">
<mx:Script>
<![CDATA[
private function onReloadFlexApp():void
{
var urlRequest:URLRequest = new URLRequest(Application.application.url);
navigateToURL(urlRequest,"_self");
}
]]>
</mx:Script>
<mx:Button label="Click Here to Reload" click="onReloadFlexApp()"/>
</mx:Application>
</code>
Incoming Search Terms :flex reload application , flex urlrequest , flex reload page , urlrequest flex , flex application url , [...]
Say You want to have the states of your Components in Flex save themselves so a user can navigate using the back and forward buttons of the browser. This is a possible by implementing the mx.managers.IHistoryManagerClient and supplying the saveState and loadState Methods with what property of the component you would like to save. This [...]
This Example shows you how to take a Snap Shot/Screen Shot of a flex Component using the ImageSnapShot.captureBitmapData() method. It is pretty simple so look at the example and click the button to take a snap shot. Source View is Enabled. Click Here for the Example
Incoming Search Terms :flex snapshot , flex imagesnapshot , snapshot [...]
Hottest Posts