air

How to set objects on a androidH runner game

安稳与你 提交于 2020-01-06 19:29:56
问题 I am trying to develop a android runner game for school purpose.. I am still new to this and please I need your assistance.. You guys can view my CS5flash file at >>> http://www.filedropper.com/test_37 The obstacles and coins are on random. But the obstacles and coins are overlapping each other.. Which is very bad for a runner game because it looks very bad and the gameplay gets very very complicated. How can i fix it??. Is there any way to fix it?. And i am also thinking if I can set the

Adobe Air: Null pointers when rendering takes time

跟風遠走 提交于 2020-01-06 15:54:10
问题 I am using the a ViewStack controlled with visibility of selected NavigatorContent being dependent on user selection of an option from a drop down menu. Each View of the ViewStack has its own separate UI elements including 2-3 DataGrid, charts etc - think of it as a simple school application where each view binds to a course and shows performance of students for that course (while listing students in grid) Sometimes, there is a problem with showing the data though - before the Rendering

Error installing AIR app

血红的双手。 提交于 2020-01-06 15:19:01
问题 I'm unable to install my AIR app now; I think it's because I was uninstalling it and quit halfway thru the uninstall. Here's the error I'm currently seeing: Bootstrapper begin with version 2.6.0.19120 on Win x86 Installed runtime (3.3.0.3650) located at c:\Program Files (x86)\Common Files\Adobe AIR Launching subprocess with commandline "Adobe AIR Application Installer.exe" "C:\Users\a210693\AppData\Local\Temp\AIR7495.tmp\Transporter" Application Installer begin with version 3.3.0.3650 on

Merge flash site into one executable

夙愿已清 提交于 2020-01-06 12:50:41
问题 I need somehow to merge flash site into one executable. Site consists of: index.html images sounds pdfs etc. After clicking on a merged file, index.html is needed to be opened. Is this possible? ===================================== Adobe AIR might be useful for this, but I can only create setup executable, maybe it is possible to create just executable? 回答1: You can pack any number of files into AIR app (although export time may rise substantially). You can't create 'just' executable,

Adobe Air - How to detect LAN servers (listening to a specific port)

亡梦爱人 提交于 2020-01-06 12:41:02
问题 I wonder how I can detect LAN servers. I made a client/server app and it all works fine but you have to manually enter the IP address of the server. Currently I'm trying to use a DatagramSocket on the client/server. The server will send a packet containing its IP address so the client can connect to that address. The packet is send it to its local broadcast IP (192.168.1.255) port 4444. The client will listen to port 4444. Then receive the packet. This works if I'm on the same computer (so

Air for iOS “Device Error: Please check if there is enough space on the device.”

我的未来我决定 提交于 2020-01-06 11:45:41
问题 So I have encountered this error. One day everything works fine, the other I can't upload the ipa to my iPad from Flash Pro CS6. Obviously I have checked there's enough space in the device. iPhone utility explorer reports the error "A signed resource has been added, modified, or deleted." when trying to install the ipa file. iTunes won't install the app either. There are no strange characters in the app name. I have redownloaded the profiles from Apple's portal and checked there were no

Air for iOS “Device Error: Please check if there is enough space on the device.”

有些话、适合烂在心里 提交于 2020-01-06 11:45:17
问题 So I have encountered this error. One day everything works fine, the other I can't upload the ipa to my iPad from Flash Pro CS6. Obviously I have checked there's enough space in the device. iPhone utility explorer reports the error "A signed resource has been added, modified, or deleted." when trying to install the ipa file. iTunes won't install the app either. There are no strange characters in the app name. I have redownloaded the profiles from Apple's portal and checked there were no

Can Adobe AIR app communicate with iPhone calendar

五迷三道 提交于 2020-01-06 09:02:44
问题 Hey all, I'm mighty new to Adobe AIR and Flex, Flash etc I've been looking through the Adobe AIR APIs, and could not find a class that will allow a Flex\Flash app to communicate to the calendar, (more specifically, the iPhone calendar via the iPhone packager) am i missing out something here? or has adobe not implemented an API for the Flex apps to communicate to the calendar? Are there other iPhone specific APIs that Adobe has not implemented? Thanks! 回答1: i've found the answer right here:

Adobe AIR to detect URL of active browser/tab

橙三吉。 提交于 2020-01-06 08:47:08
问题 Using Adobe AIR + related technologies, is it possible to detect the URL of the active tab/window of the active browser? For instance, if my user is surfing in IE8 on www.example.com/subdirectory/ , can I retrieve that data for use in my Adobe AIR RIA? 回答1: Not easily. In theory you could use NativeProcess and run some local machine code to figure it out; assuming the browser exposes it via some API. OF course, I'm not sure how you'd trigger that code from AIR if the browser was the active

How to determine the IOS version from within an Flex mobile app (AIR)

心不动则不痛 提交于 2020-01-06 08:37:11
问题 I want to determine whether my Flex mobile app is running on a IOS device with IOS 7. I need to find out because I want to lower the actionbar of the application if it is run on IOS 7 to provide room for the indicators (battery, wifi, etc.). According to documentation the Flex Capabilities class does not provide me with an IOS version number. The only option I can think of is to build a Native extension and query the version using IOS functions. But I do not really look forward to building