Actionscript 3 :: Flex, Get USB Id Of Plugged USB Device?

May 18, 2011

I'm developping an Adobe Flex application.

I need to detect gps devices when plugged. Currently, it is a bad heuristic-based detection that is used (it tries to find specific files/directories). It uses the StorageVolumeInfo to discover plugged devices.

'd like to know if there's a way to get the USB id with Flex.

View 2 Replies


Similar Posts:


Actionscript 3 :: Can AIR Tell If A USB Storage Device Has Been Plugged In

Apr 26, 2011

How can I tell from an air app if a USB storage has been plugged in?

View 2 Replies

Professional :: - Sound Has No Valid Device Sound Path Although Exporting Device Sounds Was Requested In The Export Settings?

Jun 30, 2011

I have imported my wav files to my library added them to the down state of my buttons and when I test the file I get (Sound has no valid device sound path although exporting device sounds was requested in the export settings. This sound will be ignored.) I have been surching for an answer but as of yet have found none.

View 3 Replies

ActionScript 2.0 :: Detecting Cameras Currently Plugged In ?

Jul 3, 2009

I have a web conference application that allows people to communicate via webcam. However, I would like it to be smart enough to detect if one is plugged in and if it is not, to disable the video feature. Just looks really bad when they try to use video but it gives them a black screen.

My problem is that using the following code, I get camera names that were previously plugged in but not CURRENTLY plugged in:


Code:

Does anyone know of a way to get cameras that are working and plugged in?

View 1 Replies

IDE :: Animating A Wire Being Plugged Into Socket?

Aug 31, 2009

I'm trying to animate this scene where the plug at the end of a blue wire would snap-in to the white colored socket. Its a simple process, but the tricky part is that I have to make it interactive. In other words, the user has to mouse-click on the plug and drag it close to the white box where the plug automatically snaps in place.

I also need to make the blue-colored wire flexible/bendable to follow the mouse's movement. i'm thinking bones, but don't know how to mate it with the mouses' movement. And I'm rather clueless about ActionScript 3.

View 3 Replies

Flex App Run On A Mobile Device?

Mar 20, 2012

Can a Flex application that was designed for use on a PC be run on an iPad, iPhone, or Android-based mobile device? Seems like a simple enough question.[URL]..yields a picture of a dude running a (presumably) Flex application on an Android. So at first glance, the answer would appear to be "yes." End of story.

There is so much (mis)information out there on various tech sites that suggest Flash-based technologies simply won't run on iOS or other mobile platforms. Why is this? Perhaps they mean to say that Flex won't run "out of the box" and requires a plugin? Or do they mean it won't run at all?

Every time I think I've reached a definitive conclusion, some post on SlashDot or CNET directly contradicts it. So what's the scoop? Can one take an existing Flex application and run it on iOS/Android? (I realize there are screen size issues to consider so the app might not run effectively. I just want to know if the runtimes are available on the mobile devices to allow the Flex app to launch at all.)

View 5 Replies

Flex :: Check The Device Type?

Jun 18, 2011

how ( if it is ) to check the device type with flex ?

with device type i mean : PC, laptop, tablet, phone ..

View 1 Replies

Flex :: Air LocalHost Error (The Device Is Not Ready)?

May 27, 2011

I am trying to compile an air app, and I keep getting this error: D:Tomcatwebappspublic-htmladmMain.swf (The device is not ready) It seems that someone who worked before me, had worked from a local server. I searched Flex for all known variations, I couldn't find where it is looking for this. I googled as well, which didn't get me anywhere. Does anyone know how to remove this compiling error?

View 2 Replies

Flex :: What Device Font Flash Player Uses

Sep 17, 2011

I have a Flex 3 application in which embedded fonts were being used. However, due to licensing restrictions, I have to remove the embedded fonts. Not a big problem, but now legal wants to know which device font is being used? Seems like I can only provide them a list of "suggested" fonts from my css file, and not the actual font that will be used at runtime.

[URL]

"If the client's system does not have the first font in the list, Flash Player attempts to find the second, and so on, until it finds a font that matches. If no fonts match, Flash Player makes a best guess to determine which font the client uses."How can I determine what is the font that the Flash Player ultimately ends up using?

View 1 Replies

Flex :: Global Access For SqlDB On Mobile Device?

Jul 26, 2011

I am creating a sqlite database for my mobile app. once the user has supplied the correct password the database is opened. Various screens of the application will need to read and write data from the db. is there a way I can make the connection global when I open it, so it can be accessed from any view?

the code I am useing to open the DB is

