Re[2]: [flexcoders] SWC's in Flex

2005-10-27 Thread Andriy Panas
Hello Muzak, Thursday, October 27, 2005, 8:17:59 AM, you wrote: M Also, when exporting the swc in F7, I renamed the default /mx M class directory, to make sure it was compiling the flex classes, M not M the flash classes (yeah I'm paranoid). Waldo Smeets gave a presentation on MAX 2005 on

Re[2]: [flexcoders] ViewHelper and Cairngorm

2005-10-31 Thread Andriy Panas
Hello Steven, SW we'd recommend here that you learn to use the ModelLocator SW pattern.  Have your view bind to a model in the ModelLocator, and SW in the result handler on your SW commands, update the model.  No need for view helper, unless SW you need to represent the data that comes SW back

Re[2]: [flexcoders] Re: Cairngorm Sequence Command Example

2005-11-01 Thread Andriy Panas
Hello superabe, Tuesday, November 1, 2005, 4:04:55 AM, you wrote: ss Preferably the commands need to be in a sequence. See example of flexstore app supplied with distribution of cairngorm 0.99b package. -- Best regards, Andriymailto:[EMAIL PROTECTED]

[flexcoders] Re: Tab Navigator or LinkBar text color after selection

2005-11-07 Thread Andriy Panas
FlexStyleExplorer.htmlthat disabledColor works in combination with LinkBar... I just cannot repeat it in my application.Bummer! --With flex regards,Andriy Panas -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-

[flexcoders] removing listener for KeyUp event from mx:TextInput field

2005-11-11 Thread Andriy Panas
Dear flexcoders, I have a problem with removing the custom listener for KeyUp event for my mx:TextInput field. The new listener for 'KeyUp' event that I add during 'focusIn' event never gets deleted. Every time I move focus to the mx:TextInput field one new listener is added for 'KeyUp'

Re[2]: [flexcoders] removing listener for KeyUp event from mx:TextInput field

2005-11-11 Thread Andriy Panas
Hello Kevin, Thank you Kevin, you were correct here! I rely on Delegate class here, so I will take your advice and I will do it your way. Friday, November 11, 2005, 5:37:16 PM, you wrote: KL The event broadcaster keeps a map of event types and the event listener. By KL creating a new

[flexcoders] mx:Accordion and vScrollPolicy=on: no scrollbars for mx:Accordition visible

2005-11-16 Thread Andriy Panas
Hello flexcoders, Does setting of mx:Accordion's property 'vScrollPolicy' to the value on has any effect on mx:Accordion appeareance? I cannot create any test sample that allows scrollbars to become visible for the solemn single mx:Accordion component. The only workaround I can

Re: [flexcoders] Re: Links to Nice-looking Flex Apps

2005-11-20 Thread Andriy Panas
Hello Renaun, Sunday, November 20, 2005, 8:26:28 AM, you wrote: RE http://www.google.com/search?q=mxml+filetype%3Amxml Smart way to search for MXML pages indexed by Google, I admit. Although this particular search very strongly highlights the existing problem with Google indexing Flash

[flexcoders] tabEnabled has no effect on TextArea or/and TextInput component

2006-03-20 Thread Andriy Panas
Hello flexcoders, In Flex 1.5 mx.controls.TextArea derives from mx.core.UIComponent, thus it has tabEnabled property in its API. When I set tabEnabled property to false on TextArea widget, the TextArea component is still able to gain a focus while tabbing, why is this happening?

Re[2]: [flexcoders] Starting a Project Now! FLEX 1.5 or 2.0?

2006-03-20 Thread Andriy Panas
Hello all, Besides required * HIGH* licensing cost of Flex 1.5 software, which is immediately no-win option for most of independent developers and small software companies, what do you think about penetration rate speed in the nearest future of Flash 8.5 player? ARE you all OK with a fact

[flexcoders] What upload servlet at server side to use along with FileReference class?

2006-03-27 Thread Andriy Panas
Hello flexcoders, We are trying to use http://servlets.com/cos/ O'Reily's file upload package MultipartRequest along with FileReference class. --- My question to community is: what it your preferred choice at the server side to

[flexcoders] Flex 1.5: Resizing Firefox 1.5.0.2 window does not change layout inside mx:Tile container

2006-04-17 Thread Andriy Panas
Hello flexcoders, Today, I stumbled upon browser dependant problem with using mx:Tile container authored Flex 1.5 software Please, compile and run the following simple page under 2 or 3 browsers out of list of your choice ( hosting OS is Win XP SP2): Opera 8.02, IE 6.0.2900

Re: [flexcoders] LoadMovie in mx:Loader swf

2006-04-18 Thread Andriy Panas
Hello Jonas, In flex, load the swf with mx:Loader source=loadMovieTest.swf width=800 height=600/mx:Loader If I open the swf, it loads the image. In flex, it doesn’t. First, use mx:Image tag to load images into Flex 1.5 app, this is more performance wise. Second, check the correctness of

Re[3]: [flexcoders] LoadMovie in mx:Loader swf

2006-04-19 Thread Andriy Panas
Hello Jonas, Wednesday, April 19, 2006, 1:02:18 PM, you wrote: I'm loading an swf that's using loadMovie() to load an external jpg (if I can get this working, I can integrate our old tile-based zoomify component in flex) OK, now your situation is more clear to me. Waldo Smeets is an expert

Re: [flexcoders] Flex app URL

2006-04-20 Thread Andriy Panas
Hello Dmitry, Thursday, April 20, 2006, 12:14:23 AM, you wrote: Does anyone know how to retrieve url of the Flex app from within the application? Are you on Flex 1.5 or Flex 2 b2? In Flex 1.5 world we use Flash derived API command: _level0._url. How cool is that?! -- Best regards,

Re[2]: [flexcoders] dataGridInstance.setVPosition(dataGridInstance.maxVPosition);

2006-04-28 Thread Andriy Panas
Hello Matt, Thank you for commenting. We are using Flex 1.5. I must report that calling - myGrid.vPosition=maxVPosition - does not scroll dataGrid to the very end even after I tried to apply doLater() or alternatevely setInterval to postpone the

Re: [flexcoders] Flex2 :: Seperate Mailing List :: Component developers - Framework Devlopment

2006-05-15 Thread Andriy Panas
Hello Michael, Monday, May 15, 2006, 9:45:22 PM, you wrote: MS Does anybody see the need for a list that deals with MS framework development/component development. I would love to have such a separate list for flex component development. At work, we are still using Flex 1.5 and have many

Re: [flexcoders] Re: Caringorm - FrontController / addCommand adjustment?

2006-05-18 Thread Andriy Panas
Hello Iuliu, Could you explain why this change? Steven Webster had written an entry on this matter at this blog titled: Cairngorm 2 (for Beta 3) now has Stateless Commands http://weblogs.macromedia.com/swebster/archives/2006/05/cairngorm_2_for_1.cfm#more -- Best regards, Andriy

[flexcoders] Flex 1.5: HOWTO specify the MUST inclusion of 0 for fractional numbers smaller than 1 using mx:CurrencyFormatter?

2006-07-19 Thread Andriy Panas
Hello , flexcoders I was stumbled upon that all my fractional numbers like 0.25, 0.45, 0.65, etc are displayed after formatting with mx:CurrencyFormatter like this: $.25, $.45, $.65 What I want my numbers to be displayed is: $0.25, $0.45, $.65. I cannot find a simple and reliable way to

Re: [flexcoders] How to make the entire Image control mouse sensitive?

2006-11-23 Thread Andriy Panas
Hello Sergey, Currently only the loaded image itself is mouse sensitive when scaleContent is set to false, not the entire Image control. How to change the behavior in order to make the entire Image control mouse sensitive without decorating it inside Box? I do not think this behavior is

Re: [flexcoders] Image download progress indicator

2006-11-23 Thread Andriy Panas
Hello Sergey, Thursday, November 23, 2006, 11:49:48 AM, you wrote: What is the best way to create in place image download progress indicator? Fastest, is two Canvases and two states States: - mx:states mx:State name=imageState mx:RemoveChild target={loading} /

Re: [flexcoders] Re: Text instance does not calculate its height properly when in scrollable Box

2006-11-29 Thread Andriy Panas
Hello Sergey, Tuesday, November 28, 2006, 11:15:57 PM, you wrote: SK Any suggestions?.. Use mx:TextArea for a time being to display long texts. Investigate how mx:TextArea treats the text in a different way from mx:Text component. -- Best regards, Andriy

Re: [flexcoders] Is there any native media player component?

2006-11-29 Thread Andriy Panas
Hello Sergey, Tuesday, November 28, 2006, 1:08:07 AM, you wrote: SK I remember FLVPlayer (or some kind of this) component in Flash 8 IDE. SK Is there any similar component available in Flex 2? mx:VideoDisplay/ or flash.media.Video http://tinyurl.com/wmfkf -- Best regards, Andriy

[flexcoders] Flex 2 HTTPService: reading /writing browser cookies

2006-12-19 Thread Andriy Panas
, Andriy Panas -- 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: http://groups.yahoo.com/group/flexcoders

Re[2]: [flexcoders] Transform XML with external CSS styleSheet via htmlText

2006-12-19 Thread Andriy Panas
Dear Jason, Have you found a solution for this issue? I can't seem to make this work either, although I used to do this all the time in Flash. Please, have a look at http://rantworld.blogs.com/flashlit/2006/08/styling_flex_te.html#more -- With flex regards, JabbyPanda -- Flexcoders

[flexcoders] Adding an item to binded data XML source does not refresh view in a mx:Tree

2007-01-21 Thread Andriy Panas
Hello flexcoders, I ran into 2 different behaviors dependant on the type of binded data source (XML or XMLListCollection) to mx:Tree's dataProvider. Behavior #1 -- If I bind the data of XML type to dataProvider's mx:Tree the whenever I add the new node to XML data source at the

[flexcoders] Re: pop ups again

2007-02-01 Thread Andriy Panas
Hi everyone, I cannot help you Roman to solve your problem, but I am able to CONFIRM your bug( feature) with FlexEvent.SHOW event not dispatched from popUp window instance in modal mode if it is being shown for the second and for the next time and so on. In the attached sample application try to

[flexcoders] If Flex 2 Livedocs still supported or we shall move on to Flex 2.0.1 Livedocs?

2007-02-21 Thread Andriy Panas
Dear Adobe representative, Why the following Livedocs page from Flex 2 Livedocs is broken http://livedocs.adobe.com/flex/2/langref/mx/controls/Tree.html (virtually goes to nowhere)? FYI, not yet indexed page from Flex 2.0.1 Livedocs is OK:

[flexcoders] Re: If Flex 2 Livedocs still supported or we shall move on to Flex 2.0.1 Livedoc

2007-02-22 Thread Andriy Panas
Hi, Stephen, Thank you for your time, the error with http://livedocs.adobe.com/flex/2/langref/mx/controls/Tree.html page is gone. Just wanted to attract somebody's attention from Adobe to this problem, looks like somebody has taken care of this issue already yesterday! What errors are you

Re: [flexcoders] Links defined in Label or Text htmlText doesn't work upon the first click when in TabNavigator

2007-02-27 Thread Andriy Panas
Hello Sergey, Set mx:TabNavigator width=100% height=100% focusEnabled=false I guess you witness this behaviour because mx:Tabnavigator with a first click over Label only gains a application focus, and only with a second click Label a href action is fired... SK Moving this Label instance

Re[2]: [flexcoders] Eclipse 3.2.2

2007-03-01 Thread Andriy Panas
Hello Dave, DC I just did it and there are no issues to speak of thus far. This is probably OT, but I always wonder how do you install Flex Builder Eclipse plugin (and other Eclipse plugins too) when you do upgrade to the new version of Eclipse? Do you: a) reinstall every Eclipse

