0
votes
0answers
20 views

TypeError: Error #1009 while loading external SWF in Adobe Flash

Everytime it tries to load the swf i get this error. TypeError: Error #1009: Cannot access a property or method of a null object reference. at code.soundclasses::TrackChannel() at ...
0
votes
1answer
23 views

How to skip the security setting on flash player?

Can we skip the security setting (for camera permission) on flash player when we attached camera (by code) ? So every time we use the flash app, the permission is always 'allow'. Because I am using ...
-1
votes
1answer
18 views

Using stage.fullScreenWidth and stage.fullScreenHeight to position MovieClips?

I have a movieclip called playbtn and this code: stage.scaleMode = StageScaleMode.NO_SCALE; playbtn.y = stage.fullScreenHeight - playbtn.height / 2; playbtn.x = 0 + playbtn.width / 2; When I test ...
2
votes
1answer
30 views

iFrame not loading inside Flex popup

I'm trying to load pdf inside of iFrame which open in a pop-up window. Pop up is showing but but its not loading pdf. Here is my code -Main.mxml <![CDATA[ import mx.controls.Alert; ...
0
votes
1answer
29 views

I'm trying to create a sliding gallery in AS3 in Flash CS5, but I get these errors: does it have something to do with AS3 ?

Scene 3, Layer 'AS', Frame 1, Line 1 1119: Access of possibly undefined property onEnterFrame through a reference with static type flash.display:DisplayObject. Scene 3, Layer 'AS', Frame 1, ...
-3
votes
0answers
37 views

How to make android app auto resize? [closed]

I want to ask how to auto resize the android app, i build using flash cs6 and adobe air 3.2 and if possible how to catch an orientation event so we can adjust the size for portrain and landscape mode. ...
0
votes
1answer
20 views

Transition in Spark Components like BorderContainer, List, etc.,

I am developing flex mobile project in adobe air, using flash builder 4.7, i am able to apply Transition in views, How can i apply Transition to Spark components like BorderContainer, List... ...
0
votes
0answers
16 views

I want to join several adobe AIR files so I can run them from a menu in that file

