User thorseye - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:43:05Z http://stackoverflow.com/feeds/user/111091 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1749523/automatically-generate-images-from-swf 1 Automatically generate images from SWF thorseye 2009-11-17T15:11:48Z 2009-11-17T18:45:20Z <p>I'm looking for something that automatically generates images from the content in some SWF and stores the images on a server to be fetched if the user doesn't have Flash Player installed. The purpose is to at least show a static diagram instead of just a table with data, if Flash Player isn't installed. </p> <p>It's quite easy to create an image from a DisplayObject using Actionscript, but that requires someone opens the SWF in the first place. I would like this to execute on the server side. Is it possible? Is there a headless Flash Player that could be used with PHP for example?</p> http://stackoverflow.com/questions/1742885/width-height-of-dynamically-loaded-image 0 Width/Height of dynamically loaded Image thorseye 2009-11-16T15:26:42Z 2009-11-16T17:48:22Z <p>I've been struggling with this problem for far to long now, and I'm guessing the solution is quite easy. </p> <p>In my Flex application, I've got a component that extends UIComponent where I'm loading images at runtime and try to display them. I've tried lots of different approaches (using beginBitmapFill(), using different containers), but I can't get things to work as I want. The problem seems to be related to the width and height properties of the image, which aren't updated correctly. The idea is: </p> <pre><code>var sprite:Sprite = new Sprite(); addChild(sprite); var im:Image = new Image(); im.addEventListener(Event.COMPLETE, function(e:Event):void { sprite.addChild(im); } im.load('path/image.png'); </code></pre> <p>The image's width and height doesn't seem to be correct when it's loaded. I get width==0 (and nothing is displayed), but the property $width seems to be correct. How can I assure that width and height of the loaded image is updated?</p> http://stackoverflow.com/questions/1073139/define-possible-values-for-a-property-in-flex 2 Define possible values for a property in Flex thorseye 2009-07-02T08:21:43Z 2009-07-02T12:45:25Z <p>In Flex, is it possible to include some kind of MetaData to a property, to be able to list all possible values that a property can use? I want to be able to list the values when calling the property from MXML, as in the case of for example the property <em>enabled</em> or <em>visible</em>, where the user gets a list of "true/false". </p>