flashlite

How can a FlashLite Developer using Device Central emulate camera and file upload integration?

I am developing an application with Flash Lite designed to run on Nokia S60 5th edition phones using the Flash Lite API Bridge Interface. The application uses the API Bridge to access the phones camera and upload functionality to take a photo, display it to the user then upload it to a server. I am using Flash CS4 Professional and Device...

Why is LoadVars() in FlashLite 3 SWF running on Nokia Remote Device Access not returning variables

I am trying to debug a FlashLite 3 application that uses LoadVars.sendAndLoad() to contact a server and return variables from a PHP page. When I run this in Adobe device central it works ok but when I install the SWF on a phone at Nokia Remote Device Access service and output the results of the resultVars I get nada... here is my code - ...

arm-none-symbianelf-ld throwing "No Such File or Directory" error looking for file [...].GCCE.UREL.objects.via when building project

Im using Carbide C++ 2.3.0 to build a Flash Stub project with S60)5th_Edition_SDK-v1.0 Phone Release (GCCE) set as build configuration. I have installed Perl and JRE and the CSL toolchain (GCCE), and Ive manually updated the Windows PATH variable to point to GCCE/bin. When I create my project according to - this article and click build ...

Flash or FlashLite development for Android?

I'm investigating the possibility to develop Flash or FlashLite apps that runs on Android as stand-alone apps, but I'm not finding anywhere a clear, definitive and up-to-date answer. Questions: The HTC Hero supports Flash out-of-the-box (without installing it), right?...it's written everywhere, but which version? Flash 9? Flash 10? Fla...

Is it possible to turn a string with base64 encoded image data into a displayable image in flash lite?

I have tried using a data URI to load the image data into a movie clip, but flash lite does not appear to support the data URI scheme. I also thought it might be possible to base64 decode the image data and write it out to a file and load the file back into the movie clip using the file URI scheme. However, I do not see a way to write ...

Will Five3d compile and run on Flash lite on any real mobile phone?

Will ActionScript2 Five3d compile and run on Flash lite 3.1 or 3 or 2 or any (not FP10.1) - Will it run (+- with more than 5 fps speed on simple tasks) on any mobile phone we use tooday some nokia E71 (or any other +-old mobile phone)? Has any one tried? (and BTW will it work with video playing for ex simple rotating x y z plane with vi...

How to pass parameters to a Flash Lite 1.1 movie?

How can I pass parameters to a Flash Lite 1.1 movie? ...

How to play .3gp videos in mobile using RTMP (FMS) and HTTP?

Hi I am not able to play video on mobile device which is .3gp container and H.263 / AMR_NB encoded. I just want to play my website videos in mobile device also just like youtube.com. I want to use RTMP and HTTP both. My requirement is as follows- Which codec and container will be best? Should I use FLV to play video on mobile dev...

Flash Lite 2 Split Image

Can flash lite 2(as2) split an image in to multiple movie clips? For example, get an image and split it in half to to mc's. ...

fscommand2 support in Actionscript 3.0 ?

Hi All, I am very new to Action Script. I am using Flash Professional CS5 with ActionScript 3.0. The problem is, When I am trying to use fscommand2 function, Flash Compiler throwing an error saying: Scene 1, Layer 'Layer 1', Frame 1, Line 7 1180: Call to a possibly undefined method fscommand2. But, I am able to use fscommand. But, ...

How flash lite application can handle phone events i.e. call receive

I am a newbie for flashlite, i have just seen the turorial videos for this. I got fair idea about how to develop independent app in flash light like games, but what i don't understand is how does it will interact with device functionality events like call/sms received. My gauss is there must be some api to achive this type of function...

Has flash player 10.1 been released so far?

I just read this post which said flash player 10.1 provides consistent runtime for desktop and mobile devices. I just asked a question on porting a desktop application to mobile here, but if flash player 10.1 is available I won't bother to do the porting stuff. UPDATE Can someone give a link where mentions about the consistent runtime...

What's Flash Lite at all?

I've long thought of Flash Lite as something similar to actionscript, for mobile browsers. But today I tried to create a Flash Lite project in flash cs5 but found it seems to be some kind of Flash Player ? Which is the case ? If it's the latter case, is actionscript for Flash Lite the same as actionscript for Flash Player or has some ...

Can you recommend any good book on flash mobile(lite) ?

I've googled lot but still don't find a book on this field, can you recommend ? ...

Struggling with flashlite 1.0 Strings

I'm using eval to simulate arrays. Setting values works fine for integers, but seems to completely fail for strings. eval("array" add i-1) = arrayVal; // fails for string values Getting values seems to work perfectly fine either way. arrayVal = eval("array" add i-1); // works fine for strings and ints Is there any way around this?...

What are action script extensions?

What are action script extensions? What sort of functionality will require some one to add support for adobe action script extension ? ...

Flash Lite 1.1 substring question

Could you tell me why both lines print out a? trace(substring("asd", 0, 1)); // == "a" trace(substring("asd", 1, 1)); // == "a" (this prints out s: trace(substring("asd", 2, 1)); // == "s") Does in Flash Lite 1.x the index start with 1? ...

I'm trying to turn on the iPhone 4 torch but it just won't turn on

So I followed the WWDC session 409 about using the camera/flash/torch/etc as a device on the iPhone 4 and I was able to write the chuck of code below. It's compiles without any errors but when I try the execute it on my iPhone 4 nothing happens. Can someone help me figure out what i've done wrong. I'm also trying to get the torch to turn...

How can I make the iPhone 4 LED light fire instantly?

I'm currently using the below code to turn on and off my iPhone 4 LED light and it's working great, but the only problem is that every time I turn the LED on there is a slight delay. However it turns off instantly. I need it to fire instantly to implement a strobe like feature, and because it's just more convenient. I've noticed that in...

How can I implement a strobe light on my iPhone 4

I would like to implement a strobe light on my iphone 4 I already have the code to turn on and off the LED. I figure I should use an NSTimer to repeat the method that turn the light on and off, also i figure i would use a UISlider to change the rate at which the strobe flashes. I just need to know what the best way to implement the str...