[flexcoders] How to determine in XML structure that node of interest is at root level?

2007-04-03 Thread Andriy Panas
Dear flexcoders, I have the following XML: root Folder id=1/ Folder id=2 Station id=1 / Station id=7/ /Folder Folder id=5 / /root How to determine that XML node, say Folder id=5 is located at rool level of XML structure? Pretend that variable 'myNode' contains a reference to Folder id=5 XML

Re: [flexcoders] Re: Building flex apps with Maven 2?

2007-05-10 Thread Andriy Panas
to collaborate on building up one of these plugins (or start a new one?). -Brian christian gruber + [EMAIL PROTECTED] cgruber%40israfil.net + bus 905.640.1119 + mob 416.998.6023 process coach and architect + ISRÁFÍL CONSULTING SERVICES -- -- With flex regards, Andriy Panas

[flexcoders] Problem: FileReference onComplete event handler fires too soon - not properly waiting for HTTP status code 200

2007-05-23 Thread Andriy Panas
fires ONLY when Flash Player has received an HTTP status code of 200 from the server . http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=2215.html -- With flex regards, Andriy Panas

[flexcoders] Re: DataGrid with multiple rowheaders / colheaders - Flex 3?

2007-05-23 Thread Andriy Panas
Hi, However, i've still failed to find people extending the DataGrid component to allow for multiple row/column headers and groups and row/column footers. I would like you to clarify, what do you mean by having multiple column headers for DataGrid. You can use item renderer for column