var sqlConnection:SQLConnection = new SQLConnection();
sqlConnection.addEventListener(SQLEvent.OPEN,sqlOpenSuccess);
sqlConnection.open(DBFile, SQLMode.CREATE, false, 1024,null);

View 1 Replies

Android :: Flex - Flash Builder Installing Failed On Device?

Nov 9, 2011

I made the simple application using flash builder 4.5.1 for both iOS and android. I test the application on my iphone and ipad, it working fine. But when I try to install on my android device(Samsung GT-5570). It get the following error message.Error occurred while installing the application:1603 KB/s (6108444 bytes in 3.719s)pkg: /data/local/tmp/Runtime.apkFailure [INSTALL_FAILED_INVALID_APK]I google about the error.I found that It is cause of my device have ARMv6 architecture.Now I have 2 question.Question 1. Is there any other reason of failing installation.Question 2. If the reason is same than any other way available to make build for ARMv6 and ARMv7 architecture phone.

View 1 Replies

Android :: Camera Works Perfectly In Flex Emulator But Not On Device?

Dec 31, 2011

I have a project that uses video for a chat application, I can get it to work in the flex emulator but when I deploy it to the device the button that initiates the video doesn't change and video never starts. My devices all have 2 cameras except my computer but specifiying Camera.getCamera([1]) didn't change anything except mess up my emulator and cause a NullPointerException. Camera.getCamera([0]) works just the same as not having the ID. I have tried messing with different values quality and nothing makes a difference

