[flexcoders] Basic question about copying bitmap Data to a display object.

2010-08-20 Thread atlantageek
Currently I am copying bitmap data to an image using matrix=new Matrix() matrix.scale(img.width/_bitmap.width) img.graphics.beginBitmapFill(_bitmap,matrix,false,false) img.graphics.drawRect(0,0,img.width,400) img.graphics.endFill any suggestions. This is a update that happens several times a seco

[flexcoders] Drawing and Bitmaps on text

2010-03-15 Thread atlantageek
Is there a method for drawing lines and text onto a bitmap?

[flexcoders] Re: Pack and unpack for flex

2008-02-01 Thread atlantageek
FYI pack and unpack are functions found in Ruby perl and other similar scripting languages. --- In flexcoders@yahoogroups.com, "Atlanta Geek" <[EMAIL PROTECTED]> wrote: > > Anyone know of if there is an implementation of pack and unpack for > flex. Or if not pack and unpack then how can I map bin

[flexcoders] Pack and unpack for flex

2008-02-01 Thread atlantageek
Anyone know of if there is an implementation of pack and unpack for flex. Or if not pack and unpack then how can I map binary strings into a class. I need to reimplement a binary socket protocol in flex. This protocol is legacy stuff and I don't have the option of reimplementing it in AMF or somet

[flexcoders] Controlling LinearAxis

2008-01-10 Thread atlantageek
Hi, I'm building a few charts with LinearAxis and DateTimeAxis as my horizontal Axis on a chart. I would like to force the maximum and minimum values to be painted on the axis. Anyone have a suggestion on how to do this?