[flexcoders] Re: mxml-mode for Emacs

2007-05-26 Thread Andriy Panas
http://www.mail-archive.com/search?l=flexcoders%40yahoogroups.comq=MXML+DTD+Schemasourceid=Mozilla-search -- With flex regards, JabbyPanda

[flexcoders] How to properly use embedded fonts with font face HTML tag?

2007-10-04 Thread Andriy Panas
identificator of any of 3 fonts successfully loaded - Trebuchet, Palatino or Arial. -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] RichTextEditor - Customizing the look

2007-10-22 Thread Andriy Panas
own buttons to input and modify text with my own look. I've done a subclass of the richttexteditor class -- however I am completely unfamiliar with the component itself and how it binds the buttons to it. Unfortunately it's not very configurable. -- Med venlig hilsen / Best regards Andriy Panas

Re: [flexcoders] How do you add more fonts to the drop down selection of a RichTextEditor ?

2007-10-23 Thread Andriy Panas
creationComplete=onRTECreationComplete() private function onRTECreationComplete() : void { rte.fontFamilyCombo.dataProvider = fontFamilyArray; rte.fontFamilyCombo.selectedIndex = 0; } -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED] Does anyone know how to add

Re: [flexcoders] Adobe Bug Tracking Power Tool

2007-10-24 Thread Andriy Panas
Hi Dejan, I am sorry, but using http://bugs.adobe.com/flex is so much convenient IMHO. Your application brings 0 added value for browsing database of Adobe Flex SDK logged bugs. -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Determining the text character at a given position in a TextArea

2007-10-24 Thread Andriy Panas
Andriy Panas [EMAIL PROTECTED] On 24/10/2007, jamalwally [EMAIL PROTECTED] wrote: Hi, I would like to be able to highlight text in a TextArea that is under the user's mouse. In Flex 2 is there a way to get the text character that is closest to a given x,y position within a TextArea

Re: [flexcoders] Re: Flash/Flex Event collision on TextField input

2007-10-30 Thread Andriy Panas
{ myTextArea.addEventListener(Event.CHANGE, onTextChanged); } private function onTextChanged(event : Event) : void { event.stopImmediatePropagation(); } -- -- Med venlig hilsen / Best regards Andriy Panas On 30/08/2007, George [EMAIL PROTECTED] wrote: Yeah, you're right. All components are hosted

[flexcoders] Problems with using mx:Validator tag in MXML and code-behind approach in Flex 2

2006-08-31 Thread Andriy Panas
Hello flexcoders, I am using code-behind approach (http://www.adobe.com/devnet/flex/quickstart/building_components_using_code_behind/) and my mx:Validator tag is declared in MXML. During compiling, I receive a warning Data binding will not be able to detect assignments to username.

Re: [flexcoders] Problems with using mx:Validator tag in MXML and code-behind approach in Flex 2

2006-08-31 Thread Andriy Panas
Hello all, During compiling, I receive a warning Data binding will not be able to detect assignments to username. Thus, my binding to 'source' property in mx:Validator does not work! I had figured out my error, I should use [Bindable] directive in my AS3 class with every variable that got

[flexcoders] Outline view in FB2 does not work with classes from mx.* package?

2006-09-18 Thread Andriy Panas
Hello flexcoders, I did not manage yet to use Outline view together with classes from mx.* package. Outline view in FB2 works fine only with my custom classes. Here are the steps to reproduce: 1) Start Flex Builder 2 Standalone 2) Press

Re[2]: [flexcoders] how to set 1px width image to be a 200width application control bar 's backgroundImage

