[flexcoders] Re: Fllash Player 9 bug (i think so...)

2006-08-07 Thread tyombria
--- In flexcoders@yahoogroups.com, "tyombria" <[EMAIL PROTECTED]> wrote: > > I have a problem with my swf in Internet Explorer 6. > > I have a popup window in my flex2 application. I show Alert on closing > popup window - "Do you really want to close the wi

[flexcoders] Fllash Player 9 bug (i think so...)

2006-08-03 Thread tyombria
I have a problem with my swf in Internet Explorer 6. I have a popup window in my flex2 application. I show Alert on closing popup window - "Do you really want to close the window?" with "Yes" and "No" buttons. All is ok. But if I set '-accessible=true' in the compiler options the swf movie crashes

[flexcoders] Logging tool for Flex 2 : ZTORLog4f (http://sourceforge.net/projects/ztorlog4f)

2006-07-16 Thread tyombria
ZTOR team released version 1.0 of their logging tool for flex2 - ZTORLog4f . It was updated for flex2 official release compliance.  __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexc

[flexcoders] Flex Beta 3: getDefinitionByName

2006-06-22 Thread tyombria
>From docs: public function getDefinitionByName(name:String):Object Returns a reference to the class object of the class specified by the name parameter. It always returns 'class object' - instance of the Class class. Why getDefinitionByName returns Object type? I must always write: var ClassRef

[flexcoders] Re: DateField date format

2006-05-23 Thread tyombria
Hi, Misael. When you define a labelFunction for the DateField component to format date for output you must also define parseFunction. Inverse function to labelFunction. For example: private var dateField : DateField = new DateField(); dateField.labelFunction = myLabelFunction; dateField.parseF

[flexcoders] Flex 2.0 b3: ItemRenderer problem

2006-05-19 Thread tyombria
Hello. I have a problem with an editable list. I set list to editable and add simple event listeners for ITEM_EDIT_BEGIN and ITEM_EDIT_END. When I end edit some item in the list its data is not visible. But when I start edit item again there is data that I've entered. -- Flexcoders

[flexcoders] Flex 2.0 b3: DataField

2006-05-11 Thread tyombria
Hi. I have a problem with a DateField component. I've set labelFunction so selectedDate must display as DD.MM.. It's work. But there is some problem... For example, I select date: May, 10th, 2006. In dateField I see: 05.10.2006. But when I click the dateField again dateField text is chang

[flexcoders] ZTORLog4f logging tool

2006-05-10 Thread tyombria
Hi, all. New release of ZTORLog4f  for Flex2 (beta 3) was released. You can download it here . -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com S

[flexcoders] Flex 2.0 b2: XML

2006-05-06 Thread tyombria
Hi. How can I remove child from XML object? There is no method 'removeChild'... Although I can 'appendChild', 'insertBefore...', 'setChildren'... -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.c

[flexcoders] Flex 2.0 b2: List, itemEditEnd event

2006-04-28 Thread tyombria
Hi, all. i have a problem with itemEditEnd event. How can i get data was being entered? see the code: someList.addEventListener( ListEvent.ITEM_EDIT_END, onItemEditEnd ); ... ... private function onItemEditEnd( event : ListEvent ) : void {   var itemRenderer : IListItemRenderer = event.itemRe

[flexcoders] Flex 2.0 b2: Data binding

2006-04-17 Thread tyombria
Hi. How can I use data binding in as3 code, not in mxml? For example, in mxml: How can I rewrite it in as code: var b : Button = new Button(); ? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com

[flexcoders] Flex 2 beta2: dataGrid

2006-04-14 Thread tyombria
Hi, all. How can I disable dataGrid some row selecting? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to:

[flexcoders] Logging tool for Flex 2

2006-04-12 Thread tyombria
Hi, all. New free logging tool for Flex 2 was released by ztorteam. you can check it out on: http://flex2.ztor.com/ztorcms.jsp?proj=ztorlog4f -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

[flexcoders] Re: Flex 2.0 b2: DataGrid ( verticalScrollPosition property )

2006-04-08 Thread tyombria
rs@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of tyombria > Sent: Wednesday, April 05, 2006 4:32 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Flex 2.0 b2: DataGrid ( verticalScrollPosition > property ) > > If I populate dataGrid and then set dataGrid

[flexcoders] Flex 2.0 b2: DataGrid ( verticalScrollPosition property )

2006-04-05 Thread tyombria
If I populate dataGrid and then set dataGrid.verticalScrollPosition property content of dataGrid will have zero scroll position. Scrollbar in dataGrid will have scroll position which i've set. I think it's a bug. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/file

[flexcoders] Flex 2.0 b2: DataGrid ( selectedIndex property )

2006-04-05 Thread tyombria
Hello. In DataGrid i can't select item by setting selectedIndex property. Only "dg.selectedIndices = [ requiredIndex ]" works. I think it's a bug. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/fle

[flexcoders] Re: Flex 2.0 b2: SharedObject

2006-03-31 Thread tyombria
--- In flexcoders@yahoogroups.com, "tyombria" <[EMAIL PROTECTED]> wrote: > > Hi, all. > > I've got a problem with a SharedObject. > > I run two apps simultaneously. > The following operators depict applications activities: > > 1. app

[flexcoders] Flex 2.0 b2: SharedObject

2006-03-28 Thread tyombria
Hi, all. I've got a problem with a SharedObject. I run two apps simultaneously. The following operators depict applications activities: 1. app1: so:SharedObject = SharedObject.getLocal('so', '/'); so.data.first = 'first'; so.data.second = ''; so.flush(); 2. app2: so:SharedObject = SharedObject.

[flexcoders] Re: Flex 2.0 b2: 'getClassByName' method of the 'flash.util' package

2006-03-22 Thread tyombria
--- In flexcoders@yahoogroups.com, "tyombria" <[EMAIL PROTECTED]> wrote: > > Hi, all. > > Method 'getClassByName' works correctly only with adobe classes. > For example, getClassByName('flash.net.URLLoader') works fine. > > I'

[flexcoders] Flex 2.0 b2: 'getClassByName' method of the 'flash.util' package

2006-03-22 Thread tyombria
Hi, all. Method 'getClassByName' works correctly only with adobe classes. For example, getClassByName('flash.net.URLLoader') works fine. I've got a problem with my custom classes. For example: var myClassReference:MyClass = getClassByName('myPackage.MyClass'); I get error: Error #1065: Variable M

[flexcoders] Flex 2.0: SharedObject

2006-03-16 Thread tyombria
Hello! I have a problem with a SharedObject. When call 'flush()' method of a SharedObject instance, file *.sol is not created immediately. It's created only when close app. I've checked it up. But in doc it's said the file must be created immediately. Also 'clear()' method clears SharedObject

[flexcoders] Re: addChild method in mx.core.Container

2006-02-23 Thread tyombria
--- In flexcoders@yahoogroups.com, Jens Halm <[EMAIL PROTECTED]> wrote: > > > > You can wrap your Sprite inside an UIComponent (code not tested): > > > var s:Sprite = new Sprite(); > > > var c:UIComponent = new UIComponent(); > > c.addChild(s); > > > var b:Box = new Box(); > > b.addChild(b); >

[flexcoders] addChild method in mx.core.Container

2006-02-23 Thread tyombria
Hello, i have a problem. Please, help... if: ... var s:Sprite = new Sprite(); var b:Box = new Box(); // box - mx.core.Container.Box then: b.addChild(s);// - ERROR: cannot convert flash.display::[EMAIL PROTECTED] to mx.core.IUIComponent i know (from debugger) that method 'addChild(v