Hello,
Does flash lite supports Touch screen?
If yes how and which version?
Hello,
Does flash lite supports Touch screen?
If yes how and which version?
Yes, Flash Lite supports the Touch screen on the new Xpress Music 5800. For example, buttons are touch aware by default.
The device supports Flash Lite 3.0.
Please i need to replay, because iam interested to know
I want to do that with my app if flash lite 2.x supports touch screen..
Thanks in advance
Having worked with touch screen with Flash Lite 1.1, I would say that 2.x should definitely have support for it.
Also Robert stated in his earlier message that buttons in Flash are touch aware, so for incorporating the touch screen feature in Flash Lite, it is advisable to make use of buttons.
Mariam
Mariam Dholkawala
http://www.igamestudio.com
Blog - http://www.mariamdholkawala.com/mobile
MaD UG - http://www.indimadgroup.com
Hi issanasr13.
I was developing my game i'v made a few buttons. Automatically Flash Lite detected as a link. So if you use direcional(left right up down) automatically select these buttons.
So i believe that touchscreen its automatic. I mean, flash lite version of this cellphone must do that without have to use any type of code.
Verify if its a new flash lite version. You can test making a swf that has a movieclipe with actionscript(on release) ^^
Hi !
Yes , flash lite support touch screen, but mobile should have such option, any way, u cannot use touch scrren command in fl 2.0 for nokia N95, it will not work. For touch screen use this commands
MovieClip.trackAsMenu = true;
MovieClip.onRelease = function ();
In 2.x I have used touchscreen techniques using such devices as the HTC Touch.
- System.capabilities.hasMouse and System.capabilities.hasStylus to test for touch screen support
- use buttons to detect touch screen presses/releases in your UI
- you can use objects with onMouseMove, onMouseDown, onMouseUp handlers to build in more sophisticated interactivity like touch-slide, dragging, etc. I have done this in the past using a "InputController" class that listens for these and dispatches events to the appropriate movieclips on stage.
- as mentioned in other post, MovieClip.trackAsMenu option can be used for finer control of how movieclips handle touch events.
Max
Nokia has a newer docs on touchscreen with Flash Lite which is worth a read, for those stumbling unto this thread:
Flash Lite UI Design Guide for Keypad and Touch Devices
http://www.forum.nokia.com/info/sw.n...h_Devices.html
aight boys and girls,
having trouble using the getURL command with my Nokia 5800 to work.
my code is:
on (release) {
getURL("http://www.rbs6nations.com/en/france/france_home.php");
}
workin on the laptop but not on the phone.
any help would be appreciated.
Hi,
i developed an application in Flash Lite 2 with many menus and buttons, that works with touch screen and without.
I had no problem.
The difference with the examples of this topic is that for the touch screen version i used invisible buttons and the action assigned to the button is only on(press) and never on(release).
Bye