Re: [Flashcoders] Taking a "screenshot" from a FLVPlayback compon entusing AS

2006-05-03 Thread Oleg Filipchuk
You may send data to some server side script, but currently in FP8 it is not really efficient due to the size of data sent over wire. There is an interesting example from Alessandro Crugnola - http://sephiroth.it/tutorials/flashPHP/print_screen/ Cheers, Oleg __

Re: [Flashcoders] Taking a "screenshot" from a FLVPlayback componentusing AS

2006-05-03 Thread Oleg Filipchuk
HI, I have the familar task so I've been using BitmapCopy class for that purpose: [as] import flash.display.BitmapData; import flash.geom.Rectangle; import flash.geom.Matrix; import flash.geom.ColorTransform; class com.justversus.utils.BitmapCopy extends MovieClip { private static var instanc

Re: [Flashcoders] Flash to jpg

2006-04-18 Thread Oleg Filipchuk
Hello, if you can track all the manipulation user does with the image you may use GD library in PHP or MagicWand of ImageMagick. To make communication easy try to use AMFPHP. If you look for an example check www.edipix.com - I've implement only the simplest image manipulations like crop, compositin

Re: [Flashcoders] Duplicate Class errors

2006-04-09 Thread Oleg Filipchuk
Hello, I've got the same issue when the team member had clocked shifted by month ahead ( do not know how why he had it). The quick solution was to shift my clock ahead as well and after that all files were compiled without any problem. But after putting my clock back the problem had reappeared. The

Re: [Flashcoders] loading images into in cell renderer datagrid

2006-03-21 Thread Oleg Filipchuk
Hello, May you provide your setValue function for your ImageCellRenderer? Oleg On 3/20/06, Rich Rodecker <[EMAIL PROTECTED]> wrote: > > i have a datagrid that uses a cell renderer for one of the columns. > This cell renderer uses a Loader component to an load image into it. > For most of the rows

Re: [Flashcoders] storing embedded font data in local shared objects(LSOs)?

2006-03-14 Thread Oleg Filipchuk
Hey Ken, why not keeping font libraries in exeternal swf files so when user loads it once it will stay in user's cache? Oleg ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mai

Re: [Flashcoders] Q:Tween Class..detect tween in progress

2006-03-07 Thread Oleg Filipchuk
Hi, there is tween.onMotionChanged ( obj:Object ) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Autho

[Flashcoders] How to remove component listener in CellRenderer

2006-02-27 Thread Oleg Filipchuk
Hi list, I use my custom components in tree and other list based components with CellRenderer API. I create it with createChildren method: function createChildren(Void) : Void{ combo = JViewCreator.createView (ComboBox, this, this.getNextHighestDepth(), "combo", {width: 97, height: 20, _x:

Re: [Flashcoders] how to make single cell in the grid non editable?

2006-02-23 Thread Oleg Filipchuk
I hope it would be better. It's nothing else left. :( So does anyone know any smart solution about making individual cell non/editable? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figl

Re: [Flashcoders] how to make single cell in the grid non editable?

2006-02-22 Thread Oleg Filipchuk
eric, thanx for your advise. I made it invoking cellPress listener. It's really messy and I DO NOT LIKE this solution at all. private function cellPress(evt:Object):Void { if ( dataGrid.selectedItem.UserType == 3 ) { dataGrid.editable = false; } else { dataG

[Flashcoders] how to make single cell in the grid non editable?

2006-02-22 Thread Oleg Filipchuk
Hi list. Is it possible to make single cell in the grid non editable? I can do make non-editable column but that is not what I need. thx. Oleg ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyf

Re: [Flashcoders] DataGrid Columns question

2006-02-22 Thread Oleg Filipchuk
Thanks all, I've found solution by setting up columns ahead of time: private function createColumn( prop:String, label:String ):DataGridColumn { var clmn:DataGridColumn = new DataGridColumn(prop); clmn.headerText = label; return clmn; } dataGrid.addColumn(createColumn("nickname", "Nick

[Flashcoders] DataGrid Columns question

2006-02-22 Thread Oleg Filipchuk
Hello list, I'm populating DataGrid component from DB. And I need to specify what columns have to be shown to user. I remember that there is DataGrid column wizard, but unfortunately it doesn't work with Flash 8. This is the value object: class vo.User { var nickname:String; var fullname:String;

Re: RE : [Flashcoders] External Imaging Nightmares

2006-02-16 Thread Oleg Filipchuk
Here is the working example, without gotoAndStop etc. DO NOT USE onLoadComplete, use onLoadInit System.security.allowDomain ("google.com"); function onLoadStart( target:MovieClip ):Void { trace ( "load start") } function onLoadError( target:MovieClip, errorCode:String ):Void { trace( 'l

Re: [Flashcoders] External Imaging Nightmares

2006-02-15 Thread Oleg Filipchuk
Hi Jamie, you have to use MovieClipLoader.onLoadInit(). The onLoadComplete event only tell you that external content had been finished loading, but not yet initialised. Oleg ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or sea

Re: [Flashcoders] Flash Lite 2.0 phone list

2006-01-13 Thread Oleg Filipchuk
Does anybody know about any plans for Palm OS flash player? On 1/12/06, Nick Gerig <[EMAIL PROTECTED]> wrote: > > > The majority of Non-Nokia devices listed are Japanese handsets with > FL1.1 or FL1.0 preinstalled. > > > > > > > - All the phones that could be supported using the current technology

Re: [Flashcoders] [ANN] FlashDevelop beta8 release

2006-01-12 Thread Oleg Filipchuk
Thanks for info and new release Phillipe. It's really great develop IDE. The only thing I miss comparing to PrimalScript (that I've been using before I've got known FlashDevelop ) is creating project from existing directory. Oleg. On 1/12/06, Philippe <[EMAIL PROTECTED]> wrote: > > Hello coders,

Re: [Flashcoders] Attach MC with a custom Class

2006-01-12 Thread Oleg Filipchuk
Hi Bruno, import mycustompackage.MyCustomClass; var myCustomMC:MyCustomClass = MyCustomClass ( this.attachMovieClip ( customMCSymbol, myCustomMC, depth, initObj) ); or you may use JViewCreator - http://www.j3r.com/ ___ Flashcoders mailing list Flashcode

Re: [Flashcoders] Forcing Flash going to next frame while executing code? + MultiThreading in Flash?

2005-11-02 Thread Oleg Filipchuk
Hi, why don't you parse your xml with using of setInterval? On 11/2/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Is this possible ? I have a large xml-file which is parsed. This tends > to freeze help of setIntervalapplication several seconds (in case of a > really big > xml-file, a popup

[Flashcoders] TextField - how to put caret into textfield?

2005-10-21 Thread Oleg Filipchuk
Hi list. maybe this is trivial question but I didn't google the way to do it. I need to create TextField and put the blinking caret into TextField without user clicking on TextField. var my_tf:TextField = this.createTextField ( '_tf', 0, 0, 0, 100, 20); my_tf.border = true; my_tf.type = 'input'; S