2006-09-19 Thread Andriy Panas
Hello Harish, Tuesday, September 19, 2006, 3:56:03 PM, you wrote: set the backgroundSize property to 100%, not sure, worth a try! I just tried this path just to validate this approach and it failed to me. I applied the following CSS style to the application: Application {

[flexcoders] Changing registration point for mx:Resize effect

2006-10-04 Thread Andriy Panas
Hello flexcoders, Is it possible to control the coordinates registration point when mx:Resize component is applied? By default, Flex components define the registration point on the upper left corner (0,0). When mx:Resize effect is applied to any Flex 2 container, say mx:VBox, the

Re: [flexcoders] Reducing compiled SWF file size without RSL

2006-10-05 Thread Andriy Panas
Hello Pablo, Wednesday, October 4, 2006, 6:17:48 PM, you wrote: Just wondering how can i reduce the pre-compiled SWF file size of a very simple app = (Application + HBox + Loader + Label + HTTPService + some AS). Do not use mx.* Flex 2 framework. Work with AS3 only projects. For

Re[2]: [flexcoders] Flex 1.5 Proflier doesn't work

2006-10-05 Thread Andriy Panas
Hello umesh, Even for me the Profiler does not seems to work.I am using Flex 1.5have configured mm.cfg and debug player but it does not work..Please anybody for whom profiler is working It works for us. Check the destination where the data is stored generated by Flex 1.5 WAR

[flexcoders] A best way to capture MouseEvent.CLICK happend anywhere at the surface of any container, say VBox

2006-10-05 Thread Andriy Panas
Hello flexcoders, Task conditionals: - mx:VBox contain mx:Label and mx:TextArea that cover most of the mx:VBox container surface. MXML: mx:VBox width=100% height=80 buttonMode=true backgroundColor=#FF backgroundAlpha=0 click=onContainerSurfaceClick() mx:Label

Re: [flexcoders] Re: A best way to capture MouseEvent.CLICK happend anywhere at the surface of an

2006-10-05 Thread Andriy Panas
Hello davcavs, d Setting mouseChildren=false on the VBox should prevent the label and d textarea from receiving mouse events, so the VBox will receive clicks d anywhere on its surface: mouseChildren attribute does exactly what I need. Thanks for pointing this atribute out to me, I learned

Re[2]: [flexcoders] Changing registration point for mx:Resize effect

2006-10-05 Thread Andriy Panas
Hello Gordon, GS No, there is no concept of registration point. You'll have to GS play a Move effect in parallel with the resize effect, or write GS your own effect that does both. Thanks Gordon, your answer was helpful to me. I applied as suggested mx:Parallel with mx:Move and mx:Resize

Re: [flexcoders] How to disable particular LinkBar item?

2006-10-10 Thread Andriy Panas
Hello Sergey, SK I want to disable particular LinkBar item and make mouse pointer SK looking like arrow, not hand, while over it. How to do that? 1st) every time study source file before asking :) In this case, learning 'createNavItem' method from mx.controls.LinkBar class helps. 2nd) use

Re: [flexcoders] Using external image icons in a List Component - should be easy

2006-10-22 Thread Andriy Panas
Hello dorkie, ddfd This is an easy one but have not found an answer. I have a ddfd standard List component that will pull in and display external ddfd images. http://www.mail-archive.com/flexcoders@yahoogroups.com/msg39945.html -- Best regards, Andriymailto:[EMAIL

[flexcoders] Flash 8 File upload feature creates a new session at server

2005-12-02 Thread Andriy Panas
Dear flexcoders, We try to use seemingless experience in our Flex 1.5 application during the File uploading action while using Flash 8 API as described in the article here: http://www.macromedia.com/devnet/flex/articles/fp8_features.html The file upload using HTTP protocol works OK - the file

Re: [flexcoders] Extra space problem in ViewStack while using Text with 100% width defined

2005-12-27 Thread Andriy Panas
Hello Sergey, Tuesday, December 27, 2005, 3:43:09 PM, you wrote: Thank you for the straightforward example. I think you had encountered the problem because of ViewStack does not know exactly of what height it should be rendered, because you omitted atribute height for your ViewStack instance.

Re[2]: [flexcoders] Best way to create such type of DataGrid?

2005-12-30 Thread Andriy Panas
Hello Sergey, I agree with Sergey. You must draw the diffence between Table and DataGrid mentally. --- DataGrid displays tabular data, allows sorting in columns, support paging. Example is mx:datagrid component. --- Table displays any data in

Re: [flexcoders] Resize container to the size of its largest child

2005-12-30 Thread Andriy Panas
Hello Sergey, Friday, December 30, 2005, 11:50:50 AM, you wrote: What is the best way to resize container (e. g. Accordion) to the size of its largest child? Use mx:Accordition resizeToContent=true minHeight=720 -- Best regards, Andriymailto:[EMAIL PROTECTED]

[flexcoders] Web app built on the top of Flex 2 frawemork only requires Flash 9 player to be preinstalled, right?

2006-01-26 Thread Andriy Panas
Hello flexcoders, After I read the following quote from David Mendels from his email to Flexcoders from 09/Jan/2006: - if you are planning to ship say, in the 2nd half of this calender year, it *may* be in your interest to ultimately build with Flex

