Only one clarification, Flash Player 10.1 is not a flash lite version of the desktop or web flash player, is literally the same player for web, desktop and devices.
Type: Posts; User: Qman; Keyword(s):
Only one clarification, Flash Player 10.1 is not a flash lite version of the desktop or web flash player, is literally the same player for web, desktop and devices.
Your application loads local and remote files?
Are you publishing for local access or network access?
Wich is the installation folder of the application? (others, trusted, private...)
Maybe this could solve the problem:
var myXML:XML = new XML();
myXML.ignoreWhite=true;
myXML.load("xml3.xml");
myXML.onLoad = function(success)
{
if (success)
{
About the bold problem, if your textfield is not bold at design time and you are doing this programatically, you need to embed the font in normal style, but in bold too (for example, creating an...
These are great news!
When you use JSON with Flash Lite, you need to know that some complex files could throw you some CPU errors in lower devices, because parsing the info in JSON files is more expensive in CPU terms...
I'm not sure... but I think in Flash Lite 2.x you can not load external data if your SWF is not inside the Others folder... I have to test it again to confirm that.
About Trusted folder,...
Maybe is a scurity sandbox issue. Try to put your XML in c:/data/Others/ and when publishing for flash lite 2.x select in the Flash tab, Local playback security: Access Local Files only.
If you...
I have checked this manual: http://sw.nokia.com/id/4c2b63d5-fe86-4473-b4d2-f214d1771a86/Series_40_Nokia_Flash_Lite_NFL_Package_Format_v1_0_en.pdf but there is no reference to include more files than...
Hi!
If your project have more than one SWF you can ZIP your contents into a single ZIP file and use it. You have this information explained here:...
Hi,
As you said garbage collector works each 60 seconds or whenever usage of memory increases suddenly by 20% or more. You have an intereseting resuource here:...
If Device Central doesn`t detect mouse support on the device you are testing, you won't have mouse support on it, but if you are sure the device has mouse input, you can update the profile or create...
How are you trying to remove the clips!?
In your code, you are attaching movieclips all with the same name, but in differents depths, this is not a good practice because it complicates accesing...
Hi seseboy,
1) It depends, but there are a lot of S40 devices that supports flash on the browser. You can know this information using device central, for example Nokia 7390 only supports...
There are some resources that could help you, but from your words, I think you want to search a node (with its name) not to parse a XML.
Levels and nesting are important when you parse a XML...
Supposing you have the file you want to read in the same folder than the swf file (Others folder), you can write this code:
var info_lv:LoadVars = new LoadVars();
info_lv.onLoad = function...
This is not only for S40 devices, also for S60. This kind of content (developed in flash lite) doesn't have access to this features... hope it can be added soon, we could create great applications...
I think screensaver applications can't load external data, they are very limited, the same for wallpapers, it's possible to load data through J2ME from this kind of content with SWFxME?
About...
You can check Stage.width and Stage.height when your app starts, so you know the real widht and height of your application.
With this info you can format all your device texts depending the...
Only some tips about optimization in loops sentences:
Original
-------------
for (var i : int = 0; i < this[arrayName + digit].length; i++)
if (this[arrayName + digit].id == id)
return...
If you use the same folder structure in your computer than into the SIS file, you could use relative paths to access them.
To load external assets from flash lite you can use the loadMovie...
Hi,
It's possible, you can check this opensource media player (support that format and others) that is part of all the opensource projects that we are developing at spanish mobile & devices adobe...
He talks about this:
http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html
Or this:
http://www.adobe.com/devnet/flashplayer/articles/cross_domain_policy.html
Marcos.
It's not a good practice to use listeners inside an enterFrame event. Here some code:
var data:SharedObject;
data = SharedObject.getLocal("mySharedObject");...
Flash Lite CAN open local images and XML files that goes in the SIS package, even other files if you know the path to them.
Marcos