private function publishVideo():void{
_publishingVideo = true;
_ns = new NetStream(_nc);

[code]......

View 1 Replies

Actionscript :: Stagewebview Cannot Re-select Text Content In IOS Device - Flex 4.6

Jan 31, 2012

Developing APPs on IOS using Flex 4.6 I am displaying parsed epub files into stagewebview. It works fine on the device. However, when I try to add the annotation tool which (likes the ibook annotation), I can only select one single word!! I tried the "Game of Flex" which it did the same way as loading a web content into a stagewebview component, and it cannot have control to select more word as well. Therefore, I think its the current limitation (correct me if there is actually a way to do that in stagewebview) on the stagewebview. So, do you guys have other good ideas to display content as html without the limitation? like use other components, call JS? or use native object-c?

View 1 Replies

Flex :: Detect Screen Size To Center An Image On A Mobile Device?

Nov 23, 2011

Tried stage.stageWidth and stageHeight on applicationComplete, but for some reason the actual numbers returned do not seem to be accurate - the image always appears off-centered (stageWidth/2 - imageWidth/2). How do you determine the mobile device's actual screen size, to center an object?

View 1 Replies

Flex :: Mobile - Prevent Keyboard Show When Click Textinput Field On Device

Mar 2, 2011

I'm trying to prevent keyboard show when I click Textinput field on my device. I use Textinput only to show some text and for click event (to push a view).

View 2 Replies

Flex :: Scrolling An Editable Spark TextArea From Hero Mobile On A Touch Device?

Mar 21, 2011

How do you scroll an editable TextArea (Flex Hero) on a touch device? I am referring to the situation where the text does not fit in the TextArea height.When I try to tap and drag the text gets selected and not scrolled... Am I missing a something here? I am using verticalScrollPolicy = on (also tried auto).I am testing the code in the Blackberry Playbook simulator (my targeted device for my app).

View 2 Replies

ActionScript 3.0 :: Display Images From The Images Server As Long As The User Is Plugged Into The Domain

Jan 22, 2009

I have a flash file sitting inside of a web page in our company domain. There is another server (used to store images) that is part of the domain but is not running any web services (for security reasons). A folder on the images server is however shared in such a way that any site on the web server can display images from the images server as long as the user is plugged into the domain. For example, both I and my boss can pull up a web site on the web server and see all the information, but only he can see the images
because I have Vista Basic and no domain support. This is done via "<img src='\serverNamedirectory.'/>"

That's ok, but on this particular instance I don't want to display the image on the webpage, I want it in a SWF on the page. However the SWF can't seem to load the images even though the page it's sitting in could. I've tried tons of variations of URLRequests and Loaders, most resulting in security errors. Since most of the online discussions about these errors revolve around cross-domain access, I can't seem to find any tech support for our specific situation.

View 2 Replies

Iphone - Flex - Create Ipa For Testing On Device Using IPhone Packager?

Sep 11, 2010

i'm following Christian Cantrell guide for packaging AS3 application for iPhone, but i can't find a way to use the packager for creating an app for testing on device. I've tried with -target ipa-test and -target ipa-app-store but when i try to upload my app on the iPad, iTunes throws an error sayng that i'm not allowed.I've done a simple test using the Packager bundled width CS5 (with the same certificates) and everything gone right.

Is is possible to use CS5 Packager for Flex project ? (i know that flex isn't optimized for mobile)

View 2 Replies

Professional :: Getting .swf Into To Device Central?

Jun 22, 2011

I'm using flash CS5.5 (trail version) and want to export a movei file out to device central to test acceleromoter settings.
 
When creating the file I : selected air fro andiod, made these changes to the publish settings : set upa  certificate, tick all permission (as it kept telling me they hadn't been set) and then click ok.
 
For some reason under control > test movie > device central is greyed out. If i try to open the .swf file directly in device central it just tells me the device has the wrong version of flash.
 
Any ideas? I selected the file type as andriod?, preferably would like just to be able to click on test moving in device central.

[Code].....

View 2 Replies

Professional :: Loading Ipa To IOS Device?

Oct 9, 2011

I had a quick and dirty little IOS application that I thought I'd knock out in Flash CS5.5 and deliver to the AppStore.I must have missed something really important in the past 11 months.I built a small, simple app to test on my iPad.I set it up to run on GPU, set up the p12 and a new Provisioning Certificate. Deployment is set to "quick publishing for device testing". In 2 minutes or less it published to an IPA file.The problem is when I mount the IPA to iTunes Library then to my device, it is literally stuck in Loading mode.... Just to test how slow it is, I left it to run over night.Well it's still loading almost 16 hours later. Is it just me?I can't seem to find any other discussions or articles on IPA loading problems. Do I need to load some other version of something else to make this new version of Flash publish efficiently?Is this not the correct workflow from Flash to an IOS device?

View 1 Replies

AS3 :: Android - Put .swf On A Mobile Device?

Apr 7, 2011

i have asked this question before but the answer received was not applicable in my situation. I searched the net and still unable to find anything. I have a game in flash actionscript 3.0 and i would like to put it on my htc hero - android phone.

View 3 Replies

Access USB Midi Device Via Web?

Dec 31, 2011

I'm trying to figure out if it's possible to access a Midi device (like a piano/keyboard or electronic drum set) that is plugged into to a clients USB port over the web.

Obviously the browser security model makes this impossible using just javascript and while it looks like the emerging html5 device standard might help in the future it's apparently not there yet.

View 2 Replies

CS3 Draggable Map For Touch Screen Device?

Mar 5, 2010

We are using CS3 and using actionscript 2.1. We are creating an application for a touch screen device and we must provide a draggable map. I have a map that is much larger than the screen size and I wish to be able to drag the map.Additionally the map needs to contain 'hotspots' which the user can click on and it shows additional information

View 1 Replies

Media Server :: Device Isn't Showing Up?

Oct 1, 2009

my device (Dazzle DVC 150) is not showing up. It will show u inother programs and on my laptop works in this program. I also get an error saying "Please ensure your video capture device is working properly and is not in use.

View 1 Replies

Professional :: Debug On Device Via Usb Is Disabled?

May 27, 2011

I have an iPhone4 plugged in via usb.I an create ipa files and put them on the phone using iTunes.I would like to be able to use the test/debug on device via usb, but in the menu, it's disabled.

View 8 Replies

ActionScript 3.0 :: Scrollable Text For Device?

Jun 28, 2011

im an designer, not a programmer, but CodeSnippets make me real happy%),but i dont know how to create a scrollable text in AIR for device,someone,

View 1 Replies

Professional :: Scrollable Text For Device?

Jun 28, 2011

how to create a scrollable text in AIR for device,
 
aaand, in code snippets, would all "click" actions work as with taps on device?

View 2 Replies

Professional :: Cannot AIR App Publish Into Android Device

Jun 30, 2011

I have a Nexus S and trying to test my AIR for Android app in it. When I put to publish, it keeps showing me "publishing" but never ends. What that could be?

View 1 Replies

Professional :: Device Test Failure?

Sep 13, 2011

i made an scrolling image sequence,that is controlled with moving left-right mouse or finger there are 120 images and its wheight is 36 Mb.it runs great on desctop as SWF .BUT when published to .ipa and lounched on iPad 2 - black sreen for aboute 5 sec. and throws back to "home".what does that mean?

View 1 Replies

ActionScript 3.0 :: Saving On A Mobile Device?

Oct 16, 2011

how to save score/level/etc. information for a game on a mobile device?I'm still unsure how to read/write files in the apk (Android).Basically, I want to allow the player to save his progress at some point so that they can restore it later.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved