Re: [flexcoders] createPopUp constrained inside a panel ( not systemmanager )

2007-04-19 Thread Michael Schmalle
Hi, No, if I am not mistaken, all you need to do is set; window.isPopUp = true; and you will have your dragging. Peace, Mike On 4/19/07, Aldo Bucchi [EMAIL PROTECTED] wrote: and dragging... On 19 Apr 2007 11:04:57 -0700, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, var

Re: [flexcoders] Tree component label scroll bug ?

2007-04-19 Thread Michael Schmalle
This was a bug in the Tree. I thought the killed it in 2.0.1. It has to do with the tween not blocking the scrolling. You can hack a tree and fix it also. I think I overrode the scrollHandler method and returned if the tween instance was not null. Peace, Mike On 18 Apr 2007 16:42:48 -0700,

Re: [flexcoders] Image as Button background

2007-04-19 Thread Michael Schmalle
Hi, You would need to create a custom skin class that inherits UIComponent(child management). If you are talking about keeping the border AND having a button. If not, just use an image as the upSkin etc.. Peace, Mike On 4/19/07, tkacyndra [EMAIL PROTECTED] wrote: does anyone know if

Re: [flexcoders] Re: [Announce]AsWing A2 1.0, AsWing A3 0.8 and SkinBuilderLAF released!!

2007-04-16 Thread Michael Schmalle
The interface... I'm sure this is aimed at Java developers that know java and want a running start (I guess). Peace, Mike On 16 Apr 2007 05:12:44 -0700, Stefan Schmalhaus [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, iiley [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Tree labelField and hiding leaf nodes

2007-04-16 Thread Michael Schmalle
Hi, I answered a question like this last week, try looking into the dataDescriptor property. You can do a whole bunch of nice stuff creating your own dataDescriptor. To get you started, subclass DefaultDataDescriptor and override the getChildren() method. Only return the nodes you want

Re: [flexcoders] change Panel.titleIcon via actionscript

2007-04-15 Thread Michael Schmalle
Hi, It works; You need to do this in your class; [Embed(source=myOtherIcon.png)] private var helpIcon:Class; ... (somewhere in AS) myPanel.titleIcon = helpIcon; This has to be embedded at sometime when you compile. The catch is setting the titleIcon with a type Class property. Peace, Mike

Re: [flexcoders] open source plug-in AS frame work ?

2007-04-14 Thread Michael Schmalle
I bet he means 'plugins' like some web apps are starting to have. I think your answer is; You need to create a framework that has a public interface API. Once this api is set you can load any component/module at runtime and share within the specified ApplicationDomain. I am working on something

Re: [flexcoders] Re: Tree component that doesn't display all nodes?

2007-04-13 Thread Michael Schmalle
Hi, You could also write a custom dataDescriptor that subclasses DefaultDataDescriptor. In that class override the getChildren() method and only return the children you want based on the nodes you want filtered. Peace, Mike On 12 Apr 2007 22:22:04 -0700, dorkie dork from dorktown [EMAIL

Re: [flexcoders] simple question backgroundColor

2007-04-13 Thread Michael Schmalle
backgroundGradientColors=[#53A1DE,#A2CCEE] backgroundColor=#FF Peace, Mike On 13 Apr 2007 13:16:29 -0700, Patrick Lemiuex [EMAIL PROTECTED] wrote: I am trying to change the backGroundColor of my app... how do i put in an array for a gradient, i simply forget the syntax? Sorry for

[flexcoders] Modal Windows - CPU Intensive?

2007-04-13 Thread Michael Imhoff
Hi Everyone, I've noticed that modal windows seem to be extremely processor intensive. The cpu spikes to 40 or 50 and stays there until the window has been closed. Has anyone experienced this and/or knows of a workaround? Have a good day, Michael

Re: [flexcoders] XML to Number from an HTTPservice

2007-04-11 Thread Michael Wills
Have you tried casting using the as operator? num : Number = result.value.I.Want as Number; I'm new and still learning though. I just didn't see anyone else reply yet... Hope that helps, Michael lcujino wrote: I've created an HTTPservice to put some information from an XML on my

Re: [flexcoders] Bubble-Mind is now released to you !

2007-04-11 Thread Michael Wills
I'll try to give it a shot when I can. I use Freemind quite extensively so it could be good to compare. An online version usable anywhere definitely has some advantages. Michael ecpmaz wrote: Yeah I know it appears like an ad but I wanted to make a post here. Some of you here have really

[flexcoders] HTTPService where parameter has hypen or underscore and bypassing automatic form encoding of data with bytearray?

2007-04-11 Thread Michael Wills
is encoded to %3A which API doesn't recognize. Is there a way to pass this data directly without going through this kind of encoding? Perhaps I would need to use a byte array or something like that? I'll start digging in that direction. Thanks in advance, Michael

Re: [flexcoders] Help any body

2007-04-11 Thread Michael Wills
What is the problem you are experiencing? When you click A, do you filter the data provider of the datagrid? Michael nsiddiquics wrote: I am making Admin Panel in flex. I am making websie for the TV channel that is food cooking channel. I have used data services to bring data from MySQL

Re: [flexcoders] HTTPService where parameter has hypen or underscore and bypassing automatic form encoding of data with bytearray?

2007-04-11 Thread Michael Wills
a warning and not an error. I'll have to try that again to see. The tech on the server is just an API so I can't change that end of it. Many thanks, Michael Peter Farland wrote: If you're using HTTPService, I think you may be able to set the contentType to something else like text/plain and prepare

Re: [flexcoders] Re: Best way to communicate with database

2007-04-11 Thread Michael Wills
, etc. Essentially then you would just be changing your view as you move it to Flex. Just thinking out loud hoping it helps. :-) Michael taprokop wrote: I was just wondering if you found any resolution to your question. I am also looking at some combinations with Zope as well as Plone

Re: [flexcoders] Error msg show Application not component

2007-04-11 Thread Michael Wills
Are you using Flexbuilder 2? In Flexbuilder 2 the problem tab shows the line number of the syntax error allowing you to go to the problem directly. Michael boy_trike wrote: I have a new application with a few components. If I have a syntax error in one of my components, the problems tab

Re: [flexcoders] HTTPService where parameter has hypen or underscore and bypassing automatic form encoding of data with bytearray?

2007-04-11 Thread Michael Wills
Just tried it out again. Flex complains that text/plain is invalid and ignores it on the request. It is still application/x-www-form-urlencoded. Thanks though, Michael Michael Wills wrote: Hi Pete, Thanks. I was hoping I could do something like that but Flexbuilder complains about

Re: [flexcoders] Re: Error msg show Application not component

2007-04-11 Thread Michael Wills
Oh that's odd. So the columns Resource, In Folder, and Location only show the project name? That is odd indeed. And when you right click on the error and choose Go to from the context menu, it doesn't go anywhere either then? Michael boy_trike wrote: Sorry I was not more specific. Yes, I

Re: [flexcoders] Re: Error msg show Application not component

2007-04-11 Thread Michael Wills
Ah good point. Bruce, is the component in question using any precompiled SWC libraries? Michael Tracy Spratt wrote: I have seen this when the problem is in the project settings, like a deleted source folder or something. Tracy

Re: [flexcoders] 360Flex vs. Adobe MAX - which would you attend?

2007-04-10 Thread Michael Schmalle
And for those who live in BFE New Hampshire(grew up in Seattle though), I will kiss the granite and look for after thoughts. :) Peace, Mike On 10 Apr 2007 06:12:11 -0700, Jeffry Houser [EMAIL PROTECTED] wrote: At 08:39 AM 4/10/2007, David Mendels wrote: Hi, MAX will go deep in the

[flexcoders] Re: Module Interface Problems

2007-04-07 Thread Michael Ritchie
somehow. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Ritchie Sent: Thursday, April 05, 2007 11:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Module Interface Problems Alex

[flexcoders] Re: Module Interface Problems

2007-04-06 Thread Michael Ritchie
? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Ritchie Sent: Thursday, April 05, 2007 11:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Module Interface Problems Alex, Lol, you said tickling, haha. Yes, this is within

[flexcoders] User Interface Architect, Stealth-mode VC-backed Investing Web Startup (San Francisco, CA)

2007-04-05 Thread Michael Sha
Forward along to those UI gurus you know who want to join a team building something big. -- We are a well-funded, early-stage consumer web startup: Who thinks figuring out how to invest your money is too difficult. We have a vision of how to revolutionize the way people

[flexcoders] Re: Module Interface Problems

2007-04-05 Thread Michael Ritchie
, that ModuleLoader won't load its module. Did you see it get loaded and dispatch READY? This is all within a single domain right? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Ritchie Sent: Wednesday, April 04, 2007 12:40

Re: [flexcoders] Would you like to debug? No causes browser to crash.

2007-04-04 Thread Michael Schmalle
Hi, I'm having the same problem except it happens intermitendtly when pressing F11. Both FF2 and IE7. It says I need to reinstall Flash Player. After I kill the browser, wait a second I can run again. This happens about every 10 debug run. This all started happening after I installed the

Re: [flexcoders] Re: Would you like to debug? No causes browser to crash.

2007-04-04 Thread Michael Schmalle
BTW, The popup dialog says; The installed Flash Player is the wrong version. Reinstall Flex Builder or a debug version of Flash Player 9. This all started happening AFTER I installed the Apollo plugin. Peace, Mike On 04 Apr 2007 10:24:39 -0700, ben.clinkinbeard [EMAIL PROTECTED] wrote:

[flexcoders] Re: Module Interface Problems

2007-04-04 Thread Michael Ritchie
had a chance to see it and create the child. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Ritchie Sent: Tuesday, April 03, 2007 1:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Module Interface

[flexcoders] Re: Module Interface Problems

2007-04-03 Thread Michael Ritchie
From my experience there is a definite timing issue when loading modules. The ModuleLoader ready event is fired before the Module is fully loaded and you have the ability to talk to it through a common interface (hence the error reporting access to a null value). I would term this one as a bug

[flexcoders] Re: Module Interface Problems

2007-04-03 Thread Michael Ritchie
Well scratch those ideas. NO matter what I do the loaded module reports that the ModuleLoader.child is Null. Back to the lab for more experiments. -mr --- In flexcoders@yahoogroups.com, Michael Ritchie [EMAIL PROTECTED] wrote: From my experience there is a definite timing issue when loading

[flexcoders] Re: Module Interface Problems

2007-04-03 Thread Michael Ritchie
Using ModuleManager to load the modules allows me to access the Interface methods(in this case 'selectedMedia'). It seems that casting the child within ModuleLoader as an ISoundPlayer interface (in my example) always reports the child as NULL when loaded. However, casting the loaded module as a

Re: [flexcoders] getChildren

2007-04-03 Thread Michael Schmalle
Hi, You could do this; try { children = obj.getChildren(); } catch (e:Error) { trace(e, obj did not have getChildren()); } Peace, Mike On 03 Apr 2007 11:41:25 -0700, blc187 [EMAIL PROTECTED] wrote: is there a way to tell if an object has a getChildren method before calling it? I'm

[flexcoders] Re: Module Interface Problems

2007-04-03 Thread Michael Ritchie
); } _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Ritchie Sent: den 3 april 2007 11:24 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Module Interface Problems From my experience there is a definite timing issue when loading modules

Re: [flexcoders] invalidateSize() in tandem with invalidateDisplayList()

2007-04-02 Thread Michael Schmalle
There are weird times you might want your component remeasured but not have updateDisplayList() run. Here we are talking about special cases. I agree, most of the time you want the component to redraw after measure() is called. Peace, Mike On 4/2/07, Bjorn Schultheiss [EMAIL PROTECTED] wrote:

Re: [flexcoders] Relative paths in CSS embeds?

2007-03-29 Thread Michael Schmalle
. Peace, Mike On 28 Mar 2007 06:02:31 -0700, Brett Levine [EMAIL PROTECTED] wrote: Still haven't been able to figure this one out. Do you think it would be worth trying to make the theme a dynamically loaded stylesheet? On Mar 22, 2007, at 1:01 PM, Michael Schmalle wrote: Ah, You are using

Re: [flexcoders] Re: New Adobe Products and Flex

2007-03-28 Thread Michael Schmalle
Blaze and 8 Ball. Somehow a product release date of 4/20 That made me laugh. Really, sometimes when you put things together, it's like Freudian slip. Yeah, All those past Macormedia people blazing those trees, opps I mean trails! got for it! Peace, Mike On 3/28/07, Bjorn Schultheiss [EMAIL

Re: [flexcoders] Is anybody else getting duplicate messages?

2007-03-28 Thread Michael Schmalle
seems like gmail just swallows and gulps... none here. On 3/28/07, Ben Marchbanks [EMAIL PROTECTED] wrote: Yes Yes Yes Doug McCune wrote: I've been getting 2 sometimes 3 copies of many messages. It's quite annoying and this is on top of an already high volume list. On 3/28/07, Cutter

Re: [flexcoders] Relative paths in CSS embeds?

2007-03-23 Thread Michael Schmalle
if I follow your example mine will work too. brett On Mar 22, 2007, at 11:25 AM, Michael Schmalle wrote: Hi, Use a url like; source = ../../MyThemProject/images/bg_main.gif)'. I do this for css outside of my current project and works fine. Peace, Mike On 3/22/07, Brett Levine [EMAIL

Re: [flexcoders] Can't add objects to a new Apollo window

2007-03-23 Thread Michael Schmalle
Hi, If you read the docs, they say you cannot do this in the Alpha version of Apollo. It will be in a beta or for sure the final. Peace, Mike On 23 Mar 2007 08:50:22 -0700, Mark Doberenz [EMAIL PROTECTED] wrote: I have an Apollo app that I want to make open another window and load a

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-22 Thread Michael Levine
that I haven't yet come across anyone else who has attempted and accomplished this in Flex. Perhaps another option is to restructuring the underlying data itself. I will look into this and update this thread with any new solutions/suggestions. Thanks, Michael --- In flexcoders@yahoogroups.com, Adam

Re: [flexcoders] Relative paths in CSS embeds?

2007-03-22 Thread Michael Schmalle
Hi, Use a url like; source = ../../MyThemProject/images/bg_main.gif)'. I do this for css outside of my current project and works fine. Peace, Mike On 3/22/07, Brett Levine [EMAIL PROTECTED] wrote: Yes, of course. If the .css file and the .mxml file using it are in the same project that

Re: [flexcoders] Apollo - multi-window communication

2007-03-22 Thread Michael Schmalle
I would go out on a limb and say yes. Not in alpha but, if we are going to be able to addChild() on a newly created window, I don't see why you could communicate with a window that you created from the main app. Peace, Mike On 22 Mar 2007 14:32:13 -0700, Mark Doberenz [EMAIL PROTECTED] wrote:

[flexcoders] Looking for Flex expert (project-based or full-time based in San Francisco)

2007-03-21 Thread Michael Sha
Hi, I'm looking for a Flex guru who could help us build an interactive charting application. To give you a sense of the type of functionality we are looking to build, Google Finance charts are a pretty good rough proxy: http://finance.google.com/finance?q=goog We have room on our team for

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread Michael Levine
XMLListCollection(XMLList(event.result..books)); // Suppress repeating Author values var lastAuthor:String = ; var i:int = 0; for each (var book:XML in books) { if ([EMAIL PROTECTED] == lastAuthor) { [EMAIL PROTECTED] = ; } lastAuthor = [EMAIL PROTECTED]; i++; } Michael

[flexcoders] User Interface Architect, Stealth-mode VC-backed Investing Web Startup (San Francisco, CA)

2007-03-18 Thread Michael Sha
Feel free to forward along to those UI gurus you know who want to join a team building something big. -- We are a well-funded, early-stage consumer web startup: Who thinks figuring out how to invest your money is too difficult. We have a vision of how to revolutionize the

Re: [flexcoders] Re: Apollo (Should Adobe Keep the Name)

2007-03-18 Thread Michael Schmalle
What do I care what they name the product. Your missing the point, how many people play with their cell phones and are amused with that? :) Peace, Mike On 17 Mar 2007 08:55:39 -0700, Paul DeCoursey [EMAIL PROTECTED] wrote: You are missing the I don't care option. What do I care what they

Re: [flexcoders] set percent value to a Panel's width ?

2007-03-17 Thread Michael Schmalle
Hi, panelID.percentWidth = 17; Peace, Mike On 16 Mar 2007 18:27:12 -0700, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: how do i set percent values to a Panel's width and height in ActionScript? this is what I want : panelID.setActualSize(17%,100%); // this returns an error OR

RE: [flexcoders] Re: Fascinating problem hiding columns in a DataGrid

2007-03-16 Thread Michael Imhoff
Hi Peter, I recently posted about a very similar issue that might be of some help. Please take a look at http://michael.omnicypher.com/2007/03/issues-with-datagrid-column-visibility .html and let me know if that does the trick. Hope this helps, Michael _ From: flexcoders

RE: [flexcoders] Re: Tree, drag+drop, and XML

2007-03-14 Thread Michael Imhoff
= 0; i ds.length; i++ ){ trace(XML(ds[i]).toXMLString()); } } Hope this helps, Michael _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen Sent: Wednesday, March 14, 2007 12:11 AM To: flexcoders

Re: [flexcoders] Flex 2.0 Primitive Explorer

2007-03-14 Thread Michael Schmalle
Great work Jason, surprises every month! Peace, Mike On 3/14/07, Brendan Meutzner [EMAIL PROTECTED] wrote: This is going to be incredibly useful... thanks Jason! -- Brendan Meutzner Stretch Media - RIA Adobe Flex Development [EMAIL PROTECTED] http://www.stretchmedia.ca On 3/14/07, Bruce

Re: [flexcoders] Chrome behind content?

2007-03-11 Thread Michael Schmalle
Well man, this is a hack and it works though :) I had the same issue and so far this hasn't blown up in my face. Try this on for size... the backgroundInstance is what is going behind the content but infront of the border. override mx_internal function createContentPane():void {

Re: [flexcoders] Re: Chrome behind content?

2007-03-11 Thread Michael Schmalle
, but gets measure called on 'em. Fuggit, everything else works; thanks a bunch Michael! On 3/11/07, Jesse Warden [EMAIL PROTECTED] wrote: Thanks Michael, I'll try your code. Paul, if you look in mx.containers.Container, you can see how they override and abstract the DisplayList API so that you

Re: [flexcoders] Mac style drop-down sheet

2007-03-10 Thread Michael Wills
Hmm something like this link? http://weblogs.macromedia.com/mc/archives/2006/05/mac_os_x-lookin.cfm Or something more specific to drop-downs? Michael ashifsayani wrote: Hi, I'd seen a posting where someone created a mac style drop-down sheet in Flex. I can't seem to find the link

Re: [flexcoders] Web Services: Nearing Wit's End

2007-03-10 Thread Michael Wills
/serviceCapture/) although I can only vouch for Charles. I haven't used Service Capture before. Perhaps using one of those or a utility like that you might be able to see what is and is not coming across the wire. Hope that helps! Michael Shibli Zaman wrote: I’ve followed every single tutorial

Re: [flexcoders] Overlaping tabs - is it possible ?

2007-03-07 Thread Michael Schmalle
Have fun, One thing I think Tom is forgetting is that those tabs are arranged by index. This also means that you have to accept that the order they appear is the order of z index also. The only way is to maintain a proxy array and completely re implement the layout part of the tab bar. This

Re: [flexcoders] Set Button Icon at Runtime !!

2007-03-07 Thread Michael Schmalle
Hi, You could use setStyle() at runtime and load a module that holds your assets library. Peace, Mike On 3/7/07, bobrene07 [EMAIL PROTECTED] wrote: Hello, i don't want to embed my image in my SWF, I want to set my button Icon image at Runtime. Do you know how i could possibly do that ??

Re: [flexcoders] Re: Set Button Icon at Runtime !!

2007-03-07 Thread Michael Schmalle
with an image in it ? anyone ?? thx 4 ur help bor --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, You could use setStyle() at runtime and load a module that holds your assets library. Peace, Mike On 3/7/07, bobrene07 [EMAIL

Re: [flexcoders] File Exploer and Java + JRun4

2007-03-06 Thread Michael Schmalle
Hi as a moderator, could you please only post questions pertaining to component development on flexcomponents, the question belongs on flexcoders. Also, please do not cross post on the two lists. Thanks, Mike On 06 Mar 2007 00:48:59 -0800, Cato Paus [EMAIL PROTECTED] wrote: Hi All :) I'm

[flexcoders] firstTabStyleName?

2007-03-05 Thread Michael Imhoff
Does firstTabStyleName work for either the TabNavigator or TabBar? I see the style definitions in both classes, but I don't see how and/or if they are implemented. Thanks for your help, Michael

Re: [flexcoders] Basic inheritance question

2007-03-01 Thread Michael Schmalle
BTW, You could put an else statement on that to throw() an error if you really cared about the currentTarget not setting the style correctly. I think this is the most elegantly decoupled way to attack the problem. Peace, Mike On 2/28/07, Michael Schmalle [EMAIL PROTECTED] wrote

Re: [flexcoders] Getting a Third-Party Component into Builder 2?

2007-03-01 Thread Michael Schmalle
Hi, Is it an SWC file? If so, you need to go CurrentProject - right click, Properties - Flex Build Path - Library Path Tab; Then either choose, Add SWC Folder or Add swc. From there you should be good to go. Peace, Mike On 2/28/07, Bruce H. Johnson [EMAIL PROTECTED] wrote: I

Re: [flexcoders] Basic inheritance question

2007-03-01 Thread Michael Schmalle
Or... If you want to get really crazy and say what is the way you should do it in perfection world, it would be; if (event.currentTarget is IStyleClient) IStyleClient(e.currentTarget).setStyle(color, red); Peace, Mike On 2/28/07, Jamal Romero [EMAIL PROTECTED] wrote: Hi, Thanks for your

Re: [flexcoders] Can Flex really compete with AJAX?

2007-03-01 Thread Michael Schmalle
Heh, And why is he 'comparing' Ajax to Flex. Bottom line is, 'truly dynamic content' depends on what you are talking about. If you are trying to take javascript and pigeon hole it into as3, have fun, you can't. The design patterns of the Flex framework are roots. A crafty developer can spin

Re: [flexcoders] ButtonBar's child enabling

2007-02-26 Thread Michael Schmalle
Hi, Try; var searchIndex:int = 2; var button:Button = getChildAt(searchIndex) as Button; button.enable = false; or use the other DisplayObjectContainer methods for getting a child instance; - getChildByName() etc Peace, Mike On 2/24/07, metalbeard [EMAIL PROTECTED] wrote: Hi, Is there

Re: [flexcoders] Finding out when an arraycollection in my model is set

2007-02-26 Thread Michael Schmalle
Hi, Why not just make it a get, set bindable property in your ModelLocator? Then you could dispatch and event or really whatever you want to do. Peace, Mike On 2/24/07, Webdevotion [EMAIL PROTECTED] wrote: Hello, How can I now when my arraycollection in my modellocator is filled with

Re: [flexcoders] ButtonBar's child enabling

2007-02-26 Thread Michael Schmalle
Oh, supposed to be var button:Button = buttonBar.getChildAt(searchIndex) as Button; Mike On 2/24/07, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Try; var searchIndex:int = 2; var button:Button = getChildAt(searchIndex) as Button; button.enable = false; or use the other

Re: [flexcoders] broken: stacked AreaChart when using horizontal DateTimeAxis

2007-02-24 Thread Michael Luu
bump. can anyone help me out?

Re: [flexcoders] This would make me very happy, a datagrid on STERIODS!

2007-02-19 Thread Michael Schmalle
I have been experimenting with styleNames in itemRenderers. Which like he said would be; styleNameField would access the correct formating in the model. It does work. There are a couple of options, still in the labs. ;-) Peace, Mike On 2/19/07, Ralf Bokelberg [EMAIL PROTECTED] wrote: How

Re: [flexcoders] backgroundImage on Canvas, Not working in Skinned app?

2007-02-18 Thread Michael Schmalle
Code you post your code and css? Can't really help without that. Peace, Mike On 2/18/07, lostinrecursion [EMAIL PROTECTED] wrote: Could someone help me with this? I am going bananas. I have a skinned app that I am developing (custom skinned based on the Obsidian theme, if you know what

RE: [flexcoders] Windows Vista Flex

2007-02-16 Thread Michael Imhoff
to the Final? Hope everyone has a good weekend, Michael _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bryan Clover Sent: Friday, February 16, 2007 10:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Windows Vista Flex Hi All, I'm new to this group

RE: [flexcoders] How to show theme when app is loading?

2007-02-16 Thread Michael Imhoff
You might want to take a look at the following blog post which discusses preloaders. http://www.onflex.org/ted/2006/07/flex-2-custom-preloaders.php _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bartonlistick Sent: Friday, February 16, 2007 4:43 PM To:

Re: [flexcoders] Continuations support? or smart sleep()?

2007-02-14 Thread Michael Schmalle
Hi, yeah he timer class does it but; function example { trace(before); sleep(2000); trace(after 2 seconds); } Will not work. The Flash player exectues in order of the stack. So, you can't have a sleep method inside a method block and halt the method block. Although something like this might

Re: [flexcoders] Continuations support? or smart sleep()?

2007-02-14 Thread Michael Schmalle
to the function and not the single parameters contained within the rest Array. Dirk. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Michael Schmalle *Sent:* Wednesday, February 14, 2007 4:32 PM *To:* flexcoders@yahoogroups.com *Subject:* Re

RE: [flexcoders] Right click on Tree's item

2007-02-14 Thread Michael Imhoff
to the itemRenderer and therefore the data you need access to. I put a working example with source code up for you at the following url: http://michael.omnicypher.com/2007/02/flex-trees-with-context-menu_14.html Hope this helps and have a great day, Michael _ From: flexcoders

Re: [flexcoders] Re: Want the SWEETEST Flex theme(s) ever? Contest!