Re[2]: [flexcoders] Web app built on the top of Flex 2 frawemork only requires Flash 9 player to be preinstalled, right?

2006-01-26 Thread Andriy Panas
in 2007). With flash regards, Andriy Panas -- 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: http

[flexcoders] 2 different skins for mx.Button component inside 1 SWC theme set

2006-02-01 Thread Andriy Panas
Hello flexcoders, Is it possible to combine inside a single SWC theme multiple set of different skins for a single UI component ( say mx.Button)? Our intention is to have a single UI component (say mx.Button) with a different look and feel at the single page. Are we limited to CSS styles

Re[2]: [flexcoders] 2 different skins for mx.Button component inside 1 SWC theme set

2006-02-02 Thread Andriy Panas
Hello Matt, MH This is very possible, and documented in the About themes section of MH the following book: MH http://download.macromedia.com/pub/documentation/en/flex/2/flex2_appdev. MH pdf This book covers Flex 2 Public Beta 1. My question was related to MM Flex 1.5 software. -- Best

[flexcoders] Evaluation period for Flex 2 Developer Beta 1 is wrongly ended at multiple our machines

2006-02-17 Thread Andriy Panas
Hello flexcoders, Yesterday the evaluation period for Flex 2 Developer Beta 1 is wrongly had elapsed yesterday at 4 different our PCs. Is this a deliberate end of the evaluation period for Flex 2 Developer Beta 1 or this was caused by an error, probably connected with the end of

Re: [flexcoders] Flex 1.5 ObjectCopy again

2006-02-23 Thread Andriy Panas
Hello Stanislav, Thursday, February 23, 2006, 3:16:59 PM, you wrote: So please if anyone has source for working ObjectCopy class, please send it to me. As a true ActionScript programmer you better subscribe to Flashcoders mailing list too :) Taken From FlashCoders: use mx.utils.ObjectCopy:

Re[2]: [flexcoders] Re: Flex2 :: Seperate Mailing List :: Component developers - Framework Devlopment

2006-05-29 Thread Andriy Panas
Hello Steven, I support the fragmentation of flexcoders into separate mailing lists. 1st factor: Flex community is growing fast --- 2779 messages were posted to Yahoo! Flexcoders mailign list in May 2006 alone, while there was only 1839 messages in May

Re: [flexcoders] 1.5 : how to do an Image Pan ? (startDragLike)

2006-05-30 Thread Andriy Panas
Hello Antoine, I am also looking forward to copy this functionality in Flex 1.5 based application. To your knowledge, all drag and drop operations are controlled in Flex 1.5 by DragManager class. http://livedocs.macromedia.com/flex/15/flex_docs_en/0615.htm

Re: [flexcoders] Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Andriy Panas
Hello Renaun, Have you tried to output to Alert window or logging console the value of the variable parentApplication.myImage? Very interesting results :) I got __Resources.654702660.green.gif, what got you? ;) mx:Image source={ parentApplication.myImage } / -- Best regards, Andriy

Re: [flexcoders] Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Andriy Panas
Hello Renaun, Just fYI, in Flex 2 it should be easy to achieve what do you want to have in Flex 1.5. See example of Chafic Kazoun's method posted at Peter Elst blog: http://www.peterelst.com/blog/2005/11/19/spark-europe-chafic-kazoun/ mx:Image source={ parentApplication.myImage } / --

Re: [flexcoders] Re: Flex 1.5 - Embedbed image problem, when using multiple Flex SWFs

2006-05-31 Thread Andriy Panas
Hello Renaun, Wednesday, May 31, 2006, 5:45:06 PM, you wrote: And this is where I am not understanding what Flex is doing, if the value it correct and it still doesn't show up in the Image component something else is going on. Let's then use RSL in Flex 1.5 whenever you want to share

Re: [flexcoders] Clear Text Passwords printed out when remoteObject debug enabled

2006-06-01 Thread Andriy Panas
Hello jfournet, side. Is their an encryption method in flex? We use HTTPS protocol to transmit sensible data from the client. we open HTTPS session from inside Flex application. This approach has certain limitations and we are trying to defeat them with workarounds. -- Best regards,

Re[2]: [flexcoders] Question about History Management

2006-06-01 Thread Andriy Panas
Hello Matt, Yes, for Flex 1.5, history management requires the server. But still, history management works for static SWF files generated in offline by mxmlc Flex 1.5 standalone compiler, at least in our case. We use SWFObject in our custom HTML wrapper file to display this static SWF,

