User George Profenza - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T10:04:20Z http://stackoverflow.com/feeds/user/89766 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d 4 how to extrude a path in 3d ? George Profenza 2009-11-30T01:03:56Z 2009-12-03T21:31:09Z <p>Hi,</p> <p>I'm trying to extrude a path in 3d. Nothing fancy yet, just following some points and using a regular polygon for 'tubing'. I'm using Processing for now to quickly prototype, but will later turn the code into OpenGL.</p> <p>My problem is rotating the 'joints' at the right angles. I think I have a rough idea how to get the angles, not sure.</p> <p>I've started from a sample by Simon Greenwold(Processing > File > Examples > 3D > Form > Vertices).Here's my attempt so far:</p> <p><strong>UPDATE > REFACTORED/SIMPLIFIED CODE</strong></p> <pre><code>Here is the main sketch code: int pointsNum = 10; Extrusion star; int zoom = 0; void setup() { size(500, 500, P3D); PVector[] points = new PVector[pointsNum+1]; for(int i = 0 ; i &lt;= pointsNum ; i++){ float angle = TWO_PI/pointsNum * i; if(i % 2 == 0) points[i] = new PVector(cos(angle) * 100,sin(angle) * 100,0); else points[i] = new PVector(cos(angle) * 50,sin(angle) * 50,0); } star = new Extrusion(10,10,points,3); } void draw() { background(0); lights(); translate(width / 2, height / 2,zoom); rotateY(map(mouseX, 0, width, 0, PI)); rotateX(map(mouseY, 0, height, 0, PI)); rotateZ(-HALF_PI); noStroke(); fill(255, 255, 255); translate(0, -40, 0); star.draw(); } void keyPressed(){ if(key == 'a') zoom += 5; if(key == 's') zoom -= 5; } </code></pre> <p>And here is the Extrusion class:</p> <p>import processing.core.PMatrix3D;</p> <pre><code>class Extrusion{ float topRadius,bottomRadius,tall,sides; int pointsNum; PVector[] points; Extrusion(){} Extrusion(float topRadius, float bottomRadius, PVector[] points, int sides) { this.topRadius = topRadius; this.bottomRadius = bottomRadius; this.points = points; this.pointsNum = points.length; this.sides = sides; } void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); for(int j = 0; j &lt; sides + 1; j++){ vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> <p><strong>UPDATE</strong></p> <p>Here is how my sketch looks like:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/extrude.gif" alt="processing extrude"></p> <p>The problem is the joints aren't at the right angle, so the extrude looks wrong. This isn't a very good example, as this could be achieved with a lathe. If I can get a lathe to work with an arbitrary set of points and an axis that will be great. I am using extrusion because I am trying to create geometric bodies based on the art of Liviu Stoicoviciu.</p> <p>Here are some samples:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/star%5Fpainting.jpg" alt="star painting"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/star%5Fpaper%5Fsculpture.jpg" alt="star paper sculpture"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/triangles%5Fpencil.jpg" alt="triangles"></p> <p>Sorry about the poor quality.</p> <p>As you can see in the triangles image, that would be achieved with extrusions.</p> <p><strong>UPDATE</strong></p> <p>Here's my attempt to use drhirsch's help in the draw method:</p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); for(int j = 0; j &lt; sides + 1; j++){ PVector s = new PVector(0,0,1); PVector cn = new PVector(); points[i].normalize(cn); PVector r = s.cross(cn); float a = acos(s.dot(cn)); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(a,r.x,r.y,r.z); PVector rotVec = new PVector(); rot.mult(points[i],rotVec); rotVec.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); vertex(rotVec.x,rotVec.y,rotVec.y); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } </code></pre> <p>I've refactored the code so now the class that used to be called CShape is called Extrude, the code is less and hopefully simples, and I use an array of PVector objects instead of a Vector of PVector objects which might be confusing.</p> <p>Here is my yet another attempt with some escher-esque results:</p> <p><em>upated draw</em></p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); float angleBetweenNextAndPrevious = 0.0; if(i &lt; pointsNum - 1) angleBetweenNextAndPrevious = PVector.angleBetween(points[i],points[i+1]); for(int j = 0; j &lt; sides + 1; j++){ PVector s = new PVector(0,0,1); PVector s2 = new PVector(0,0,1); PVector cn = new PVector(); PVector cn2 = new PVector(); points[i-1].normalize(cn); points[i].normalize(cn); PVector r = s.cross(cn); PVector r2 = s.cross(cn2); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); PMatrix3D rot2 = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(angleBetweenNextAndPrevious,r.x,r.y,r.z); rot2.rotate(angleBetweenNextAndPrevious,r2.x,r2.y,r2.z); PVector rotVec = new PVector(); rot.mult(points[i-1],rotVec); rotVec.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); PVector rotVec2 = new PVector(); rot2.mult(points[i],rotVec2); rotVec2.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); vertex(rotVec.x,rotVec.y,rotVec.z); vertex(rotVec2.x,rotVec2.y,rotVec2.z); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> <p><img src="http://doc.gold.ac.uk/~ma802gp/extrude2.gif" alt="fix_test"></p> <p>Edit by drhirsch This should work:</p> <pre><code>void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //begin draw segments between caps angle = 0; for(int i = 1; i &lt; pointsNum ; ++i){ beginShape(QUAD_STRIP); float angleBetweenNextAndPrevious = 0.0; if(i &lt; pointsNum - 1) angleBetweenNextAndPrevious = PVector.angleBetween(points[i],points[i+1]); PVector s = new PVector(0,0,1); PVector s2 = new PVector(0,0,1); PVector cn = new PVector(); PVector cn2 = new PVector(); points[i-1].normalize(cn); points[i].normalize(cn2); PVector r = s.cross(cn); PVector r2 = s.cross(cn2); PMatrix3D rot = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); PMatrix3D rot2 = new PMatrix3D(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1); rot.rotate(angleBetweenNextAndPrevious,r.x,r.y,r.z); rot2.rotate(angleBetweenNextAndPrevious,r2.x,r2.y,r2.z); PVector rotVec = new PVector(); PVector rotVec2 = new PVector(); for(int j = 0; j &lt; sides + 1; j++){ rot.mult(points[i-1],rotVec); // I am not sure about this. Should the shape be in the xy plane // if the extrusion is mainly along the z axis? If the shape is now in // the xz plane, you need to use (0,1,0) as normal vector of the shape // (this would be s and s2 above, don't use the short names I have // used, sorry) rotVec.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); rot2.mult(points[i],rotVec2); rotVec2.add(new PVector(cos(angle) * topRadius,0,sin(angle) * topRadius)); vertex(rotVec.x,rotVec.y,rotVec.z); vertex(rotVec2.x,rotVec2.y,rotVec2.z); //vertex(points[i-1].x + cos(angle) * topRadius, points[i-1].y, points[i-1].z + sin(angle) * topRadius); //vertex(points[i].x + cos(angle) * bottomRadius, points[i].y, points[i].z + sin(angle) * bottomRadius); angle += angleIncrement; } endShape(); } //begin draw segments between caps }else println("Not enough points: " + pointsNum); } } </code></pre> http://stackoverflow.com/questions/1841093/load-and-modify-as3-swf/1841412#1841412 0 Answer by George Profenza for Load and modify AS3 SWF George Profenza 2009-12-03T17:11:36Z 2009-12-03T17:11:36Z <p>Well, you could could control the things(clips and other swf components) that are publicly available by digging in through the hierarchy of objects, just basic stuff. The other choice is you could decompile the loaded swf at runtime. This <a href="http://code.google.com/p/as3swf/" rel="nofollow">library</a> sounds pretty interesting for that task.</p> http://stackoverflow.com/questions/1841112/online-image-editor-ajax-or-flex-flash/1841170#1841170 1 Answer by George Profenza for Online Image Editor - Ajax or Flex / Flash?? George Profenza 2009-12-03T16:37:44Z 2009-12-03T16:37:44Z <p>Ajax version would have to use something on the server processing the images, like the <a href="http://php.net/manual/en/book.image.php" rel="nofollow">GD Library</a> or <a href="http://php.net/manual/en/book.imagick.php" rel="nofollow">ImageMagick</a>. With flash you/flex you could do the image processing on the client side, and with Flash Player 10 you can take advantage of <a href="http://labs.adobe.com/technologies/pixelbender/" rel="nofollow">Pixel Bender</a> for image processing. I guess it depends on the size of your images. I would be interesting to see a benchmark on some big images, flash vs ajax/php. </p> <p>Good question.</p> http://stackoverflow.com/questions/1833845/actionscript-acces-now-object-instance/1833904#1833904 0 Answer by George Profenza for actionscript: acces now object instance George Profenza 2009-12-02T16:05:47Z 2009-12-02T16:05:47Z <pre><code>function addBall(instanceName:String):MovieClip { var mcIName:String = "ball"; var tMC:Class = getDefinitionByName(mcIName) as Class; var newMc:MovieClip = new tMC() as MovieClip; newMc.name = instanceName; trace("added " + newMc.name); newMc.x = randRange(10, 300); newMc.y = randRange(10, 300); addChild(newMc); return newMc; } </code></pre> <p>That should fixe it. return typed to MovieClip, and the fix bit, return newMc instead of this.newMc; newMC doesn't belong to this.</p> <p>if you had this.newMc = newMC maybe.</p> http://stackoverflow.com/questions/1828396/how-to-make-the-browser-back-button-work-for-a-flash-based-website/1828466#1828466 0 Answer by George Profenza for How to make the browser back button work for a Flash-based Website? George Profenza 2009-12-01T19:54:22Z 2009-12-01T19:54:22Z <p>Try using <a href="http://www.asual.com/swfaddress/" rel="nofollow">SWFAddress</a>. Here is simple <a href="http://www.asual.com/swfaddress/samples/flash/#" rel="nofollow">demo</a>. Lee has a nice <a href="http://gotoandlearn.com/play?id=107" rel="nofollow">video tutorial</a> to get you started.</p> http://stackoverflow.com/questions/1820902/flash-8-datagrid-sort-arrow/1823409#1823409 0 Answer by George Profenza for flash 8 datagrid sort arrow George Profenza 2009-12-01T01:01:48Z 2009-12-01T15:20:31Z <p>Hi,</p> <p>It's been a while since I've touched as2. Apparently I couldn't get things to work without hacks.</p> <p>Normally you should've be able to get away with dg.dispatchEvent({type:"headerRelease"}), but no, that didn't seem to work. I've used the Debug > List Objects option to get the name of a column header, then called the onRelease() function on it. Apparently that worked only in an onEnterFrame, which I later deleted. </p> <p>Here's my code, built with help from the documentation:</p> <pre><code>//hacky boolean to check if what we asked for was done var selfClicked:Boolean = false; myDP = new Array({name:"Chris", price:"Priceless"},{name:"Daisy", price:"Adequate"}, {name:"Nigel", price:"Cheap"}); dg.dataProvider = myDP; onEnterFrame = function(){ if(!selfClicked){ //ask nicely dg.dispatchEvent({type:"headerRelease"}); //no ? oh well... dg.content_mc.header_mc.hO0.onRelease(); //fix for header label dg.content_mc.header_mc.fHeaderCell0._y = dg.content_mc.header_mc.fHeaderCell1._y; selfClicked = true; delete onEnterFrame; } } this.headerRelease = function(eventObject){ //nicely hidden debugging gem here, thanks Jen deHaan! trace(mx.data.binding.ObjectDumper.toString(eventObject)); } dg.addEventListener("headerRelease", this); </code></pre> <p>HTH, George</p> http://stackoverflow.com/questions/1826251/style-air-application/1826540#1826540 0 Answer by George Profenza for style air application George Profenza 2009-12-01T14:29:38Z 2009-12-01T14:29:38Z <p>I found a few links, but then I realized you didn't mention which kind of AIR apps ? as3 or javascript ?</p> <p>Custom chrome apps are easy in flash, as you can see in <a href="http://www.adobe.com/devnet/air/flash/articles/custom%5Fchrome%5Fapp.html" rel="nofollow">this article</a>. I have no experience with AIR apps from Dreamweaver, but it should be pretty simple. </p> <p>As for the google maps, depends what technology you use but there are both versions: <a href="http://code.google.com/apis/maps/index.html" rel="nofollow">ajax</a> and <a href="http://code.google.com/apis/maps/documentation/flash/" rel="nofollow">as3</a> versions available.</p> http://stackoverflow.com/questions/1817203/save-and-debug-at-same-time-flash-cs3/1823524#1823524 0 Answer by George Profenza for Save and Debug at same time Flash CS3 George Profenza 2009-12-01T01:43:01Z 2009-12-01T01:43:01Z <p>Hmmm...</p> <p>you can write a jsfl script for that and save it in the Commands folder in Flash/Configutation.</p> <pre><code>fl.getDocumentDOM().save(); </code></pre> <p>is what you need to save the document. I encountered a bug in Flash CS3 though, and only </p> <pre><code>fl.getDocumentDOM().saveAndCompact(); </code></pre> <p>seemed to work. This would be annoying to use all the time.</p> <p>And there is no </p> <pre><code>fl.getDocumentDOM().debugMovie(); </code></pre> <p>in the jsfl documenatation.</p> <p>I'm affraid the answer is no. I hope someone will prove me wrong.</p> http://stackoverflow.com/questions/1803671/how-to-calculate-frequency-amplitude-in-flash-as3-with-flash-player-9/1806410#1806410 0 Answer by George Profenza for How to Calculate Frequency & Amplitude in Flash AS3 with Flash Player 9 George Profenza 2009-11-27T01:33:13Z 2009-11-30T23:45:44Z <p>Hi Tanmoy. </p> <p>If you have a closer look at the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/media/SoundMixer.html#computeSpectrum%28%29" rel="nofollow">computeSpectrum()</a> documentation, you will see the second parameter sets the FFT mode.</p> <p>FFT stands for FastFourierTransform, basically if you use FFT over a waveform you go to the frequency domain which means instead of raw values, you have values that are sorted for you by frequency.</p> <p>All you need to change in your code is :</p> <pre><code>SoundMixer.computeSpectrum(_testbytes, true); </code></pre> <p>Now in _testbytes you will have 512 values, 256 for the left channel and 256 for the right channel. For each channel the numbers are sorted by frequencies, low to high ( low, mid-low, mid-high, high I guess ).</p> <p>That's all, you got the frequencies now. SoundTransform has volume, which is another way of saying amplitude I guess. If you feel like doing Math.max() on some of those frequencies or the leftPeak and rightPeak, go for it.</p> <p>If you want to get nerdy with this, just lookup FFT on wikipedia or DSP(Digital Signal Processing) or Sound Processing, otherwise, the as3 documentation for computeSpectrum should be enough.</p> <p>As for sample rate, <a href="http://code.google.com/p/mp3infoutil/" rel="nofollow">this cool as library</a> seems to do the hard work for you.</p> <p>HTH, George</p> http://stackoverflow.com/questions/1814975/flex-datagrid-break-line-in-case-of-very-long-string/1815028#1815028 1 Answer by George Profenza for Flex: Datagrid, break line in case of very long string George Profenza 2009-11-29T08:40:00Z 2009-11-29T08:40:00Z <p>I haven't used flex in a while, but I can think of 2 ways to deal with this:</p> <p>You create a custom renderer, or alter the existing renderer's textfield to be multiline = true, wordWrap and autoSize = TextFieldAutoSize.LEFT.</p> <p>You can try to get away by setting a <a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/listClasses/ListBase.html#labelFunction" rel="nofollow">labelFunction</a>. Something like:</p> <pre><code>//assuming an item has a user and a message property, your might be called something else private function chopString(item:Object):String{ var fullMess:String = item.user + " &gt; " + item.message; if(fullMess.length &gt; 30) fullMess.substr(0,30) + "\n" + fullMess.substr(0,31); } </code></pre> <p>That is rough code, you should test it and adjust it, but I hope the idea is readable. HTH</p> http://stackoverflow.com/questions/1812138/how-to-data-bind-datagrid-component-without-scrolling-up/1812161#1812161 1 Answer by George Profenza for How to data bind DataGrid component without scrolling up? George Profenza 2009-11-28T10:11:38Z 2009-11-28T10:11:38Z <p>make a variable to store your last scroll position and use that.</p> <p>roughly something like:</p> <pre><code>var lastScroll:Number = 0; private function creationCompleteHandler(event:FlexEvent):void{ stage.addEventListener(MouseEvent.MOUSE_UP, updateLastScroll); } private function updateLastScroll(event:MouseEvent):void{ lastScroll = myDataGrid.verticalScrollPosition } private function dataGridHandler(event:Event):void{ myDataGrid.verticalScrollPosition = lastScroll; } </code></pre> <p>It's not the best code, but it illustrates the point, whenever someone finishes the scroll event, you store last position in a variable and you use that to restore the scroll position right after you've added new data.</p> http://stackoverflow.com/questions/1796704/rendering-random-curves-with-loops-between-2-points/1800977#1800977 0 Answer by George Profenza for Rendering random curves with loops between 2 points George Profenza 2009-11-26T00:51:13Z 2009-11-26T00:51:13Z <p>You can have a look at <a href="http://www.degrafa.org/docs/com/degrafa/geometry/splines/package-detail.html" rel="nofollow">Degrafa</a>, plenty of splines there. They were implemented by <a href="http://algorithmist.wordpress.com/2008/12/02/degrafa-introduction-to-splines-part-i/" rel="nofollow">Jim Armstrong</a>, it's worth checking out his site. Loads of explanations for Cardinal Splines, Catmull-Rom Splines, Hermite Curves, etc.</p> <p>Depends what exactly you're trying to achieve. I'd say have look on Wikipedia at different types of curves, find the one that best suits your needs, then <a href="http://code.google.com/p/bezier/" rel="nofollow">google</a>.</p> <p>HTH</p> http://stackoverflow.com/questions/1779712/multi-bitrate-dynamic-rate-for-progressive-flv-playback/1793837#1793837 0 Answer by George Profenza for Multi-bitrate/dynamic rate for progressive FLV playback George Profenza 2009-11-25T00:03:27Z 2009-11-25T00:03:27Z <p>Hi,</p> <p>I have a suggestion, more of a hack really. I hope you have small clips in mind, otherwise it might get pretty slow for big files.</p> <p>How about you have audio in a separate file(either flv with no video encoded or just plain mp3) and then your flv.</p> <p>You load your flv, you play make 'screengrabs' at runtime using <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/BitmapData.html#draw%28%29" rel="nofollow">BitmapData's draw</a> method and store them in a Vector/Array and that should be it. You can play them back at dynamic speeds,</p> <p>As for the mp3, you'll next the change the pitch. <a href="http://blog.andre-michelle.com/2009/pitch-mp3/" rel="nofollow">Andre Michelle</a> has a great article about that.</p> <p>Is the pricing the issue in not streaming flvs? <a href="http://osflash.org/red5" rel="nofollow">Red5</a> is opensource.</p> http://stackoverflow.com/questions/1764755/is-it-possible-to-reference-a-photoshop-file-or-layer-comp-from-within-another-ph/1785679#1785679 0 Answer by George Profenza for Is it possible to reference a photoshop file or layer comp from within another photoshop file? George Profenza 2009-11-23T20:19:40Z 2009-11-23T20:19:40Z <p>I've checked the JSX Photoshop Object Model, and you can access LayerComps, but there is no magic function to save from one file to another. Something like this could be written to disk, from file1.psd for example, then loaded into file2.psd. </p> <p>It's a bit of a long shot and I don't know if it's worth the trouble.</p> <p>For web prototyping I use Fireworks and and I'm pretty happy. You can easily create symbols (much like in Flash and Illustrator) and even save them to a Common Library, which means it will be easy peasy to keep your navigation items for example up to date, for all the files using it. You can even import PSD files into Fireworks, only not all the filters will be supported. </p> <p>Don't know if you can keep most of the eye-candy in Photoshop and then assemble reamble versions with ease using Fireworks.</p> http://stackoverflow.com/questions/1785471/errorclasses-must-not-be-nested-actionscript/1785506#1785506 1 Answer by George Profenza for Error:Classes must not be nested --> Actionscript George Profenza 2009-11-23T19:48:54Z 2009-11-23T19:48:54Z <pre><code>&lt;mx:Button id="myButton" label="chckSum" click="toutput.text(String(computeSum(Number(tinput1.text), Number(tinput2.text)));" x="130" y="140"/&gt; </code></pre> <p>means you're using a plain mxml Button component. </p> <p>Your function should be static as if doesn't seem you need to create an instance to compute a sum, and you have "a" and "b" as parameters, not a and a, Also, I hope you only need ints, otherwise if somewhere else you're expecting Number values(floating point values), you will them rounded.</p> <pre><code>public static function computeSum(a:int, b:int):Number{ return a+b; } </code></pre> <p>Are you sure addition is all you need to do ?</p> <p>It might have been easier to have something like:</p> <pre><code>&lt;mx:Button id="myButton" label="chckSum" click="toutput.text(String(Number(tinput1.text)+ Number(tinput2.text));" x="130" y="140"/&gt; </code></pre> <p>This is just at a glance. it's all a bit dirty and I have no idea what you're actually trying to do.</p> http://stackoverflow.com/questions/1785154/google-map-api-how-to-center-dynamicly-markers-in-as3/1785477#1785477 0 Answer by George Profenza for Google Map API: How to center dynamicly markers in AS3? George Profenza 2009-11-23T19:41:54Z 2009-11-23T19:41:54Z <p>You could try to use the a formula to get the centroid of the polygon drawn by your markers, assuming it's a polygon. If not, and they're a bunch of scattered points, you need to get the ones on that form the outer bounding segments first.Also, the code assumes the polygon is closed(loops), so the last point is your first point again.</p> <pre><code>function centreOfMass(polyPoints:Array):Point{ var cx:Number = 0; var cy:Number = 0; var area:Number = area(polyPoints); var result:Point = new Point(); var i:Number,j:Number,n:Number = polyPoints.length; var factor:Number = 0; for(i = 0; i &lt; n ; i++){ j = (i+1) % n; factor = polyPoints[i].x * polyPoints[j].y - polyPoints[j].x * polyPoints[i].y; cx += polyPoints[i].x + polyPoints[j].x * factor; cy += polyPoints[i].y + polyPoints[j].y * factor; } area *= 6.0; factor = 1 / area; cx *= factor; cy *= factor; result.offset(cx,cy);//sets x and y to cx and cy return result; } function area(polyPoints:Array):Number{ var i:int,j:int,n:int = polyPoints.length; var area:Number = 0; for(i = 0; i &lt; n; i++){ j = (i+1) % n; area += polyPoints[i].x * polyPoints[j].y; area -= polyPoints[j].x * polyPoints[i].y; } area *= 0.5; return area; } </code></pre> <p>You create an array of points and you use the lat/lon coords as x,y coords. If you're using flash player 10, feel free to change the array into a Vector. and don't forget to do the import.flash.geom.Point.</p> <p>I didn't come up with the code, I just ported what was on the <a href="http://local.wasp.uwa.edu.au/~pbourke/geometry/polyarea/" rel="nofollow">amazing Paul Bourke website</a>. Tons of handy stuff there.</p> http://stackoverflow.com/questions/1776860/download-and-store-multiple-files-with-adobe-air-flash-cs4-dev/1778652#1778652 0 Answer by George Profenza for Download and Store Multiple Files with Adobe AIR ( Flash CS4 Dev) George Profenza 2009-11-22T13:10:22Z 2009-11-22T13:10:22Z <p>If I got this right, you're trying to download some images with an AIR app and put the pictures in a folder in Flash CS4 ?</p> <p>If so, it depends a little bit on your os, so you need to make sure you get your paths right. Do a if/else and check for systrayIcon or dockIcon for that.</p> <p>You could tackle this multiple ways.</p> <p>You could just use the File API that comes with AIR to save the files to disk in the right location, or to a temporary location then copy them to the flash folder.</p> <p>You could write downloaded files to disk using AIR and write a tiny JSFL script and call it on the fly. Something like:</p> <pre><code>var jsfl:String = 'var files = ['; for(var i:int = 0 ; i &lt; downloadedFiles.length; i++){ if(i &lt; downloadedFiles.length-1) jsfl += '"'+downloadedFiles[i]+'",'; else jsfl += '"'+downloadedFiles[i]+'"];\n'; } jsfl += 'for(var i = 0 ; i &lt; files.length; i++ ){\n'; jsfl += '\tFLfile.copy(files[i],fl.configURI+'StockImages/'+files[i].substr(files[i].lastIndexOf('/')+1));\n}'; </code></pre> <p>I'm assuming downloadedFiles is the name of the array that stores the paths to the written images. This should result in a jsfl script like:</p> <pre><code>var files = ["file:///path/file_01.jpg","file:///path/file_02.jpg","file:///path/file_03.jpg"]; for(var i = 0 ; i &lt; files.length; i++ ){ FLfile.copy(files[i],fl.configURI+'StockImages/'+files[i].substr(files[i].lastIndexOf('/')+1)); } </code></pre> <p>This should copy the images to something close to /Users/{username}/Library/Application Support/Adobe/Flash CS3 or FlashCS4/{language}/Configuration/StockImages/ on mac os and /Users/{username}/Local Settings/Application Data/Adobe/Flash CS3 or FlashCS4/{language}/Configuration/StockImages/ on windows You can then call Flash with the path to the jsfl file as an argument.</p> <p>Another option would be to write a command line tool that receives 2 arguments: some binary data and a file path (string)</p> <p>You could then write a Flash Panel(a swf that makes jsfl calls and lives in the WindowSWF folder) and use as3 to load the images and call the commandline tool to write them to disk. You would use the undocummented <a href="http://www.flashguru.co.uk/jsfl-flfileruncommandline-updated-in-flash-cs3" rel="nofollow">FLfile.runCommandLine</a> to do that.</p> <p>The options depend on your level of comfort with AIR/JSFL/some other language to write a commandline tool.</p> <p>I am not sure what is the outcome of all this... there might be easier ways. </p> http://stackoverflow.com/questions/1776187/actionscript3-alpha-masking/1776210#1776210 0 Answer by George Profenza for Actionscript3 alpha masking? George Profenza 2009-11-21T17:55:59Z 2009-11-21T17:55:59Z <p>To use alpha masking you need to do the following:</p> <ul> <li>apply the mask using actionscript, not the Flash authoring.</li> </ul> <p>i.e. googleMap.mask = alphaMask;</p> <ul> <li>turn bitmap caching on(cacheAsBitmap = true);</li> </ul> <p>That should do it.</p> http://stackoverflow.com/questions/1764798/loading-swc-assets-into-array-in-pure-actionscript-3-project/1775275#1775275 0 Answer by George Profenza for Loading .swc assets into array, in pure Actionscript 3 project George Profenza 2009-11-21T11:48:43Z 2009-11-21T11:48:43Z <p>Hello,</p> <p>You have at least 2 options. </p> <p>Option1: Given the fact that a SWC file is a zip file that contains a swf with the embedded assets and an xml file describing the contents, you can load the swc as a zip, get the xml and parse it.</p> <pre><code>var swcLoader:URLLoader = new URLLoader(new URLRequest('assets/assetsLib.swc')); swcLoader.dataFormat = URLLoaderDataFormat.BINARY; swcLoader.addEventListener(Event.COMPLETE, swcLoaded); function swcLoaded(event:Event):void{ var zipFile:ZipFile = new ZipFile(event.target.data); for(var i:int = 0; i &lt; zipFile.entries.length; i++) { var entry:ZipEntry = zipFile.entries[i]; if(entry.name == 'catalog.xml'){ var data:ByteArray = zipFile.getInput(entry); var list:XML = new XML(zipFile.getInput(entry)); var nodes:XMLList = list.children(); for (var j:int = 0; j &lt; nodes.length(); j++) { if (nodes[j].name().localName == "libraries") { var libraries:XML = nodes[j]; var libList:XMLList = libraries.children(); for(var k:int = 0 ; k &lt; libList.length(); k++){ var library:XML = libList[k]; var classList:XMLList = library.children(); for(var l:int = 0 ; l &lt; classList.length(); l++){ var classDef:XML = classList[l]; trace('class name: ' + classDef.@name); //var LibClass:Class = this.loaderInfo.applicationDomain.getDefinition(classDef.@name) as Class; } } } } } } } </code></pre> <p>I am using the <a href="http://nochump.com/blog/?p=15" rel="nofollow">nochump library</a>.</p> <p>Option2: Since you only need the class names to make your like easier and you mentioned using Flash CS4(which makes me assume you have access to the .fla file generating the swc), you can write a simple jsfl script that will write that line of code for you.</p> <pre><code>var doc = fl.getDocumentDOM(); var libItems = doc.library.items; var libItemsNum = libItems.length; var classesString = 'var '+doc.name.substr(0,doc.name.length-4)+'Classes = ['; var classesNum = 0; var classes = []; fl.outputPanel.clear(); for(var i = 0 ; i &lt; libItemsNum; i++){ if(libItems[i].linkageExportForAS){ classes[classesNum] = libItems[i].linkageClassName; classesNum++; } } for(i = 0; i &lt; classesNum; i++){ if(i &lt; classesNum-1) classesString += '"'+classes[i]+'",'; else classesString += '"'+classes[i]+'"];'; } fl.clipCopyString(classesString); fl.trace(classesString); </code></pre> <p>All you need to do is: File > New > Flash Javascript File and paste the code. Save it in the Commands folder with a descriptive name, like: listExportClasses. Since it's in the Commands menu, if you use this often enough you could add a keyboard shortcut.</p> <p>What the command will is generate an array with the name of the fla file and contain the exported classes' names and conveniently place it in your clipboard.</p> <p>e.g</p> <pre><code>var assetsLibClasses = ["Start1","Start2","Start3","Button","ColorBox","GameBackground","MenuBackground"]; </code></pre> http://stackoverflow.com/questions/1770077/what-is-the-best-free-xliff-editor/1775115#1775115 1 Answer by George Profenza for What is the best free XLIFF editor? George Profenza 2009-11-21T10:24:51Z 2009-11-21T10:24:51Z <p>So far I've found <a href="http://sourceforge.net/projects/eviltrans/" rel="nofollow">Transolution</a> and there are a few more listed on the <a href="http://xliff-tools.freedesktop.org/wiki/Resources" rel="nofollow">XLIFF Tools</a> page.</p> <p>Transolution seems to be supported on Windows and it uses Python. I don't know what OS solution you're looking for, but it there is hope on the XLIFF Tools Software list.</p> <p>Interesting question, I'd like to see what is the best free XLIFF editor.</p> http://stackoverflow.com/questions/1767197/flash-async-calls-with-mouse-click-permissions/1767299#1767299 1 Answer by George Profenza for Flash async calls with mouse click permissions? George Profenza 2009-11-19T23:22:55Z 2009-11-19T23:22:55Z <p>Still on Flash 9 here, but can you not try to upload in the first place, without having that loader to check, and if that fails, prompt the user ? </p> <p>as Cory mentions</p> <p>what about try,catch ?</p> <pre><code>try{ //upload file }catch(e:SecurityError){ //prompt user, etc. } </code></pre> http://stackoverflow.com/questions/1752710/drag-and-drop-orderable-list-in-actionscript-3/1752846#1752846 2 Answer by George Profenza for Drag and Drop, Orderable List in ActionScript 3 George Profenza 2009-11-18T00:29:22Z 2009-11-18T00:29:22Z <p><a href="http://code.google.com/p/as3-drag-and-drop-tilelist/" rel="nofollow">This</a> seems to be close enough. ^_^</p> http://stackoverflow.com/questions/1746373/actionscript-3-workflow-using-swcs-with-linked-external-classes/1751674#1751674 0 Answer by George Profenza for ActionScript 3 Workflow using SWCs with linked external classes George Profenza 2009-11-17T20:50:24Z 2009-11-18T00:04:26Z <p>Hi Ken, </p> <p>As you said SWC is the way to go. I think I ran into a pretty similar situation, and I recommend you <a href="http://stackoverflow.com/questions/1004867/compile-a-swc-in-flash-for-use-in-flex-with-a-class-written-in-flex">check this question</a> out.<a href="http://lifesine.eu/so/FlashSWCTest.zip" rel="nofollow">Here</a> is a dummy project on that approach.</p> <p>Also, if it might speed up development time, I've made this <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&amp;extid=1860528" rel="nofollow">tiny extension</a> that declares the stage instances, initializes them and puts them in your clipboard so you can add that to your linked class. All you need to do initially is setup a naming scheme in the flash panel, then all you'll need afterwords is the Generate Button.</p> <p>I hope you designer has SVN setup. Designers hate SVN! You can trick them with something that looks cute on a mac like <a href="http://versionsapp.com/" rel="nofollow">Versions</a> or <a href="http://www.zennaware.com/" rel="nofollow">Cornerstone</a>.</p> <p>Goodluck!</p> http://stackoverflow.com/questions/1752549/preloader-in-actionscript-3-reference-error-on-getdefinition/1752636#1752636 1 Answer by George Profenza for Preloader in actionscript 3 - Reference Error on getDefinition() George Profenza 2009-11-17T23:33:17Z 2009-11-17T23:33:17Z <p>Is it any different if you have the Game class in the default package("Game" instead of "game.Game") ? </p> <p>I've never used anything like new mainClass( this.root ), new mainClass() should be fine. </p> <p>Also, is there any difference if you use Event.INIT instead of Event.COMPLETE ?</p> http://stackoverflow.com/questions/1748569/how-do-i-replace-all-the-links-in-a-text-using-regex-in-as3 0 how do I replace all the links in a text using regex in as3 ? George Profenza 2009-11-17T12:33:34Z 2009-11-17T15:27:04Z <p>Hello,</p> <p>I am using a regular expression to find links in a generic string and highlight that text(underline, a href, anything).</p> <p>Here's what I have so far:</p> <pre><code>var linkRegEx:RegExp = new RegExp("(https?://)?(www\\.)?([a-zA-Z0-9_%]*)\\b\\.[a-z]{2,4}(\\.[a-z]{2})?((/[a-zA-Z0-9_%]*)+)?(\\.[a-z]*)?(:\\d{1,5})?","g"); var link:String = 'generic links: www.google.com http://www.yahoo.com stackoverflow.com'; link = addLinks(linkRegEx,link); textField.htmlText = link;//textField is a TextField I have on stage function addLinks(pattern:RegExp,text:String):String{ while((pattern.test(text))!=false){ text=text.replace(pattern, "&lt;u&gt;link&lt;/u&gt;"); } return text; } </code></pre> <p>I get all the text replaced with "link". I'd like to have the same text that was matching the expresion instead of "link". I tried </p> <pre><code>text=text.replace(pattern, "&lt;u&gt;"+linkRegEx.exec(text)[0]+"&lt;/u&gt;"); </code></pre> <p>but I ran into trouble. I don't think I fully understand how regex and the replace method work.</p> http://stackoverflow.com/questions/1748569/how-do-i-replace-all-the-links-in-a-text-using-regex-in-as3/1749338#1749338 1 Answer by George Profenza for how do I replace all the links in a text using regex in as3 ? George Profenza 2009-11-17T14:41:10Z 2009-11-17T15:27:04Z <p>Ok, I've read the documentation for the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/String.html#replace%28%29" rel="nofollow">replace()</a> method.</p> <p>There are two key things:</p> <ol> <li>You can use <strong>$&amp;</strong> to get the matched substring. A lot of handy and weird looking symbols there.</li> <li><strong>Use a second string</strong> when replacing, otherwise you end up in an endless loops and tiny black wholes keep spawning every now and then.</li> </ol> <p>Here's how the correct version of the function looks:</p> <pre><code>function addLinks(pattern:RegExp,text:String):String{ var result = ''; while(pattern.test(text)) result = text.replace(pattern, "&lt;font color=\"#0000dd\"&gt;&lt;a href=\"$&amp;\"&gt;$&amp;&lt;/a&gt;&lt;/font&gt;"); if(result == '') result+= text;//if there was nothing to replace return result; } </code></pre> <p>As Cay mentioned, a stylesheet is more apropiate for styling. Thanks for the input.</p> http://stackoverflow.com/questions/1744324/how-to-detect-links-in-a-string-using-regex-in-as3 0 how to detect links in a string using RegEx in as3 ? George Profenza 2009-11-16T19:30:15Z 2009-11-16T19:45:19Z <p>I am trying to find the generic links in strings. I've found a very handy regex on <a href="http://www.gskinner.com/RegExr/" rel="nofollow">RegExr</a>, in the community expressions:</p> <pre><code>(https?://)?(www\.)?([a-zA-Z0-9_%]*)\b\.[a-z]{2,4}(\.[a-z]{2})?((/[a-zA-Z0-9_%]*)+)?(\.[a-z]*)?(:\d{1,5})? </code></pre> <p>I tried to use it and it returns null, although the same string tested on RegExr works fine:</p> <pre><code>var linkRegEx:RegExp = new RegExp("(https?://)?(www\.)?([a-zA-Z0-9_%]*)\b\.[a-z]{2,4}(\.[a-z]{2})?((/[a-zA-Z0-9_%]*)+)?(\.[a-z]*)?(:\d{1,5})?","g"); var link:String = 'generic links: www.google.com http://www.google.com google.com'; trace(linkRegEx.exec(link));//traces null </code></pre> <p>Is there anything I'm missing ?</p> http://stackoverflow.com/questions/1692857/limiting-the-number-of-selectable-files-in-a-flash-file-upload-dialog/1707447#1707447 0 Answer by George Profenza for Limiting the number of selectable files in a Flash file upload dialog George Profenza 2009-11-10T11:57:43Z 2009-11-10T11:57:43Z <p>It should be. It's not directly implementing.</p> <p>Either you use multiple fields and have the user upload one file at a time using FileReference.</p> <p>Either you use <a href="http://help.adobe.com/en%5FUS/AS3LCR/Flash%5F10.0/flash/net/FileReferenceList.html" rel="nofollow">FileReferenceList</a>, but let the user know, you will only upload the first files from the fileList array.</p> http://stackoverflow.com/questions/1683518/algorithm-for-positioning-rectangular-and-randomly-sized-objects-inside-a-non-rec/1683704#1683704 0 Answer by George Profenza for Algorithm for positioning rectangular and randomly sized objects inside a non-rectangular canvas. George Profenza 2009-11-05T21:21:40Z 2009-11-05T21:21:40Z <p>Hi,</p> <p>I think you can get all done using a physics simulation. It might sound complicated, but it's not as hard as it sounds. There are several physics APIs for actionscript 3. I've used the <a href="http://box2dflash.sourceforge.net/" rel="nofollow">as3 port of Box2D</a> and I'm pretty happy with the results.</p> <p>The way I would go about it is:</p> <ul> <li>define shapes for the walls ( the lines that make your polygonal shape )</li> <li>define the boxes(rectangles)</li> <li>create the physics bodies with the proper display objects information(linkage id , etc. )</li> <li>add them to the physics world and simulate.</li> </ul> <p>I don't know what your experience with actionscript 3 is, but have a look at the <a href="http://www.sideroller.com/wck/" rel="nofollow">World Construction Kit</a>. It should allow you to get on track fast.</p> http://stackoverflow.com/questions/1683542/do-multiple-flash-movies-on-a-web-page-download-and-run-in-parallel-or-in-sequenc/1683624#1683624 1 Answer by George Profenza for Do multiple flash movies on a web page download and run in parallel or in sequence George Profenza 2009-11-05T21:07:45Z 2009-11-05T21:07:45Z <p>I guess the swfs are run as they are loaded, but I think you can have something to say about that.</p> <p>As far as I understand you have multiple swfs displayed in one HTML file.</p> <p>If that is the case, you can use <a href="http://help.adobe.com/en%5FUS/AS3LCR/Flash%5F10.0/flash/net/LocalConnection.html" rel="nofollow">LocalConnection</a> to establish communication between swfs and control the way each and every one initializes.</p> <p>Another option would be setting a variable (be it js variable, js cookie, local <a href="http://help.adobe.com/en%5FUS/AS3LCR/Flash%5F10.0/flash/net/SharedObject.html" rel="nofollow">SharedObject</a>, etc. ) to keep track of the currently loaded swf's ID (e.g. 1 of 13 ). Working with js and flash is done using <a href="http://help.adobe.com/en%5FUS/AS3LCR/Flash%5F10.0/flash/external/ExternalInterface.html" rel="nofollow">ExternalInterface</a>.</p> <p>If I didn't understand, and you only want to load multiple swfs into one swf and manage that, <a href="http://code.google.com/p/bulk-loader/" rel="nofollow">BulkLoader</a> is the way forward as mentioned before. </p> <p>Goodluck!</p> http://stackoverflow.com/questions/1841112/online-image-editor-ajax-or-flex-flash/1841170#1841170 Comment by George Profenza on Online Image Editor - Ajax or Flex / Flash?? George Profenza 2009-12-03T19:16:43Z 2009-12-03T19:16:43Z I'm not saying go for Flash or go for Ajax, which doesn't help you much. I was just suggesting that a benchmark of the common tasks that your app should do (really basic test, background deletion 400x400 for example), how fast is it in flash (client side) or ajax (server side image processing) and how well does it scale for your maximum predicted users. If the difference isn't that big performance wise, I'd say ajax, as you'll probably have less headaches with SEO. Then again, you ajax team should be prepared to fix any problem that may arise in each browser. I don't think I can say yes or no. http://stackoverflow.com/questions/1841112/online-image-editor-ajax-or-flex-flash/1841170#1841170 Comment by George Profenza on Online Image Editor - Ajax or Flex / Flash?? George Profenza 2009-12-03T18:22:05Z 2009-12-03T18:22:05Z No worries.Why would you need to convert images to SWFs ?you can load the images in the swf, process them, send the resulting bytearray to a server to write the file to disk. As for multiple image formats, although there are GIF,PNG,BMP,etc. libraries in as3, why add that extra layer when you might not need that with Ajax, I see your point. I don't think you need Flas Media Server to convert images to SWF.I think it can be done in as3, doing some nasty bytearray business, but it might be easier to use the PHP Ming library to create a SWF out of an image on the fly from PHP. why is that needed? http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d/1820940#1820940 Comment by George Profenza on how to extrude a path in 3d ? George Profenza 2009-12-03T03:02:04Z 2009-12-03T03:02:04Z ...vector...and to that vector I add the position vector ( translate as you well explained ). It's so strange that I feel so close and still lost. Wish I knew more math. http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d/1820940#1820940 Comment by George Profenza on how to extrude a path in 3d ? George Profenza 2009-12-03T03:00:25Z 2009-12-03T03:00:25Z I have updated the code to something a bit more readable hopefully. You never initialize PVector cn; and PVector rotVec; Should they be (0,0,0) PVectors.I didn't know you can normalize a vector with another vector. I somehow seem to miss the point. On a higher level I understand that the acos of the dot product of 2 vectors will give me the angle between them. I don't know how to use matrices well, but I understand that I use an identity matrix and rotate it. The cross product will give me perpendicular vector. So, once I got the rotation, the product between a vector and a matrix will be a... http://stackoverflow.com/questions/1833845/actionscript-acces-now-object-instance Comment by George Profenza on actionscript: acces now object instance George Profenza 2009-12-02T16:07:16Z 2009-12-02T16:07:16Z also, you could use the displaylist functions: getChildAt(), getChildByName(), but an array is probably easier because there's no casting involved as the display list functions return a DisplayObject. http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d/1820940#1820940 Comment by George Profenza on how to extrude a path in 3d ? George Profenza 2009-12-02T15:59:51Z 2009-12-02T15:59:51Z I've added the code with my attempt to use your explanations. Still a few things I'm lost with. I'm trying to understand 'multiply each element of your shape with rot'. each celement, means each vector, or each component of each vector ? It's this last bit of concatenating the rotations that gives me headaches. translate should be just getting the rotated vertices and adding a translation vector to that. Thanks for all the patience drhirsch! http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d/1820940#1820940 Comment by George Profenza on how to extrude a path in 3d ? George Profenza 2009-12-01T21:19:07Z 2009-12-01T21:19:07Z I am trying to use your help, and so far I tried this: PVector s = new PVector(0,0,1);s.normalize();//shape normal vector PVector r = s.cross(current); float a = acos(s.dot(current)); Did I get a right ? a is equal to arc cosine of the dot product between S and V ? http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d Comment by George Profenza on how to extrude a path in 3d ? George Profenza 2009-12-01T21:17:42Z 2009-12-01T21:17:42Z some help with lathing a path could be handy, but in some cases I will need extrusions, while in others lathes. http://stackoverflow.com/questions/1826251/style-air-application/1826540#1826540 Comment by George Profenza on style air application George Profenza 2009-12-01T21:08:56Z 2009-12-01T21:08:56Z Then this should be a good start: <a href="http://www.adobe.com/devnet/air/flex/quickstart/custom_chrome.html" rel="nofollow">adobe.com/devnet/air/&hellip;</a> http://stackoverflow.com/questions/1820902/flash-8-datagrid-sort-arrow/1823409#1823409 Comment by George Profenza on flash 8 datagrid sort arrow George Profenza 2009-12-01T19:51:26Z 2009-12-01T19:51:26Z I was hinting that you could vote/accept the answer if it solves your problem :) http://stackoverflow.com/questions/1820902/flash-8-datagrid-sort-arrow/1823409#1823409 Comment by George Profenza on flash 8 datagrid sort arrow George Profenza 2009-12-01T17:30:22Z 2009-12-01T17:30:22Z Cool, am I to understand this is an acceptable answer ? ;) http://stackoverflow.com/questions/1820902/flash-8-datagrid-sort-arrow/1823409#1823409 Comment by George Profenza on flash 8 datagrid sort arrow George Profenza 2009-12-01T14:19:58Z 2009-12-01T14:19:58Z Hi Dave. Usually you should be able to dispatch an event from the component and that should've fixed it. You can wipe that off, I that wanted to show the attempt to do it in a less hacky manner. I see what you mean, the header text move diagonally, not horizontally. I think that might be because the sort arrow clip isn't created until the header is pressed and since we're hacking it, the text is shifted a bit up (not sure why exactly), but you can fix that if you add the following line after th hO0.onRelease(): dg.content_mc.header_mc.fHeaderCell0._y = dg.content_mc.header_mc.fHeaderCell1._y; http://stackoverflow.com/questions/1803671/how-to-calculate-frequency-amplitude-in-flash-as3-with-flash-player-9/1806410#1806410 Comment by George Profenza on How to Calculate Frequency & Amplitude in Flash AS3 with Flash Player 9 George Profenza 2009-11-30T23:46:54Z 2009-11-30T23:46:54Z I see, the updated answer seems to fit now ^_^ http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d Comment by George Profenza on how to extrude a path in 3d ? George Profenza 2009-11-30T12:37:41Z 2009-11-30T12:37:41Z @drhirsch Thanks for the tip on QUAD_STRIP, I'll use that. I want an extrusion along a path with an automatic rotation to match the inclination at the tangent of the path. I think I worked it out in 2d, having issues when moving to 3d. to get the inclination for a 2nd point I use the atan2 of the difference between the 3rd point and the 1st point and add 90 degrees(a perpendicular). Not sure how to apply that in 3d. http://stackoverflow.com/questions/1764798/loading-swc-assets-into-array-in-pure-actionscript-3-project/1775275#1775275 Comment by George Profenza on Loading .swc assets into array, in pure Actionscript 3 project George Profenza 2009-11-24T20:21:29Z 2009-11-24T20:21:29Z just tried python in blender, it takes a bit to get used to the syntax and the error messages. Less code to right though.