2007-02-11 Thread Michael Schmalle
Haha, How can you even take this seriously? This has 'infomercial' written all over it! Peace, Mike On 2/11/07, superstella_uk [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Brendan Meutzner [EMAIL PROTECTED] wrote: I agree. If it was a serious

Re: [flexcoders] Re: Flex Coding Guidelines

2007-02-11 Thread Michael Schmalle
Hi, I was expecting to get ready and fight over this stuff, but hey, you are sticking with Adobe's conventions. I don't think there is really anything I disagree with. Although I do use in my component classes, dragButton_mouseDownHandler(event:MouseEvent):void When you start getting the

Re: [flexcoders] Re: Flex Coding Guidelines

2007-02-11 Thread Michael Schmalle
I think it makes code less readable and Oh lets all agree to disagree on this one. Which side do you butter your bread? On the top or bottom, what??? On the sides!!! ? I can't stand curly braces on the method line, doesn't allow a space from the method signature to fully read and seems

Re: [flexcoders] Override owner in TreeItemRenderer

2007-02-10 Thread Michael Schmalle
Hi, you need to; ExtendedTree(owner).setPath([EMAIL PROTECTED]); You have to cast. Peace, Mike On 2/10/07, syabro [EMAIL PROTECTED] wrote: I need a send [EMAIL PROTECTED] to an owner (tree). I've extend Tree class and write function Tree.setPath(); But when I tried to use this function

[flexcoders] Re: Putting a Rectangle around a selected line in a List component

2007-02-08 Thread Michael
to add 3 pt. border g.drawRect(0, 01, width, height); //g.endFill(); indicator.x = x; indicator.y = y; } // --- In flexcoders@yahoogroups.com, Michael [EMAIL PROTECTED] wrote: I'm fairly new at this and am trying

Re: [flexcoders] Re: Putting a Rectangle around a selected line in a List component

2007-02-08 Thread Michael Schmalle
wastes time. Peace, Mike On 2/8/07, Michael [EMAIL PROTECTED] wrote: I found the solution. I had to override the ListBase class in my List compnent extention, not the List class itself as it was just overriding the ListBase class drawHighlightIndicator() function

Re: [flexcoders] Scoping Issue

2007-02-08 Thread Michael Schmalle
Same issue here, As a moderator of the flexcomponent mailing list, PLEASE do not cross post on flexcoders and flexcomponents. I guarantee you half your questions will not be answered when you do this. If it is a component question dealing with the framework ask on flex components, if it is

Re: [flexcoders] Re: Object.addEventListener vs.. adding them inline via MXML

2007-02-08 Thread Michael Schmalle
Ralf, That is an interesting approach. I just have never had the need for something like that.. yet. Didn't I read somewhere that the order you add listeners is the order they get dispatched in as3 now? Plus you can use priorities. PS From an OOP standpoint, I wouldn't do it , I would just

Re: [flexcoders] tree of extended components? possible?

2007-02-08 Thread Michael Schmalle
Yes, Look at the itemRenderer property of the Tree. It's exactly what you want. You might also check out dataDescriptiors if your model is complicated and you want to extend the tree using your custom component children(itemRenderer) and model. Peace, Mike On 2/8/07, tinkiknit [EMAIL

[flexcoders] Stealth-mode Startup seeks Superstar Software and User Interface Developer (SF Bay Area)

2007-02-08 Thread Michael Sha
Tired of working for a big company where things move slowly and it's hard to make an impact at the level of shaping the course of the company? Not sharing in the upside when the projects you work so hard on are successful? Want to join a small team of people passionate about creating something

Re: [flexcoders] Re: Object.addEventListener vs.. adding them inline via MXML

2007-02-07 Thread Michael Schmalle
Object.addEventListener( click, [funct1, funct2, funct3] ); No, 1. as3 is strongly typed which means the method expects a function when it is getting an array. 2. addEventListener wouldn't even know what to do with an array. You could, if you had your own subclass override addEventListener to

Re: [flexcoders] Re: Object.addEventListener vs.. adding them inline via MXML

2007-02-07 Thread Michael Schmalle
could be renamed in a future release to something like mouseClick and then your code wouldn't work. Or even worse, you write cllck, and then for days even months, you think your app isn't working or 'works' a certain way. Come to find out the event wasn't even getting captured. :) This is

Re: [flexcoders] WARNING: css type selectors are not supported in components?

2007-02-07 Thread Michael Schmalle
Hi, In a custom component you cannot have; Button { ... } You have to specify them in the Application. Peace, Mike On 2/7/07, Brian Holmes [EMAIL PROTECTED] wrote: I'm getting this warning message since I upgrade to FB 2.01 and i can't seem to get rid of it. I don't have any inline css,

Re: [flexcoders] Re: Serious Bug in HistoryManager (introduced in latest release?)

2007-02-07 Thread Michael Schmalle
decouples the dependency of ManagerA in the last version. may be wrong here but it makes sense to me. Peace, Mike On 2/7/07, Michael Schmalle [EMAIL PROTECTED] wrote: Hey, Don't get me wrong here but, what happens when you use getClassDefinition() and you didn't link in your class as a static

Re: [flexcoders] Re: Serious Bug in HistoryManager (introduced in latest release?)

2007-02-07 Thread Michael Schmalle
Hey, Don't get me wrong here but, what happens when you use getClassDefinition() and you didn't link in your class as a static dependency? Same error as you get here. Is it a flaw or a chicken and egg thing like 'my computer can't entirely think for me' thing. Peace, Mike On 2/7/07, Bjorn

[flexcoders] Putting a Rectangle around a selected line in a List component

2007-02-06 Thread Michael
I'm fairly new at this and am trying to extend a List component so that a rectangle will appear round the selected line (and around the roll-over) instead of a solid color. I'm assuming that the focusRect property that is inherited from the InteractiveObject is the one I need to deal with, but

Re: [flexcoders] flash 9 and firefox 2.0

2007-02-05 Thread Michael Schmalle
I use the flash player 9 with firefox 2.0 and it works fine. Peace, Mike On 2/5/07, dantmcgowan [EMAIL PROTECTED] wrote: All, I have been asked about flash player 9 and support for firefox 2.0. I looked here: http://www.adobe.com/products/flashplayer/productinfo/systemreqs/ and did not see

Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Michael Schmalle
Hi, try adding a listener to the systemManager; IE systemManager.addEventListener(MouseEvent.MOUSE_UP, systemManager_mouseUpHandler); Peace, Mike On 2/5/07, Douglas Knudsen [EMAIL PROTECTED] wrote: I'm converting a Flex 1.5 app to 2.0. Under 1.5 I used a event on a HBox called

Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Michael Schmalle
to fire a event then that executes a method inside the component representing the bluish box. Starting to think maybe just fire the mouseOut event and ignore this possible user accident! DK On 2/5/07, Michael Schmalle teoti.graphix@ [EMAIL PROTECTED] gmail.com wrote: Hi, try adding

Re: [flexcoders] Is it possible to extends an Interface to an MXML Component ?

2007-02-05 Thread Michael Schmalle
Hi, mx:Canvas implements=my.package.MyInterface, ect,etc /mx:Canvas Peace, Mike On 2/5/07, helihobby [EMAIL PROTECTED] wrote: Of course you can extends an custom interface to an Action Script Class. But is it possible to extend an Interface to an MXML Components ? If so, what's the syntax

Re: [flexcoders] Can drag-able content within a container, update it's Scrollbars?

2007-02-04 Thread Michael Schmalle
Hi Mike Check out the Panel.as class for the standard way of dragging things in Flex. Don't use startDrag() and stopDrag(). You will see addEventListener() to the systemManager and stage. in the sm.MOUSE_MOVE is where your actual instance logic goes. As far as your scroll bars question; Put

Re: [flexcoders] Clipping of RawChildren ?

2007-02-04 Thread Michael Schmalle
Hi, Yes you are losing the ability to clip content using rawChildren. Cliping occurs with a single content child or contentPane with multiple content children. You will need to create a content raw child that will hold your textfields. Then create a FlexSprite mask and set the mask property of

Re: [flexcoders] Re: Can Flex directly replace Flash????

2007-02-03 Thread Michael Schmalle
is how to handle all the Drag/Drop logic with the Icons, Sounds interesting. :) I would make a component, MapViewer extends UIComponent. Composite 2 components into this component. - MapLoader extends SWFLoader - MapAssets extends Canvas MapViewer will be the control into positioning the

Re: [flexcoders] Possible to edit and recompile Flex framework?

2007-02-01 Thread Michael Schmalle
Hi, How are your loading the moudle with the navigator? Deferred? Are you using the chnage event? Do you have a simple test case. Peace, Mike On 2/1/07, zzwi89 [EMAIL PROTECTED] wrote: I am running into an issue where the HistoryManager is referencing a null object and throwing an error

Re: [flexcoders] Re: Possible to edit and recompile Flex framework?

2007-02-01 Thread Michael Schmalle
Hi This is way out in left field. But it looks like you are loading the modules into the same ApplicationDomain and since the HistoryManager is a singleton based in each domain. Try including a tabnavigator in your shell application just for the hell of it. Left me know. Make sure to

Re: [flexcoders] Re: Possible to edit and recompile Flex framework?

2007-02-01 Thread Michael Schmalle
Bjorn, I forgot about that but that is basically what I said without the addChild() part. so the static intializer will do the trick alone. Peace, Mike On 2/1/07, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Here's a message from Alex Harai. I think the same applies for your history manager

<    2   3   4   5   6   7   8   9   10   11   >