Re: [flexcoders] FDB usage

2006-06-09 Thread Andriy Panas
Hello maxym.hryniv, mh Can anyone suggest me a graphic environment for windows (or better mh eclipse) that support gde??? I want to use it with fdb debugger What is gde? -- Best regards, Andriymailto:[EMAIL PROTECTED] Yahoo! Groups

Re: [flexcoders] Re: FDB usage

2006-06-09 Thread Andriy Panas
Hello maxym.hryniv, mh OOps. Sorry, GDB. Are you looking at GDB as a rival debugger to FDB?! May I ask why?! -- Best regards, Andriymailto:[EMAIL PROTECTED] Yahoo! Groups Sponsor ~-- Get to your groups with one

Re: [flexcoders] FlexUnit question

2006-06-12 Thread Andriy Panas
Hi Max, Monday, June 12, 2006, 1:15:13 PM, you wrote: mh ts.addTest( new TemperatureConverterTest( testToFarenheight ) ); mh ts.addTest( new TemperatureConverterTest( testToCelsius ) ); I think, it is just a naming convention selected (which can be overriden by anybody, why not) in Adobe to

Re: [flexcoders] Flex 1.5 TextArea height

2006-06-14 Thread Andriy Panas
Hello Stanislav, This question was asked at Flexcoders not only once. Basically, the correct question is: How to determine the content length in mx:Text? mx:TextArea component does not measure itself when the text content is changed dynamically. Manish had suggested to override measure method

Re[2]: [flexcoders] Flex 1.5 TextArea height

2006-06-14 Thread Andriy Panas
Hello Stanislav, One more idea found by me at history of the Flexcoders mailing list is to use TextFormat.getTextExtent() function to calculate the size of the text: http://livedocs.macromedia.com/flash/mx2004/main_7_2/1840.html#40 Example: -- var

Re: [flexcoders] Need Urgent Help

2006-06-27 Thread Andriy Panas
Hello Meenakshi, You can port MeasureMap's Data slider from AS2 to AS3, for example: http://www.measuremap.com/developer/slider/ -- Best regards, Andriymailto:[EMAIL PROTECTED] Yahoo! Groups Sponsor ~-- Great things

Re[2]: [flexcoders] Flex 2.0 final: Flash player version check?

2006-06-28 Thread Andriy Panas
Hello Matt, OK, I downloaded and installed an old :) Flash player 8.0.22 (no beta, no debug) from http://fpdownload.adobe.com/get/flashplayer/installers/archive/fp8_archive.zip ( BTW, this ZIP archive does not include Flash Player 8.0.24 installer for Windows yet). So, I am sitting here in

Re[2]: [flexcoders] Flex 2.0 final: Flash player version check?

2006-06-28 Thread Andriy Panas
Hello Tolulope, Or alternatevely may be you would like to give a try to auto-update feature of Flash Player: Related Tech note article is here: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=16701594 -- Best regards, Andriymailto:[EMAIL PROTECTED]

Re[2]: [flexcoders] Re: Flash player is not a debugger?

2006-07-03 Thread Andriy Panas
Hello Matt, We have a security fix that doesn’t allow you to downgrade your player to a minor version.   Sorry for ongoing continuation of this story, may be I am not in sync, but I wonder then how Plugin Switcher tool does its job (http://www.pluginswitcher.de/). By the help of Plugin

Re[2]: [flexcoders] Flexunit Help Req, the TestRunnerBase/startTest() gives TypeError

2006-07-11 Thread Andriy Panas
Hello Beverly, I haven't gotten any answers yet.  I'm hoping someone has the answers.. :) We had recompiled locally FlexUnit SWC file out of AS source files available at http://labs.adobe.com/wiki/index.php/ActionScript_3:resources:apis:libraries#FlexUnit and this particular error that you

Re: [flexcoders] file upload fails on Leopard?

2007-10-31 Thread Andriy Panas
http://weblogs.macromedia.com/emmy/archives/2007/10/adobe_products.cfm#comments -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Re: Flash/Flex Event collision on TextField input

2007-11-01 Thread Andriy Panas
this code remains intact. -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED] On 30/10/2007, Alex Harui [EMAIL PROTECTED] wrote: What version of Flex? Is there a test case and bug for this issue? If not please file one. In looking at the code, the CHANGE event should

Re: [flexcoders] Re: Flash/Flex Event collision on TextField input

