active questions tagged as3 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T20:22:49Zhttp://stackoverflow.com/feeds/tag/as3http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1843821/how-to-turn-an-existing-color-image-into-a-black-white-image0how to turn an existing color image into a black-white image ?algro2009-12-03T23:26:35Z2009-12-04T17:46:34Z
<p>What diffrent approaches exists out there in actionscript 3.0 ?
I found this library: <a href="http://code.google.com/p/mojocolors/" rel="nofollow">mojocolors</a>
But this is more for graphics-color I guess…</p>
<p>Thx</p>
http://stackoverflow.com/questions/1838951/dynamically-adding-movieclip-to-stage-as30Dynamically adding movieclip to stage as3jamie holliday2009-12-03T10:10:29Z2009-12-04T06:04:22Z
<p>I have buttons on the stage (run1_btn - run5-btn) that when clicked adds a movie clip to the stage.(hand) The movie clip contains a few frames of animation. When a button is clicked the movieclip gets added but the animation is already finished.
I thought that when the mc got added to the stage then the animation would start, but this does not seem to be the case.
Does anyone know a way around this.</p>
<p>Here is my code:</p>
<pre><code>var handSlap:hand;
handSlap = new hand();
//event listeners
newPig.run1_btn.addEventListener(MouseEvent.CLICK, clickArea);
newPig.run2_btn.addEventListener(MouseEvent.CLICK, clickArea);
newPig.run3_btn.addEventListener(MouseEvent.CLICK, clickArea);
newPig.run4_btn.addEventListener(MouseEvent.CLICK, clickArea);
newPig.run5_btn.addEventListener(MouseEvent.CLICK, clickArea);
//functions
function clickArea(evtObj:MouseEvent):void
{
trace(evtObj.target.name);
addChild(handSlap);
handSlap.x =200;
handSlap.y=200;
}
</code></pre>
http://stackoverflow.com/questions/1718301/add-tween-remove-multiple-instances-of-the-same-mc-tweenlite0Add/Tween/Remove - Multiple instances of the same MC (Tweenlite)askon2009-11-11T21:45:03Z2009-12-04T05:49:06Z
<p>I'm trying to create a simple loop that adds a random number of stars, fades them out and removes them.</p>
<p>The script I've come up with does everything but remove them, and perhaps I need a less on adding children to a stage.</p>
<p>Here's what I come up with</p>
<pre><code>import flash.display.*;
import com.greensock.*;
import com.greensock.easing.*;
// timer setup
var timer:Timer=new Timer(randomNumber(500,1000));
timer.addEventListener(TimerEvent.TIMER,run_stars);
timer.start();
// Random number generator
function randomNumber(low:Number=NaN, high:Number=NaN):Number {
var low:Number = low;
var high:Number = high;
if(isNaN(low)) { throw new Error("no low number"); }
if(isNaN(high)) { throw new Error("no high number"); }
return Math.round(Math.random() * (high - low)) + low;
}
// randomly adding stars on timer
function run_stars(event:TimerEvent):void {
// random num of stars
for (var i:Number=1; i<=randomNumber(2,7);i++) {
var star:m_star = new m_star();
addChild(star);
// This is where my problem starts, I'm adding the same movie clip multiple times without any way to identify and remove.
star.x = randomNumber(0, stage.stageWidth);
star.y = randomNumber(0,stage.stageHeight/2);
TweenLite.to(star, randomNumber(0.5,1), {alpha:0.25, onComplete:removeStar()});
}
timer.delay = randomNumber(500,1000);
timer.start();
}
function removeStar() {
removeChild(star);
//this would be where I attempt to remove a star but because they aren't unique it will never work, and the star movie clip is called inside of the function so it cant even see it.
}
stop();
</code></pre>
<p>I need a way to make the movie clips unique so I can tell my oncomplete function to remove the property clip, if I don't do this the movie will eventually slow down and crash because of so many (invisible) movieclips.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1771888/as3-proportionally-scaling-external-image0AS3 proportionally scaling external imageDeaconDesperado2009-11-20T17:05:18Z2009-12-04T05:40:37Z
<p>Currently I am using a for loop to dynamically load XML images and place them in a grid as thumbnails. I have the arrangement set and all the data is loading smoothly, but now I need to make the images scale to small 100px x 100px thumbs in small container movieclips. My code is as follows.</p>
<pre><code> import gs.*;
import gs.easing.*;
var bttnHeight:Number = 20;
var select:Number = 0;
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.addEventListener(Event.COMPLETE, showXML);
xmlLoader.load(new URLRequest("testxml.xml"));
var list_mc:Array = new Array();
function showXML(e:Event):void {
XML.ignoreWhitespace = true;
var nodes:XML = new XML(e.target.data);
var gallcount = nodes.gallery.length();
var list_mc = new listitem();
//Generate menu to select gallery
function populateMenu():void {
var spacing:Number = 0;
for (var i=0; i<gallcount; i++) {
list_mc[i] = new listitem();
list_mc[i].name = "li" + i;
list_mc[i].y = i*bttnHeight;
list_mc[i].gallname.text = nodes.gallery[i].attributes();
menu_mc.addChild(list_mc[i]);
list_mc[i].addEventListener(MouseEvent.ROLL_OVER, rollover);
list_mc[i].addEventListener(MouseEvent.ROLL_OUT, rollout);
list_mc[i].buttonMode = true;
list_mc[i].mouseChildren = false;
}
menu_mc.mask = mask_mc;
}
//list_mc.mask(mask_mc);
var boundryWidth = mask_mc.width;
var boundryHeight = mask_mc.height;
var diff:Number = 0;
var destY:Number = 0;
var ratio:Number = 0;
var buffer:Number = bttnHeight*2;
function findDest(e:MouseEvent):void {
if (mouseX>0 && mouseX<(boundryWidth)) {
if (mouseY >0 && mouseY<(boundryHeight)) {
ratio = mouseY/boundryHeight;
diff = menu_mc.height-boundryHeight+buffer;
destY = Math.floor(-ratio*diff)+buffer/2;
}
}
}
var tween:Number = 5;
//This creats the scroll easing
function moveMenu() {
if (menu_mc.height>boundryHeight) {
menu_mc.y += (destY-menu_mc.y)/tween;
if (menu_mc.y>0) {
menu_mc.y = 0;
} else if (menu_mc.y<(boundryHeight-menu_mc.height)) {
menu_mc.y = boundryHeight-menu_mc.height;
}
}
}
function rollover(e:Event):void {
TweenLite.to(e.currentTarget.li_bg, .4, {tint:0x334499});
}
function rollout(e:Event):void {
TweenLite.to(e.currentTarget.li_bg, .4, {removeTint:true});
}
stage.addEventListener(MouseEvent.MOUSE_MOVE, findDest);
stage.addEventListener(Event.ENTER_FRAME, moveMenu);
populateMenu();
select = 0;
//Generate thumbnails
function genThumb():void {
var photos = nodes.gallery[select].photo;
var thumbframe:Array = new Array();
var row = 0;
var column = 0;
var loaderArray:Array = new Array();
for (var i=0; i<photos.length(); i++) {
thumbframe[i] = new Sprite;
thumbframe[i].graphics.beginFill(0x0000FF);
thumbframe[i].graphics.drawRect(0,0,100,100);
thumbframe[i].graphics.endFill();
thumbframe[i].y = row;
thumbframe[i].x = column;
loaderArray[i] = new Loader();
loaderArray[i].load(new URLRequest(photos[i].text()));
trace(loaderArray[i].height);
var index = i+1;
container_mc.addChild(thumbframe[i]);
if (index%5 == 0) {
row=row+120;
column = 0;
} else {
column=column+120;
}
thumbframe[i].addChild(loaderArray[i]);
}
}
genThumb();
}
</code></pre>
<p>Both the loaders and the containers are in respective arrays. The images load correctly, but I am at a loss for how to scale them (ultimately I'd like to integrate a tween to animate as they load as well if possible.)</p>
<p>Thanks in advance for any aid!</p>
http://stackoverflow.com/questions/1820658/dependency-injection-framework-suitable-for-as3-games-and-regular-rich-media-site1Dependency Injection framework suitable for as3 games and regular rich media sitesunknown (google)2009-11-30T15:55:18Z2009-12-04T04:49:36Z
<p>Hi all,
Doing a bit of research on dependency injection frameworks for AS3 to retain loose-coupling of classes and boost our re-usability of code. I've been looking heavily at RobotLegs. There's a whole lot I still don't understand about the framework but it seems ideal for our regular Rich Media apps but has anyone used this framework for AS3 games? if so is it a good framework for games or should I be looking for another framework? I've heard that the MVC pattern isn't ideal for game design but would love to be set straight on this :)</p>
<p>I'd love to hear from anyone who's used a dependency injection framework for games, how it faired for them!</p>
<p>Cheers,
Anton</p>
http://stackoverflow.com/questions/1820966/greensock-library-which-is-the-best-option-tweenlite-tweennano-tweenmax-time1Greensock library, which is the best option, TweenLite, TweenNano, TweenMax, TimelineMax?coderex2009-11-30T16:48:23Z2009-12-04T04:42:52Z
<p>Hi all,
i am new in flash development, i heard that Greensock lib is the best one. But when am trying to download its really confusing. there are a lot of names like </p>
<pre><code>* TweenNano
* TweenLite
* TweenMax
* TimelineLite
* TimelineMax
* Tweening Platform v11
</code></pre>
<p>Which is the best or full featured lib.. where do i get the download link for the complete package or. Please guide me if am wrong. :(</p>
http://stackoverflow.com/questions/1839831/opennodes-in-dataprovider-of-advanced-data-grid-is-empty0OpenNodes in dataprovider of Advanced Data Grid is emptymartin2009-12-03T13:21:34Z2009-12-03T13:21:34Z
<p>I am having a hierarchical ArrayCollection and set it as a dataprovider to an ADG</p>
<pre><code><mx:AdvancedDataGrid>
<mx:dataProvider>
<mx:HierarchicalData source="{arrCol_groupedData}"
childrenField="accounts" id="hierarchicalData"/>
</mx:dataProvider>
<mx:AdvancedDataGrid>
</code></pre>
<p>Why is the openNodes array always empty? (I need it to preserve the open nodes after resfreshing the data)</p>
<p>It worked fine with a GroupingCollection, when Flex made the grouping out of a flat data.</p>
<p>Any ideas?</p>
<p>Thx,
martin</p>
http://stackoverflow.com/questions/1834525/race-condition-firing-events-in-as30Race condition firing events in AS3crispclean2009-12-02T17:30:56Z2009-12-03T04:56:05Z
<p>Hello</p>
<p>I have some troubles firing and removing events in the right chronicle order. The code below gives the following output:</p>
<ul>
<li>save poster into db, and dispatch event</li>
<li>calling service, dispatch event removed = false</li>
<li>calling service, dispatch event removed = false</li>
<li>calling service, dispatch event removed = true</li>
<li>save poster into db, and dispatch event</li>
<li>save poster into db, and dispatch event</li>
</ul>
<p>of course this should be more something like:</p>
<ul>
<li>save poster into db, and dispatch event</li>
<li>calling service, dispatch event removed = true</li>
<li>save poster into db, and dispatch event</li>
<li>calling service, dispatch event removed = true</li>
<li>save poster into db, and dispatch event</li>
<li>calling service, dispatch event removed = true</li>
</ul>
<p>Can someone help me with this? I'm running out of ideas on how to tackle this.</p>
<p>thx!</p>
<pre><code> for(var i:int = 0;i< 3;i++){
createPoster();
}
function createPoster(){
Main.db.savePoster();
Main.db.addEventListener(Config.evt_SAVEPOSTER_READY, callService);
}
function callService(){
Main.db.removeEventListener(Config.evt_SAVEPOSTER_READY, callService);
}
</code></pre>
http://stackoverflow.com/questions/1829778/flex-swf-assets-loaded-into-flash-swf-at-runtime-within-same-applicationdomain0Flex SWF assets loaded into Flash SWF at runtime within same ApplicationDomainXyre2009-12-01T23:51:18Z2009-12-02T17:17:40Z
<p>I'm trying to load a swf compiled by the Flex SDK into a swf exported by the Flash IDE and instantiate the assets by way of getDefinition(). Normally this works fine with assets exported from the Flash IDE then loaded into another swf also from Flash IDE.</p>
<p>This is how I could normally do this using only the Flash IDE:<br>
Loader - > Using same ApplicationDomain - > getDefinition(class)</p>
<p>Now, using the '<strong>Test</strong>.as' compiled from Flex SDK using the [Embed] metadata tag:<br>
Loader - > Using same ApplicationDomain - > getDefinition("<strong>Test</strong>_" + class)</p>
<p>The problem is I'd rather not have to keep track of the asset libraries loaded to prefix the class name I'd like to get (('<strong>Test</strong>_" + class) vs (class)). Is there any way of doing this without referencing the library the class is being pulled from or without accessing the original loader? This way I don't need to know which swf the asset is coming from, just the class name that I could instantiate from the current ApplicaitonDomain.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1824848/how-can-i-bend-a-a-display-object0How can I bend a a display object ?Radu2009-12-01T08:53:19Z2009-12-02T09:45:08Z
<p>I want to make collage,</p>
<p>Example : <a href="http://www.as3.ro/p1%5Fanim4.swf" rel="nofollow">http://www.as3.ro/p1%5Fanim4.swf</a> (1.4 mb);</p>
<p>I want to bend images using as3.</p>
http://stackoverflow.com/questions/1751813/as3-deleting-a-shape-via-code0[AS3] Deleting a shape via codeConor2009-11-17T21:09:40Z2009-12-02T06:21:45Z
<p>Pretty basic question here, but its still got me a little confused..</p>
<p>I have an object(navigation menu bar) that I want to change the colors on with code, so in an updateColor function, I get the bounds of the object (which is a drawing shape contained in a movieclip) and redraw a new shape on top of it with the new color, but I've noticed that the last shape still exists behind this redraw.</p>
<p>I tried using obj.graphics.clear(); before the redraw but that didn't get rid of the original shape. Is there another command that I'm overlooking?</p>
http://stackoverflow.com/questions/1763580/as3-accessing-custom-class-public-functions-from-a-movieclip-on-a-timeline1AS3: Accessing custom class public functions from a MovieClip on a timelinePJ Palomaki2009-11-19T14:16:16Z2009-12-02T06:18:17Z
<p>Hi,</p>
<p>I've got a AS3 program with a Main.as custom class.</p>
<p>In this class I load an instance of a 'menu' movieclip which has simpleButton instances inside... How do I access the Main class public functions by the menu movieclip buttons?</p>
<p>I.e. Menu button -> gotoPage(5); (which is a Main public function)</p>
<p>If I try to access the Main function with the above statement, it gives</p>
<p>"1180: Call to a possibly undefined method gotoPage.</p>
http://stackoverflow.com/questions/1824553/flash-as3-font-embed-causes-positioning-error-with-chalet-font0Flash/AS3 > Font Embed causes positioning error with Chalet Fonttonejac2009-12-01T07:29:03Z2009-12-01T08:21:32Z
<p>I'm trying to embed the Chalet font to some dynamic text fields and it is causing the vertical position of the text to jump up above the actual textfield. (<a href="http://www.tonyjacobson.com/chaletFontProblem.png" rel="nofollow">see screenshot</a>) Is Chalet a messed up font? (or more likely, Flash is sooo screwed up in handling fonts) This font displays absolutely fine in Photoshop and Illustrator.</p>
<p>Anyone have some advice on how to get this font to display properly in Flash?</p>
http://stackoverflow.com/questions/1824374/opening-print-html-popup-from-flash0Opening Print-HTML-Popup from Flash?sascha2009-12-01T06:33:18Z2009-12-01T07:26:08Z
<p>Hi,
is it somehow possible to open a HTML popup window from within Flash <strong>and</strong> have it receive text data from Flash which should be printed ... and this all only in AS3 and Javascript (since no server-side scripting is available)?</p>
http://stackoverflow.com/questions/1814833/how-to-dynamically-load-a-progressive-jpeg-jpg-in-actionscrip-3-using-flash-and-k3How to dynamically load a progressive jpeg/jpg in actionscrip-3 using Flash and know it's width/height before it is fully loaded.didibus2009-11-29T06:35:04Z2009-12-01T04:17:09Z
<p>Hi,</p>
<p>I am trying to dynamically load a progressive jpeg using actionscript 3. To do so, I have created a class called Progressiveloader that creates a URLStream and uses it to streamload the progressive jpeg bytes into a byteArray. Everytime the byteArray grows, I use a Loader to loadBytes the byteArray. This works, to some extent, because if I addChild the Loader, I am able to see the jpeg as it is streamed, but I am unable to access the Loader's content and most importantly, I can not change the width and height of the Loader.</p>
<p>After a lot of testing, I seem to have figured out the cause of the problem is that until the Loader has completely loaded the jpg, meaning until he actually sees the end byte of the jpg, he does not know the width and height and he does not create a content DisplayObject to be associated with the Loader's content.</p>
<p>My question is, would there be a way to actually know the width and height of the jpeg before it is loaded?</p>
<p>P.S.: I would believe this would be possible, because of the nature of a progressive jpeg, it is loaded to it's full size, but with less detail, so size should be known. Even when loading a normal jpeg in this way, the size is seen on screen, except the pixels which are not loaded yet are showing as gray.</p>
<p>Thank You.</p>
http://stackoverflow.com/questions/1344859/as3-accessing-library-items-from-outside-the-document-class0AS3 - Accessing Library Items from outside the Document classsol2009-08-28T03:16:07Z2009-11-30T22:05:27Z
<p>How do you access Library items from classes other than the document class?</p>
<p>For example, if I create a movie clip in Flash and Export it for Actionscript with the name Foo, I can do this in the document class:</p>
<pre><code>var f = new Foo();
this.addChild(f);
</code></pre>
<p>And it appears on the stage, as it should. But I need to be able to create other instances of this object from other classes. If I use the same code above in SomeOtherClass.as, I get nothing on the stage, obviously because this class doesn't know about the Foo object in the library.</p>
<p>I know I probably need to use appplicationDomain.getDefinition somehow. This doesn't work:</p>
<pre><code>var a = new ApplicationDomain(ApplicationDomain.currentDomain);
var foo: Class = a.getDefinition ( "com.me.CustomClass" ) ;
var f = new foo( ) ;
addChild ( f ) ;
</code></pre>
<p>TypeError: Error #1007: Instantiation attempted on a non-constructor.</p>
http://stackoverflow.com/questions/1729404/flash-as3-preloader-error-1120-access-of-undefined-property-preloader0Flash AS3 Preloader error: 1120 access of undefined property, preloader?Kris2009-11-13T14:06:58Z2009-11-30T16:41:47Z
<p>I'm a complete newbie to this, I've been watching tons of tutorials, reading tutorials, reading the Adobe site, etc... The last time I programmed was BASIC on Apple IIe... </p>
<p>I'm trying to create a preloader that my html page will link to, and when the main .swf file (Portfolio.swf) is loaded, it will display and stop (it's a print swf, so I don't want it to "Play" at 24 frames/sec.)</p>
<p>I have errors in my AS3 of 1120, which I will copy the code here:</p>
<p><hr></p>
<pre><code>stop();
var loader : Loader = new Loader ();
loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, progressHandler);
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
loader.load(new URLRequest ("Portfolio.swf"));
function progressHandler(e:ProgressEvent) {
var percent:Number=Math.round(e.bytesLoaded*100/e.bytesTotal);
preloader.gotoAndStop(percent);
}
function completeHandler(e:Event) {
this.addChild(loader);
this.removeChild(preloader);
}
</code></pre>
<p><hr></p>
<p>And here's what I uploaded to my site so far to test:</p>
<p><a href="http://krisbunda.com/templates/portfolio/Portfolio.html" rel="nofollow">http://krisbunda.com/templates/portfolio/Portfolio.html</a></p>
<p>as you can see, it just loops the progress bar, and doesn't load the "Portfolio.swf" file afterward. The actual "Portfolio.swf" can be viewed on this page:</p>
<p>[actually, I'm new, can't post more than 1 hyperlink... you can find the Portfolio on the root of my site.]</p>
<p>it takes a while to download the 6MB+ file, which is why I would like a preloader.</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1817189/creating-a-repeatable-random-looking-distribution-of-objects-in-flash0Creating a repeatable, random looking distribution of objects in FlashGerard2009-11-29T23:51:28Z2009-11-30T05:17:36Z
<p>I'm trying to scatter movie clips around the stage using Actionscript 3 in a way that looks as though they were randomly placed there, like photographs spread out on a table top.</p>
<p>I tried using a spiral type arrangement, but found it too uniform, and also a circular distribution, but found that too random.</p>
<p>The other factor is that i'd like the positions of the mc's to be repeatable, so that when a user returns to the flash movie, they are able to find the clips where they were last time.</p>
<p>Anyone got any expertise/advice with this type of stuff?</p>
http://stackoverflow.com/questions/1816672/flash-cs4-am-i-missing-something-stop-on-movieclip-not-working-in-as30Flash CS4 - Am i missing something? Stop() on movieclip not working in AS3.Kohan2009-11-29T20:32:08Z2009-11-29T20:58:16Z
<p>I have a movie clip on the main stage, and in that movie clip are two frames, each with a <code>stop();</code> action.</p>
<p>When i run the program the movieclip seems to be ignoring these actions and will flick beween these two frames. I am new to using AS3 and was wondering if i am doing something wrong?</p>
<p>If i change the publish settings to AS2, this behaviour is not happening.</p>
<p>TIA, Kohan</p>
<p>Edit : Fixed...</p>
http://stackoverflow.com/questions/1816189/how-does-jaycut-online-video-editing-tool-work0How does Jaycut (online video editing tool) work?John2009-11-29T17:49:40Z2009-11-29T18:01:16Z
<p><a href="http://www.jaycut.com" rel="nofollow" title="Jaycut">Jaycut</a> is a flash-based online video editing tool. It's surprisingly capable, what I'm wondering is how they achieve this in Flash/Flex. They allow mixing of video, audio and applying transitions and that seems a lot to do in AS3. I wondered if perhaps the mixing is done on the server when you click "preview video", but even then it still seems very quick.</p>
<p>Any thoughts? AS3 developers, how would you approach this?</p>
<p>EDIT: <a href="http://moviemasher.com" rel="nofollow">MovieMasher</a> does similar things, and seems to suggest they do it all client-side.</p>
http://stackoverflow.com/questions/1813532/as3-should-private-variables-have-an0AS3: should private variables have an _Dan2009-11-28T19:33:28Z2009-11-29T17:32:06Z
<p>I thought that AS3 now has private abilities added. So why should I still preface private variables with an underscore?</p>
<pre><code>private var _privVar:String;
</code></pre>
http://stackoverflow.com/questions/1752164/rtmp-stream-of-av-plays-only-audio-no-video0RTMP stream of a+v plays only audio, no videowebwise2009-11-17T22:01:53Z2009-11-29T12:26:17Z
<p>In Flash, AS3, I am using NetConnection to connect to a RTMP server, then I use NetStream to play a video+audio stream.</p>
<p>I attach the stream (attachNetStream) to a flash.media.Video instance that is added to stage (double checked that it is ON the stage) and play it, but all I get is the sound of the stream that's being played - no video is displayed.</p>
<p>Note that even though I cannot see the video, when I listen to the onMetaData of the stream I can get plenty of information about the video such as width, height, FPS (changes during playback as if a video is shown), number of decoded frames.</p>
<p>Does anybody have an idea how can I make the video work too?</p>
http://stackoverflow.com/questions/1700268/best-method-to-scale-dropshadows-in-as30Best method to scale DropShadows in AS3?Andy Moore2009-11-09T10:40:52Z2009-11-28T07:44:06Z
<p>I'm creating a flash application that makes use of both the dropShadow filter and scaling of various sprites.</p>
<p>And therein lies <a href="http://livedocs.adobe.com/flex/3/langref/flash/filters/DropShadowFilter.html" rel="nofollow">the problem</a>:</p>
<blockquote>
<p>This filter supports Stage scaling.
However, it does not support general
scaling, rotation, and skewing. If the
object itself is scaled (if scaleX and
scaleY are set to a value other than
1.0), the filter is not scaled.</p>
</blockquote>
<p>By happenstance the lack of rotation support is beneficial to me, but I really badly need the scaling to work. What's the best method for doing this?</p>
<p>Can I extend the DropShadow object and "make it" update?</p>
<p>Shall I make my own custom object that just recreates itself with a new .distance value to match the zoom level?</p>
<p>What's the best method to use (with performance in mind)?</p>
http://stackoverflow.com/questions/1806572/how-to-handle-httpstatus-response-201-with-as3-flash-swfupload0How to handle HTTPStatus Response 201 with AS3 / Flash / SWFUploadPraveen Sharma2009-11-27T03:05:29Z2009-11-27T03:05:29Z
<p>Hey all.</p>
<p>I'm using SWFUpload on a Rails site to allow for MP3 Uploads direct to Sound Cloud. To avoid having to first upload a large file to my server and push to Sound Cloud, I'm hitting their API directly via SWFUpload, passing necessary OAuth token data. </p>
<p>Everything works - EXCEPT - Flash can't handle the HTTP response code that Sound Cloud's API returns (201). This ALWAYS triggers an unhandled IO Error with Flash. Even though SWFUpload allows me to override that in the JS, it breaks any response data (the URI to the uploaded file). </p>
<p>Does anyone know how I could somehow intercept the 201 code so that I can make it a 200 code for flash? I'm at a loss at how I can avoid this IO Error. I've tried try/catch statements around everything and have even recompiled SWFUpload to try new things to no avail. Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/1805755/falling-object-in-box2d-should-rotate-due-to-centre-of-mass1Falling object in Box2D should rotate due to centre of mass?Chris Porter2009-11-26T21:32:57Z2009-11-26T21:47:06Z
<p>I'm trying to simulate a falling balloon in Box2DAS3. What is important is that balloon falls the such that the bottom part were you blow it up rotates towards the bottom if it's knock sideways or is dropped at an angle.</p>
<p><img src="http://lh4.ggpht.com/%5FgjsCWAV%5FCZc/Sw7zqHahTJI/AAAAAAAAC3s/YIJka4AsM5s/s144/Untitled.jpg" alt="alt text"></p>
<p>I've tried offsetting the center of mass of the body and also joining two bodies together with the denser one representing the tie. In both cases the body falls at the same angle without rotating.</p>
http://stackoverflow.com/questions/1797796/uploading-video-using-the-youtube-api-via-flash-as30Uploading video using the YouTube API via Flash AS3Oliver2009-11-25T15:42:29Z2009-11-25T18:32:00Z
<p>Hi,
I'm trying to work out how to upload videos to YouTube using the api from flash. There seems to be libraries available for doing this with php, ruby, java etc. but not AS3.</p>
<p>Can anyone point me in the right direction on how to do this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1784864/flash-as3-how-to-gradually-limit-rotation-of-an-object-influenced-by-y-position0Flash AS3: How to gradually limit rotation of an object influenced by y position of mouseeb_Dev2009-11-23T17:57:21Z2009-11-25T08:40:21Z
<p>Hi,</p>
<p>I have created a flash app in which there is a circle with circles plotted along it's circumference, it is rotated when the mouse is moved up or down. The rotation is drawn directly from the y position of the mouse pointer. What I would like to do is grade the movement some how so that the further down the mouse pointer goes the less impact on rotation the movement has.</p>
<p>My current code is like this:</p>
<pre><code>myCircle.rotationZ = e.localY;
</code></pre>
<p>Is there some form of math formula I could use which would reduce the amount of rotation the greater the y position of the mouse position?</p>
<p>Thanks,</p>
<p>eb_dev</p>
http://stackoverflow.com/questions/1788235/why-cant-i-access-dynamic-text-within-a-cs4-compiled-swc1Why can't I access dynamic text within a CS4 compiled SWC?cellis2009-11-24T06:31:03Z2009-11-24T17:46:47Z
<p>I have a movieclip created in CS4. I export that into my Flex Project's /lib and then try to access the text. All the textfields have ids, embedded text, and show up in intellisense. But when i run the project, the textfield is blank. What is going on?</p>
<p><strong>Edit:</strong> It appears to only not work when the text is <strong>embedded</strong>. Non embedded text works fine.</p>
http://stackoverflow.com/questions/1790071/flex-chart-horizontal-line-at-0-when-having-negative-values0Flex Chart : Horizontal line at 0 when having negative valuesmartin2009-11-24T13:29:23Z2009-11-24T16:02:35Z
<p>Hi all,</p>
<p>I have a Flex Column Chart, which shows bars with each positive and negative values.
I only want to have a horizontal line at 0 to distinguish between positive and negative values.</p>
<p>I turned off all the axis.</p>
<p>How could I achieve to get this line?</p>
<p>Thanks,
Martin</p>
http://stackoverflow.com/questions/1676089/how-to-avoid-flickering-when-changing-the-source-of-an-mximage-in-flex2how to avoid flickering when changing the source of an mx:Image in flexreinier2009-11-04T19:37:10Z2009-11-24T07:45:48Z
<p>Hi,</p>
<p>in my mxml file I have images declared like this:</p>
<pre><code> <mx:Image x="0" y="0" source="assets/bigpicture.png" id="picture1"/>
</code></pre>
<p>and at some event I do:</p>
<p>picture1.source = "assets/bigpicture2.png";</p>
<p>However this results in flex removing the picture, and when it has loaded it will show it again.</p>
<p>How can I make the mx:image make so that it will continue to show the image until the new image has been loaded?</p>
<p>thanks!</p>