I made like 15 small adobe AIR games, my goal is to join them in one single file with a menu where I can select the games I want to play (the menu is already done, the connection isn't). It will be a ...
0
votes
0answers
24 views

ActionScript 3 Selecting Files according to their extensions

I'm trying to select for example XML files in a folder. Following code is a part of my program. var desktop:File = File.applicationStorageDirectory.resolvePath("puzzles"); var files:Array = ...
0
votes
1answer
32 views

adobe actionscript detect browser url

I need to use a *.swf file in my Google blogger site, So I upload my *.swf file to www.000webhost.com, because I think blogger not support to upload *.swf files and we need to use external storage ...
0
votes
1answer
19 views

flash media server (FMS) reattach camera to new stream

I'm using flash media server and trying to record the stream but having a problem as I've outlined below. Thanks for taking the time to read this post. How do i detach my camera from one stream and ...
0
votes
1answer
33 views

Drag Game Puzzle with custom dispatch event

i'm creating a drag puzzle game, and i need to resolve an issue, two to be exact: a) Make a check if all the objects from dragArray variable are in the same place as the ones from matchArray. b) If ...
0
votes
2answers
23 views

AS3 Error 1046 & 1180

I am trying to make a data grid were name and score is added to it. I keep getting an error... 1046 Type was not found or was not a complile-time constant: DataProvider. 1080 Call to a possibly ...
-5
votes
0answers
109 views

full screen app in all device android by Adobe Air flash cs6 [closed]

I've got a problem with adobe air . I have created some apps by as3 and adobe air in flash cs6. I checked full screen feature in propertis but in some devices it does not appear in full screen and ...
-1
votes
2answers
36 views

Cannot access a property or method of a null object reference. at blast_game/moveObjects() urgent

i keep getting this error message above in my code when trying to get my game working. the code is as follows where the error seems to be occurring but i cannot locate it; the error that it brings up ...
0
votes
1answer
90 views

AS3 hitTestObject to end game

Hello I've tried to create a game , similar to space invaders, and finding it difficult to create a hitTestObject, so if the alienbullet hits mc_gun the player loses a life, and once his lost three ...
0
votes
1answer
64 views

How to use a .txt file instead of .dat file in AS3 to test air for android app in flash pro cs6

Hi i want my app which im making in flash pro cs6 using air for android to read the speed from .txt file instead of a .dat file. How do i go about changing this code below done in Actionscript 3 to ...
0
votes
0answers
42 views

Adobe Flex Accessing the 'Feilds' of an Array Collection from php service lastresult

I am stuck at a problem. I am trying to store the lastresult from a php service in a ArrayCollection. Then I am passing that Array Collection to a AS Class. Problem: I need to have the values and the ...
1
vote
0answers
78 views

Adobe flex as3 get data from imdb api

i'm trying to get data from imdb to as3.Is all right until i tried set in object image url from "poster". I tried the following: public function loadXML(path:String):void { var ...
0
votes
2answers
69 views

Where is Adobe AIR install located?

At the moment I'm running Adobe AIR 3.2. I've previously tried installing 3.6 (and now 3.7) but I couldn't locate it. It's on my Mac somewhere but I can't find the file/folder to link it in Flash! In ...
0
votes
1answer
46 views

Two out of Three MovieClip buttons work in a Frame Actions using ActionScript 3.0

So here's the issue: I have created 3 button symbols and they are each in their own 3 movieclip symbols with their own instance names. In an actionframe on Frame 1, I have the following code: ...
0
votes
1answer
29 views

Saving flash Stage Data to XML (runtime)

I am working on a prototype in which i have to generate XML file of stage, I mean to say that in which order elements created on stage i have to create node list in XML with their data type and other ...
1
vote
1answer
123 views

Adobe AIR 3.4 saving/writing XML data to iOS

I'm trying save XML data to an iPad 4 with AIR 3.4 for iOS and really can't tell if this is working or not. No events are being fired apparently. Any help is greatly appreciated. private function ...
0
votes
1answer
101 views

How to Make Stage transparent in Action script 3 (Adobe flash professional)

I am Making a text animation in AS3, Which will then added in a movie clip. So i want a Transparent Stage. Is there any way to make Stage Transparent. If possible then describe in detail. Thanks in ...
0
votes
0answers
39 views

Cannot open PDF files in AIR application on Mac OS. But same code worked in windows

This code not open PDF files in AIR app on Mac OS. But same code worked in windows. I installed adobe acrobat reader. But I still face error in MAC os protected function ...
2
votes
1answer
67 views

Adobe AIR command key on a mac not detected

I currently developing and AIR app for what I need to detect the command key for a combo key, currently I have something like this this.addEventListener(KeyboardEvent.KEY_UP, onKeyUp); protected ...
0
votes
0answers
121 views

How to show my app icon as notification in status bar by using adobe air

I have created my own mp3 player to use on android by using adobe air. I need to show my app notification icon when it was minimized. And when i click notification icon, my app will active. I don't ...
1
vote
3answers
217 views

Adobe Flash AIR override Android back button

In my AIR as3 app I try to override Back Button like this: NativeApplication.nativeApplication.addEventListener( KeyboardEvent.KEY_DOWN, onKey ); private function ...
0
votes
0answers
89 views

as3 StageText cursor does not show up

here is the code that creates the StageText var myTextField:StageText = new StageText(); myTextField.returnKeyLabel = ReturnKeyLabel.SEARCH; myTextField.text = tlf.text; myTextField.editable = true; ...
1
vote
2answers
189 views

Calendar Actionscript 3

I need to make a calendar in AS3 that looks like this regularly: and this when a date is clicked: I have the basics down, I think but I don't know where to go from here and I cannot figure out ...
1
vote
1answer
88 views

Wrong title bar icon size in Adobe Air on Windows

I am facing a really annoying problem. I am supplying both 16x16 and 32x32 application icons yet the initial window is using the 32x32 icon, scaled down, instead of the 16x16 icon. Here are the ...
1
vote
1answer
100 views

AS3/Adobe AIR Starting in Portrait & changing to Landscape becomes wrong

I'm gonna try to explain this as good as I can with limited english! Ok, I'm bulding an app that will on phones be in portrait mode and in landscape on tablets. I do this by, first with calculating ...
0
votes
2answers
180 views

Dynamic text field in Frames not changing text in actionscript 3

Dynamic Text field not updating in actionscript when in 2nd Frame I am having a movie clip with two frames. In 2nd frame there is a movie clip which has a text field. My goal is to on some event I ...
0
votes
1answer
50 views

Why can't I make a visible movieclip?

I'm trying to make just a simple square movieclip show up on my stage, and it seems like nothing I've tried works...nothing appears on the stage! My code: var mc:MovieClip = new MovieClip(); ...
0
votes
1answer
95 views

Unable to Connect to FMS

Why cant i connect? When i run the application i receive NetConnection.failed in the output. Can you please take a carefull look at my code. I believe my string url is correct. I am unsure is my FMS ...
-2
votes
1answer
89 views

AS3 help - External as. file a movieclip with lagging issues [closed]

Could someone help me figure the problem in this game. It begins to lag. https://www.dropbox.com/s/3heopwz4s0stfz4/Spill.zip
1
vote
3answers
115 views

How do you stop setInterval() after certain number of iterations

I have tried following code and its working but how do i stop when its reach 130 ? var textValue:Number = 67.1; var addValue:Number = .1; my_txt.text = textValue.toString(); function counter(){ ...
0
votes
1answer
160 views

TypeError: Error #1009: Cannot access a property or method of a null object reference. at naj_fla::MainTimeline/runMan()

I know that many people have asked the same question, but i tried everything to solve it and i don't know what else to do. I understand that this error appears when an objects is being called while ...
0
votes
2answers
269 views

Feathers (Starling-based Adobe AIR library) List control doesn't work the second time it's instantiated

I'm having a problem with a Feathers List control. It works the first time I enter the screen that contains the list, but the second time I enter that screen in the same app execution, the scrolling ...
0
votes
1answer
111 views

adobe flash actionscript 3 TypeError: Error #2007: Parameter child must be non-null.

I have created a flash document and i get this error TypeError: Error #2007: Parameter child must be non-null. at flash.display::DisplayObjectContainer/setChildIndex() at ...
0
votes
2answers
61 views

Resize window and move elements, how to change coords

I have an adobe air application with 1024x600. Now i want to enable resizing. When I give percentage sizes for elements, like a datagrid, grid changes his size correctly. But what can I do with the ...
2
votes
1answer
63 views

goToAndaPlay return value .. T-T on AIR for Android [Accelerometer use]

[Im Newbi on as3 and adobe flash] i want to implement accelerometer in AIR 4 Android to animate object, here is the description of my file: -I have 2 frames animation, -1st frame for the menu -2nd ...
0
votes
0answers
69 views

How to rename a file while importing to Adobe Premiere Pro?

I'm developing an extension for Adobe Premiere Pro using CS Extension Builder to import files from internet. I achieved that using the following code, var app:App = Premiere.app; var ...
0
votes
1answer
107 views

Adobe Flex: Images, and a spark list

I am trying to display images in a spark list. I have tried A TON of methods and none of them seem to work. Here is my code: var list:List = new List(); list.width = 200; list.height = 300; ...
0
votes
2answers
58 views

eventDispatcher from a sub class to another class

I have been struggling with the following for a couple of hours now, how do you call a custom class from another class if you do not extend that class for example. I have on my main Base class a ...
0
votes
2answers
183 views

Adobe Air Desktop App Constrain window size

I have an Adobe Air app that runs on Mac and PC. (coded in AS3) However, the app has the dimensions of 540 by 960. I have content hidden off the visible stage however if the user resizes the window ...
0
votes
1answer
66 views

AS3 Add movieclip trough function

Is it possible in AS3 to create an 'API' to add movieclips/bitmaps? I tried doing this: public function addImage(name:String, x:int, y:int, type:String = "MovieClip", path:String = null) { var ...
-1
votes
1answer
37 views

Suppress a specific android app [closed]

my question is for android os (Galaxy Note 2, rooted device, 4.0.1). I need to hide the app "Samsung Smart Camera App" permanently, even it tries to go in front or runs after start. Is there any ...
1
vote
1answer
157 views

FlasCC: interop between Vector.<Number> and double[]

Assume that I am new to AS3 and FlasCC and try to port some legacy C++ code to Flash. What I have is some number-crunching routine that takes an array of type double (the array is of fixed size). The ...
0
votes
1answer
96 views

How do I compile to Flash 11 (even version) with Adobe Flash CS6?

I need to compile to an even version of Flash due to server issues (I'm not a back-end developer, nor do I have access to the server in any way). I can publish to 9, 10, or 11, but have a very small ...

1 2 3 4 5 10