2007-11-01 Thread Andriy Panas
. -- -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-01 Thread Andriy Panas
regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Re: Event result not making sense

2007-11-27 Thread Andriy Panas
-- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED] On 17/11/2007, Alex Harui [EMAIL PROTECTED] wrote: Maybe the internal textfield is sending one. See if the event.target is different and what it is. -- *From:* flexcoders@yahoogroups.com [mailto

Re: [flexcoders] Menubar Render

2007-12-12 Thread Andriy Panas
=/anything.png height=100% width=30 / /mx:HBox Any one knows how to solve this? VELO -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Re: Flex MouseEvent and loaded SWF with mouse handlers problem

2007-12-12 Thread Andriy Panas
and to track mouse position. . -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

[flexcoders] ListEvent.ITEM_EDIT_END is being wrongly dispatched twice if the corresponding event handler includes mx:Alert

2008-02-13 Thread Andriy Panas
/ /folder folder label=Sent / folder label=Trash / /folder /mx:XMLList /mx:XMLListCollection /mx:Tree /mx:Application -- -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL

[flexcoders] Re: ListEvent.ITEM_EDIT_END is being wrongly dispatched twice if the corresponding event handler includes mx:Alert

2008-02-13 Thread Andriy Panas
); } onItemEditingEnd event handler will be still called twice, but the Alert window will be shown only if ListEvent event.reason is equal to ListEventReason.NEW_ROW -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED] On 13/02/2008

Re: [flexcoders] Re: How to retrieve the Button label name?

2008-02-22 Thread Andriy Panas
You should assign an identifier to the label, something like mx:Label id=myLabel/. Then, in the code, you can access Label's current label by calling 'myLabel.text'.

[flexcoders] Inline Tree's node name editing creates visible empty nodes in a Tree when labelFunction property is set

2008-04-22 Thread Andriy Panas
to the tree Expected Results: --- 2. New tree node name entered is displayed in a tree What do I do wrong? ps I had filled a bug at Adobe JIRA bug-database: https://bugs.adobe.com/jira/browse/SDK-15339, so far no response there. -- -- Med venlig hilsen / Best regards Andriy

Re: [flexcoders]Setting DataGrid header to transparent

2008-04-23 Thread Andriy Panas
of mx.controls.dataGridClasses.DataGridHeader from Flex 3 SDK. Otherwise, override protected drawHeaderBackground method for mx:Datagrid for Flex 2 SDK as described here: http://www.munkiihouse.com/?p=14 -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

[flexcoders] Re: Immediate setting selectedIndex to 0 on mx:Tree after changing to new dataProvider does not selects a first node in the list (although it works with mx:List as advertised)

2008-04-25 Thread Andriy Panas
Andriy Panas [EMAIL PROTECTED]: Hi Flexcoders, I am on Flex 2.0.1 SDK. My use case is as follows: 1) At the start of the application, I set dataproviders of XMLListCollection type to 2 different UI controls on stage (mx:Tree and mx:List) and then I set immediately selectedIndexes to 0

[flexcoders] Immediate setting selectedIndex to 0 on mx:Tree after changing to new dataProvider does not selects a first node in the list (although it works with mx:List as advertised)

2008-04-25 Thread Andriy Panas
/mx:Application --- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Inline Tree's node name editing creates visible empty nodes in a Tree when labelFunction property is set

2008-05-06 Thread Andriy Panas
/search?q=labelFunction+itemEditEnd, e.g http://bugs.adobe.com/jira/browse/SDK-14312 I would like Adobe to document this issue better in docs or in blogs illustrated with code samples. -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Preventing default onClick-behaviour in List-Component

2008-05-06 Thread Andriy Panas
. Are you just trying to reset what the selectedIndex was? I'd just store the last good one somewhere. -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Re: Tree - Drag Drop - prevent drop into folder

2008-05-20 Thread Andriy Panas
drag and drop operation with Flex 2.0.1 SDK Tree component if there will be some considerable interest from the public. -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

[flexcoders] Flex 2 SDK: Drag and drop node withing Tree control- how to get reference to a new parent node for the dragged node?

2008-05-20 Thread Andriy Panas
--- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

Re: [flexcoders] Re: Tree - Drag Drop - prevent drop into folder

2008-05-20 Thread Andriy Panas
for the info .. I may log a feature request for the Tree control to expose more information about the dropTarget . -- -- Med venlig hilsen / Best regards Andriy Panas [EMAIL PROTECTED]

  1   2   >