ActionScript 3 (AS3) is the open source object oriented programming (OOP) language of the Adobe Flash and AIR Platforms. AS3 is widely used for RIAs, mobile apps, and desktop applications. (ActionScript 3 is a dialect of ECMAScript.)
3
votes
0answers
111 views
photoshop activeDocument
I am writing a Photoshop plug in in ActionScript 3.
I am having a very confusing and frustrating issue with app.activeDocument. My code works perfectly with Photoshop for Windows but on a Mac I get ...
3
votes
0answers
546 views
What is the best way to use vertex buffers when rendering different objects with Stage3D
I have an array of simple 2D objects, mostly made up of two triangles.
Although the objects are quite simple, each one is drawn using stencil operations
so every object will require it's own ...
3
votes
0answers
240 views
Trying to login to rdp using as3
I am trying to login to rdp using as3 (air). I am doing ok (I think) considering the lack of resources out there to understand the actual process.
I have gotten past the initial sending username part ...
2
votes
0answers
41 views
CSV regex with any digit
I am trying to looking for regex which allows any comma separated values. Like this.
23,23,23
233-2-3,23,23
23/23/2333,22-22-2222,23
I have tried couple of things but nothing fits 100%.
[^,;]+
...
2
votes
0answers
58 views
Requirements for using NetStream.seek()
I'm using a NetStream class to play video using Video class or stage video , there is no seek bar to backward or forward video , i add seek bar to video but the seek function not work exactly , it ...
2
votes
0answers
45 views
LuaAlchemy callglobal
I'm using LuaAlchemy with AS3 and am currently trying to call global function in lua script. Running whole script file works perfectly, but when I try to call callGlobal(), I get Lua error: attempt to ...
2
votes
0answers
169 views
AIR LocalConnection in IE 10 Windows 8 not working
Microsoft recently done this update for flash in IE10
http://support.microsoft.com/kb/2758994
after which our product, that was working fine across all browser stopped working totally in IE10.
We ...
2
votes
0answers
109 views
Unicode that is not recognize properly
I'm using in Unicode in my application using
for(var i:int=0;i<16;i++)
{
for(var j:int=0;j<16;j++)
{
button = new Button();
button.x = j*35+10;
button.y = i*20+10;
...
2
votes
0answers
122 views
ItemRenderer shows through ItemEditor
On an mx:datagrid, I use custom itemrenderer and itemeditor.
When cell is on edit mode, Itemeditor separator is visible inside itemeditor.
So it isn't beautiful, and difficult to read what you write.
...
2
votes
0answers
95 views
FDT - Create a Project with existing source files, assets, folders etc [SOLVED]
I am using FDT 5 and would like to create a new project with already existing source files and assets. When I start up the Project Wizard (New->FDT Project) I browse to the folder I want to make as ...
2
votes
0answers
202 views
Use custom URL scheme to send PDF url to iBooks application using as3 and FlashBuilder 4.6?
I'm currently developing an iOS specific app using Adobe FlashBuilder 4.6 and Air 3.4 and all is going well...
My only problem is that the application will be targeting a large collection of PDF ...
2
votes
0answers
112 views
Flascc/Alchemy/Emscripten analog for IL/.NET?
So there is Flascc/Alchemy, Emscripten tha turn C/C++ into AS3 and JS. AS3 and JS are grate but is there any such nice compiler for IL/.NET (llvm-to-.net)?
2
votes
0answers
115 views
Why does Flash Builder 4.6 Profiler seem to leak Strings, whereas Debug mode GC's as expected
I've been embroiled in a memory leak hunt and while unit profiling my classes I noticed that the String class endlessly accumulates (eating up over 90% of the memory in my sizable app). Luckily this ...
2
votes
0answers
163 views
Ooyala AS3 API strange issue
I have got a strange issue with Ooyala AS3 API.
Below code works perfect, I have got a requirement to remove adSetCode so when I remove params['adSetCode'] = param.adSetCode; from ...
2
votes
0answers
522 views
Netstream audio playing twice
I am new to flash (this is the first time I've ever used it or actionscript) and I'm trying to make a video player. The video player gets params from the embed code and pulls the videos from a folder ...
2
votes
0answers
581 views
No libraries were linked as Runtime Shared Libraries (RSLs)
I am create a flash application for the chatting purpose and every thing going on perfect but there is only one warning when i use to publish. The warning is thrown as i subjected the title i.e.
"No ...
2
votes
0answers
178 views
Adobe Air badge file not working after Air 3.4 release in nonDebug players
Please read the subject.
All badge installers in the internet are now not working now in non Debug FP(11.3).
Including mine too.
What does that mean?
Simple example:
...
2
votes
0answers
159 views
How to get file modification date asynchronously in actionscript3
I am trying to poll a file to check if it has been modified or deleted on disk.
In case of slow network if I use the File exists or modificationDate properties, the application will hang.
Is there ...
2
votes
0answers
59 views
Creating YAML configuration files (parsed via as3yaml) instead of XML, in an Actionscript project
Has anyone used the as3yaml YAML parser for Actionscript? I have an Actionscript application (authored in the Flash IDE, not Flash Builder), which parses an XML configuration file on startup. I'd like ...
2
votes
0answers
118 views
crackle appears when fading sound as3
I am using tweenlite to fade out sound, the fade out effect itself is working well, but it seems that everytime soundTransform is applied to soundChannel with tweenlite some noise like a crackle ...
2
votes
0answers
117 views
How Adobe Flash AEC works? + AEC partially working
I'm trying to build a simple red5-flash application, where two people can converse with each other. I have two flash players for persons A and B, each with a publisher part (that takes the live webcam ...
2
votes
0answers
383 views
AIR iOS stage video - prevent the zoom effect
I'm using stageVideo with AIR for iOS successfully but have noticed that when the video is started it scales itself up fro 0% to 100% centrally (similar to how an iOS app would launch).
Would anyone ...
2
votes
0answers
361 views
VideoEvent not working in Flash Player 10.2
VideoEvent doesnot work in flash player 10.2
import fl.video.VideoEvent
addEventListener(VideoEvent.READY, ready);
Compiler Error: ( For Flash Player 10.2, works fine in Flash Player 9)
1119: ...
2
votes
0answers
2k views
AS3 / AIR / Mobile - Save bitmap to file
I have seriously looked everywhere but can't find a solution.
My app easily saves UTF bytes as XML files in the allowed cache locations for both iOS and Android.
But I can't work out how to save ...
2
votes
0answers
132 views
Urgent- Issues in specifying tracks while updating a playlist on soundcloud
I am using Soundcloud AS3 library to build an application. I am able to create/get-all playlists for a user. But while updating an existing playlist, I don't understand the syntax by which I can ...
2
votes
0answers
671 views
URLRequest with Accept header: gets put in request body, not overrides default request header
A collaborative project has a Flash application which makes use of a sort of API (a work-in-progress, bunch of related PHP method). The API used to serve data in JSON, but now we require support for ...
2
votes
0answers
825 views
How do you load a WAV file with Sound.loadPCMFromByteArray()?
Based on the resource here (defining the structure of a WAV file), I was able to get the audio data between the 44th byte and near the end of the file (some extra meta-data exists at the end which is ...
2
votes
0answers
196 views
Displaying all XMP tags
I am trying to get all The XMP data from a Image, with the XMP Library from Adobe.
I will actually like to retrieve the information of the image, so i believe i have to retrieve data from the name ...
2
votes
0answers
319 views
issue with tabIndex when adding ComboBox to form
I built a form with three movieclips with buttonMode=true (they act as checkboxes but they have a particular graphics, so I didn't use the relative component) and some regular input textfields. The ...
2
votes
0answers
817 views
ByteArray to Vector = AS3 RangeError: Error #2004: One of the parameters is invalid
I'm trying to extract fft data from an mp3 without playing it. I'm using AS3 and CS5. I found a great real-time Spectrum Analyzer here, but it only works with the microphone. I also found a great ...
2
votes
0answers
225 views
Migration of a stand alone Flex Application / WindowedApplication into Box or Group
In order to integrate several Air Applications into one.
I tried the way by migration the old <s:WindowedApplication> / <s:Application> into <s:Group> or <mx:Box>.
By doing ...
2
votes
0answers
294 views
Best Method for AS3 Data Services Update after Underlying Database Schema Changed?
I am using Flash Builder 4 to write Flex app. I originally used its php data service wizard to create the php class and related valueObject that interface with my database.
Now when I change my ...
2
votes
0answers
643 views
Working example of NetStream.videoSampleAccess?
I'm currently building a browser-based application using Stratus. So far everything is working fine and I understand how it all works.
The problem is when I try to manipulate the pixel data of the ...
1
vote
0answers
16 views
Running Javascript function on the server from AS3 client?
Is it possible to run native Javascript functions on server side from AS3 client AIR app?
I have a lot experience in running Javascript methods embedded/loaded on HTML where SWF is also embedded and ...
1
vote
0answers
12 views
upload image on twitpic using as3
how I can upload image on twitpic using as3 and flash professorial cs6
and i try the code below and nothing happened
Thank's in advance
import flash.net.FileReference;
import flash.filesystem.File;
...
1
vote
0answers
23 views
Externalnterface calls not working in mobile browsers
I have an swf with a simple ExternalInterface call. The swf has been created using Flex.
ExternalInterface.call("alert","HelloWorld");
This runs fine on my machine (without localhost too).
But ...
1
vote
0answers
36 views
Flex - change in Timezone only picked up on Minutes Change. Why?
I have a timer running, that every second, checks the systems Date/Time, and updates
the date displayed on the application.
If I change the system time, the app updates the next second. If I change ...
1
vote
0answers
25 views
AS3 Flash Player on Chrome remembers hardware settings even when hardware is not present
I am making a voice chat application and am accessing the microphone through the Flash Player. I check for the microphone via the Microphone.getMicrophone() function.
If the microphone is not ...
1
vote
0answers
54 views
Facebook get username and write it to database
I'm creating flash game for Facebook. I need to get Facebook username and write It to mysql database, but here I have problem.
This is my code to show game and get username from Facebook. fb.php
...
1
vote
0answers
53 views
AS3/AIR/IOS recording a video on iphone and save it into native gallery directly WITHOUT native UI
I'm developing an APP on iphone using as3,flash builder.
I'd like to know is this possible to record a video and save it into native gallery directly WITHOUT bump out the camera UI.
1.I've try ...
1
vote
0answers
28 views
line connector for graphics objects
I'm designing a flex application,with that help of this application one can design uml, electronics,er diagrams etc.
I am using group as main container,
<s:Group id="designArea" width="100%" ...
1
vote
0answers
37 views
Localizing DateSpinner month names - Flex Mobile
I want to translate Flex Mobile DateSpinner month names into Turkish ones but I couldn't cause of lacking locale support for turkish language, and even when I created a new locale using copylocale ...
1
vote
0answers
17 views
Creating a dynamic key for an object at creation with ASC2.0 compiler
t's always been a bit of an irritation for me (I do more than a bit of coding in Python too, and the way that deals with dict/object types is much clearer and better), but prior to ASC2.0, I was ...
1
vote
0answers
50 views
How can I use Flex RemoteObjects with NodeJS?
I have a application builded in Flex/AS3, and I use a server LAMP as a proxy/gateway.
I use ZendAMF to make the conversation between Flex <=> PHP.
Now I need to build another server ...
1
vote
0answers
45 views
Creating a custom DPIClassification in Flex App for new 1920x1080 Devices?
With the introduction of new mobile devices with around 440dpi screens like the Samsung Galaxy S4, I'd like to create a custom DPIClassification of 480 so I can support these devices properly. I ...
1
vote
0answers
33 views
Movieclip or vector data for flashpunk?
Hello is there a way to use a movieclip for a graphic in the flashpunk library?
Normally we would embed a .png image and declare it as a class and then we would make the graphic of the entity class ...
1
vote
0answers
39 views
How to lookup screen-bounded tile indices in a rotated tilemap?
Normally, an Axis-aligned (rotation = 0) tilemap is easy to iterate through the visible tiles on the screen.
But how do you "cull" or filter the tile indexes when the entire tilemap is rotated?
...
1
vote
0answers
40 views
Emit a class at runtime in AS3 with fast memory opcodes?
There are a couple of libraries listed below, that allow you to dynamically generate an ActionScript class by emitting the ABC (Actionscript Byte Code) tags necessary and loading the generated IL as ...
1
vote
0answers
70 views
ios video playback using flash builder / flex
Hi I am trying to create an iphone app that streams a video from a remote server (that automatically creates video files) , I'm using flash builder 4.7, mobile flex.
My expertise with fb / flex is ...
1
vote
0answers
57 views
Flash Builder Code completion for events
When I'm using a built-in EventDispatcher the code completion will show a list of all events that are fired by the class, example:
How can I achieve the same for my own classes, for example I might ...



