[flexcoders] Flex2B3 :: vocabulary :: field vs. variable vs. property

2006-05-10 Thread Michael Schmalle
Hi, Lets get a concensus... When I am writting comments, should I use field to describe something like... teo_internal var dragEnabledChanged:Boolean = false; or variable? I know these are public function set dragEnabled(value:Boolean):void properties. I have wondered this for awhile on

Re: [flexcoders] How to Debug Flex 2 Beta 3 with FireFox

2006-05-10 Thread Michael Schmalle
Hi, Goto Window - Preferences - General - Web Browser; Check FireFox and that will do it ;-) Peace, MikeOn 5/10/06, mvbaffa [EMAIL PROTECTED] wrote: Hi All, I have Internet Explorer and ForeFox installed, FireFox is my default browser. When I ask Flex 2 Beta 3 to debug my application it

Re: [flexcoders] BackgroundColor

2006-05-10 Thread michael . corbridge
backgroundColor=#008040 fillColors=[#008040,#008040] gets you a green background fillColors=[#008040,#008040] gets you a green background with an momentary flash of grey --

Re: [flexcoders] Setting the insertion point (caret) in a text input field

2006-05-10 Thread Michael Schmalle
Hi, You could use an event listener for the controlName component FocusEvent.FOCUS_IN and in the handler event.currentTarget.setSelection(0,0); I am not sure where the setSelection() method comes from throught the event. Most likly it's the currentTarget property. something like that ?

Re: [flexcoders] Re: Cairngorm Sample Store

2006-05-11 Thread michael . corbridge
I would place: org.nevis.cairngorm.* in your: WEB-INF\flex\user_classes others may have different ideas A working cairngorm app updated to fds2_B_05_08 is being sent to you. stefan_schmalhaus To: flexcoders@yahoogroups.com [EMAIL PROTECTED] cc: Sent by: Subject: [flexcoders]

Re: [flexcoders] Animated DragTile component

2006-05-11 Thread Michael Schmalle
Picasa like visual feedback Ha, you get going and you just can't stop! Peace, Mike On 5/11/06, Ely Greenfield [EMAIL PROTECTED] wrote: While I'm at it, I thought I'd mention that I posted a new component for your viewing/using/learning pleasure, the DragTile component. It adds

[flexcoders] Flex2 :: future components :: For a short read

2006-05-12 Thread Michael Schmalle
Hi, Well now that I am just out of afterburnner mode and the weekend is upon me; I would like to post a url for those interested in a quick Friday morning read. http://www.flex2components.com/f2cblog/2006/05/12/flex2-frameworks/ Some of you application developers, component devs also, might

Re: [flexcoders] Icons Buttons

2006-05-12 Thread Michael Schmalle
Hi, You just need to create a Skin class that has no graphics for the upSkin style. Set labelPlacement to 'bottom' Adjust padding and you are set. See the docs Skinning programatically section for more info on how to create the ButtonSkin class. Peace, MikeOn 5/12/06, s_hernandez01 [EMAIL

Re: [flexcoders] Icons Buttons

2006-05-12 Thread Michael Schmalle
Not to mention, This is a perfect example of where an MXML component is perfect. Peace, MikeOn 5/12/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, You just need to create a Skin class that has no graphics for the upSkin style. Set labelPlacement to 'bottom' Adjust padding and you

Re: [flexcoders] Flex2 :: future components :: For a short read

2006-05-12 Thread Michael Schmalle
Just a joke man, User Interface Application Framework. Just a joke ;-) Peace, Mike On 5/12/06, Jignesh Dodiya [EMAIL PROTECTED] wrote: It confusing me UIAF??? can u tell more about?? On 5/12/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi,Well now that I am just out of afterburnner

Re: [flexcoders] Flex2 :: future components :: For a short read

2006-05-12 Thread Michael Schmalle
Dodiya [EMAIL PROTECTED] wrote: really not getting ur Intensionlol On 5/13/06, Michael Schmalle [EMAIL PROTECTED] wrote: Just a joke man,User Interface Application Framework.Just a joke ;-)Peace, Mike On 5/12/06, Jignesh Dodiya [EMAIL PROTECTED] wrote: It confusing me UIAF??? can u

Re: [flexcoders] Flex2 :: future components :: For a short read

2006-05-12 Thread Michael Schmalle
yeah, essentialy ;-) On 5/12/06, Jignesh Dodiya [EMAIL PROTECTED] wrote: so NO UIAF is the joke, but UIAF can be posible right.lol On 5/13/06, Michael Schmalle [EMAIL PROTECTED] wrote: Well, It's getting lost in the English translation then. See UIAF is an acronym in English

Re: [flexcoders] unknown token 'BUILTIN'

2006-05-14 Thread Michael Schmalle
Same here, no micor arch just a normal application mxml file. Since it's beta, I'm ignoring it becasue it's probably fixed by now ;-) Peace, MikeOn 5/13/06, Kevin Roche [EMAIL PROTECTED] wrote: I got this error when saving an unmodifed version of the Cairngorm2 Phones example Application

[flexcoders] Flex2 :: Doc comments :: Can develpers use it

2006-05-15 Thread Michael Schmalle
Hi, Adobe... As all styles such as paddingTop and fontFamily are the same and component developers use them when either extending or implementing the API; Can we developers copy your doc comments for a style such as paddingTop ? I say this becasue I have many components and it would just be

[flexcoders] Flex2B3 :: Container subclass :: viewMetrics - borderMetrics

2006-05-15 Thread Michael Schmalle
Hi Adobe, I am pulling my hair out here. I have looked at the framework source now and really understand it. Except for this one little thing that makes NO sense to me. The way borderMetrics works in Container is obvious; Check to see if there is a border of Rectangular border and return

Re: [flexcoders] swc, mxp, import statement

2006-05-15 Thread Michael Schmalle
Is this Flex 1.5? Peace, MikeOn 5/15/06, Helen Triolo [EMAIL PROTECTED] wrote: Yahoo Maps for flex includes this line in the script section: import com.yahoo.maps.MapViews; and they make available YahooMap.mxp and YahooMap.swc. What do I need to do/install to keep that import statement

Re: [flexcoders] swc, mxp, import statement

2006-05-15 Thread Michael Schmalle
;-) Peace, MikeOn 5/15/06, Helen Triolo [EMAIL PROTECTED] wrote: no -- can I not use the maps api with f2b3? Michael Schmalle wrote: Is this Flex 1.5? Peace, Mike On 5/15/06, *Helen Triolo* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Yahoo Maps for flex includes this line

[flexcoders] question for cairngorm mavens

2006-05-15 Thread michael . corbridge
For those of you who are developing using the cairngorm framework, are there any opinions on the use of multiple modelLocators in a (potentially) very large Flex2 app. Consider, for example, a Main.mxml that uses a tabNavigator to view five separate custom components, each of which is a large

Re: [flexcoders] swc, mxp, import statement

2006-05-15 Thread Michael Schmalle
Pardon me, thanks Clint for clearing that up. Thats what I get for talking about something I havn't used yet :) Peace, MikeOn 5/15/06, Clint Modien [EMAIL PROTECTED] wrote: The current Yahoo! Maps API is written in AS2 it won't work in an AS3 app.On 5/15/06, Michael Schmalle [EMAIL

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

2006-05-15 Thread Michael Schmalle
I am curious, Does anybody see the need for a list that deals with framework development/component development. As Flex matures there is definatly a split now between application developers and framework developers. I have posted 4 things in the last 2 days that havn't been answered(This

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

2006-05-15 Thread Michael Schmalle
I know in the long run it is going to help my own cause. Peace, MikeOn 5/15/06, Andriy Panas [EMAIL PROTECTED] wrote: 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

Re: [flexcoders] label htmltext property bug?

2006-05-15 Thread Michael Schmalle
Judah, The Label can't have multi-line text, and that is multi-line text ;-) Use Text if you want multi-line. Peace, MikeOn 5/15/06, judah [EMAIL PROTECTED] wrote: I saw a link to a known bugs page but I can't seem to find it now. I don't know if this a bug in the htmlText property of

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

2006-05-16 Thread Michael Schmalle
dialed in. Peace, Mike On 5/16/06, Kevin Roche [EMAIL PROTECTED] wrote: Michael, There is almost certainly a need to discuss the framework stuff and if there was a separate list I would be part of it. Right now I am still learning Flex (never really used 1.0 or 1.5) so would want to be part

RE: [flexcoders] Are ViewHelper and ViewLocator deprecated in Cairngorm 2?

2006-05-16 Thread michael . corbridge
AM Please respond to flexcoders Hi Michael, In your complex value object case, here's what we'd recommend now. In your command, put the complex object in your model (ModelLocator), eg. ModelLocator.getInstance().complextData = theResultFromTheServer; Now, in your view, you bind

Re: [flexcoders] Using a logical AND in property.

2006-05-16 Thread Michael Schmalle
Hi, I don't even know if you can do it but, did you try using parenthesis ? Peace, MikeOn 5/16/06, sourcecoderia [EMAIL PROTECTED] wrote: I'm wanting to be able to do something like the below, where the operator is used for a locale compare on the Boolean values, however I keep getting

Re: [flexcoders] Attn Adobe - PopupManager.centerPopup() - dosent

2006-05-16 Thread Michael Schmalle
Man, That is a bug and I have logged it about 3 weeks ago. Unfortunatly, Adobe said it was fixed in Beta3. Being as this is beta, make your own 2 line function that centers it ;-) I don't think Adobe would be stupid enough to name a function center that does not center... bug... beta...

Re: [flexcoders] Flex Apps and Google/Search Engines

2006-05-16 Thread Michael Schmalle
Why couldn't you create a portal into the ecommerce application with HTML? an alternative for now. Peace, MikeOn 5/16/06, Manish Jethani [EMAIL PROTECTED] wrote: On 5/12/06, Simon Fifield [EMAIL PROTECTED] wrote: Does anyone have any information or links about how successful Google and

Re: [flexcoders] Re: [F2B3] Class Library

2006-05-16 Thread Michael Schmalle
Hi, Use classpaths. I have one classpath that is hooked into subversion. IE c:/Flex/classes/com/teotiGraphix/... I seperate Projects in FB2, but use the same classpath for SHARED core things. But a component or application that needs it's own 'tear off class file stub', I create it in the

Re: [flexcoders] Re: [F2B3] Class Library

2006-05-16 Thread Michael Schmalle
can't achieve. How do you import these classes if they are outside your project folder/package? It might be an extremely obvious answer, but I can't get hold of it :( Thanks Michael, Claudia On 5/16/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Use classpaths. I have one classpath

[flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Michael Schmalle
Hi, This might be obvious but, I can't get it and I have looked everywhere. I need to be able to create classes of transitions to be reused. Adobe, aside from my question, can I even do this? ; create reusable transitions via mxml or as classes? Peace, Mike-- What goes up, does come down.

Re: [flexcoders] Flex B3 - Label's fontSize, fontWeight not available via Actionscript?

2006-05-16 Thread Michael Schmalle
Hi, fontSize is a style not a property of the Label try; this.serial.setStyle(fontSize, 8); Peace, MikeOn 5/16/06, willchapm [EMAIL PROTECTED] wrote: An mx:Label's font attributes are notavailbale in Actionscript in Beta 3. I'm using: mx:Label id=sig fontWeight=bold fontSize=20 I'm

Re: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Michael Schmalle
@yahoogroups.com im Auftrag von Michael Schmalle Gesendet: Di 16.05.2006 20:43 An: flexcoders@yahoogroups.com Betreff: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript Hi, This might be obvious but, I can't get it and I have looked everywhere. I need to be able

Re: [flexcoders] Borderless Button Component

2006-05-16 Thread Michael Schmalle
Hi, This is a hack but works quick... make a var ; public var nullSkin:Class me.setStyle(upSkin, nullSkin); me.setStyle(overSkin, nullSkin); me.setStyle(downSkin, nullSkin); I tried clearStyle() but, that didn't work. Another variation; me.setStyle(upSkin, null);

Re: [flexcoders] delete class instances

2006-05-16 Thread michael . corbridge
To stop the 'ping' just throw a 'timer.stop()' into your stopPing() function. It worked for me. I also removed the timer.reset(); timer.start(); from the sayPing() function. I'm not sure that you need those. This should help cure the 'tinnitus' :-) Also - did you notice that you did not place

Re: [Norton AntiSpam] Re: [flexcoders] Borderless Button Component

2006-05-16 Thread Michael Schmalle
Jeff, ;-) Righto I guess I just didn't go the distance to say that. On 5/16/06, Jeff Tapper [EMAIL PROTECTED] wrote: I think you could use ProgramaticSkin as the various skins, which is still a valid skin, but which does not have a border. At 03:26 PM 5/16/2006, you wrote: Hi, This is

Re: [flexcoders] Re: delete class instances

2006-05-16 Thread michael . corbridge
did you try 'timer.stop()' ? private function stopPing():void { ping = null; timer.stop(); trace(ping: +ping); } Sonja Duijvesteijn To: flexcoders@yahoogroups.com [EMAIL PROTECTED] cc: Sent by: Subject: Re: [flexcoders] Re: delete class instances flexcoders@yahoogroups.com

Re: [flexcoders] Handling CSS

2006-05-16 Thread Michael Schmalle
... obviously there are some things 'not supported' I think anybody that is logical can consider the things that couldn't work :) Peace, MikeOn 5/16/06, Michael Schmalle [EMAIL PROTECTED] wrote: Flex doesn't support runtime CSS. You must compile the CSS into your SWF. Yeah it does

Re: [flexcoders] Handling CSS

2006-05-16 Thread Michael Schmalle
Flex doesn't support runtime CSS. You must compile the CSS into your SWF. Yeah it does ;-) I've got a scheme in my extended workspace component set comming out. You'll have to see then how I implemented it. There are always ways to get in, always... :-) Peace, MikeOn 5/16/06, Gordon

Re: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript

2006-05-16 Thread Michael Schmalle
. -Ursprüngliche Nachricht- Von: flexcoders@yahoogroups.com im Auftrag von Michael Schmalle Gesendet: Di 16.05.2006 21:19 An: flexcoders@yahoogroups.com Betreff: Re: [flexcoders] Flex2B3 :: Transitions :: Can I create a transition from ActionScript Hi Dirk, I have subclassed State classes

Re: [flexcoders] Handling CSS

2006-05-16 Thread Michael Schmalle
BTW, You can achieve this by loading and using regexp. Then set the styles however you feel fit. It's not to hard, but as I said there are things you can't do that the compiler does. This dosn't mean you couldn't create a secondary protocal for such things. Peace, MikeOn 5/16/06, Michael

Re: [flexcoders] Release Dates?

2006-05-17 Thread Michael Schmalle
So .. doing elementary math, that means 1 1/2 monts at the most ;-) MikeOn 5/16/06, Gordon Smith [EMAIL PROTECTED] wrote: The first half of the year. - Gordon From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Steve Gustafson

[flexcoders] Flex2B3 :: Container :: How to get into the 'end' partition

2006-05-18 Thread Michael Schmalle
Hi Adobe, it's me again... Question; I have a mouse sizer that embeds it's self in a Window at runtime. I use a static method MouseSizer.addInto(window) to intialize the window with resizing capabilities. Now, I totally understand Container's partition, it's an awsome implementation for the

[flexcoders] Re: Flex2B3 :: Container :: How to get into the 'end' partition

2006-05-18 Thread Michael Schmalle
you hard. This is the goods; var rawChildren:IChildList = IChildList(event.currentTarget.rawChildren); var mouseSizer:MouseSizer = rawChildren.getChildByName(__mouseSizer__) as MouseSizer; rawChildren.setChildIndex(mouseSizer, rawChildren.numChildren - 1); Peace, MikeOn 5/18/06, Michael

[flexcoders] Flex2B3 :: viewMtrics - borderMetrics :: What changed

2006-05-18 Thread Michael Schmalle
Adobe, I am begging you.. What changed from Beta2 to Beta3 dealing with borderMetrics and viewMetrics??? I had something working perfect, off of an algorithm I thought I understood. I cannot for the life of me understand what you did to change the behavior of borderMetrics. Does it have to do

Re: [flexcoders] Release Dates?

2006-05-18 Thread Michael Schmalle
There is an inclusion swf, and routine that happens with the Flash player. This was true for Flash Player 8 also. Search for it and you will find a detailed answer. Peace, MikeOn 5/18/06, Jamie Tehonica [EMAIL PROTECTED] wrote: What do you mean, can be done inside the player now??? ---

Re: [flexcoders] Flex2B3 :: viewMtrics - borderMetrics :: What changed

2006-05-18 Thread Michael Schmalle
NOT changing border metrics but, when I go to qeury it after viewMetrics has run, it holds the actual viewMetrics values not the simple values of 1 or 2 for solid, outset etc... This is my problem. Peace, MikeOn 5/18/06, Manish Jethani [EMAIL PROTECTED] wrote: On 5/18/06, Michael Schmalle [EMAIL

[flexcoders] Re: Beta3 - Tree - Control visibility of nodes through XML DataProvider attribut

2006-05-18 Thread Michael Montagna
displayed. You may also need isBranch and hasChildren but the defaults may work for you. HTH, -Michael Flex Framework -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

Re: [flexcoders] Flex2B3 :: viewMtrics - borderMetrics :: What changed

2006-05-18 Thread Michael Schmalle
/18/06, Michael Schmalle [EMAIL PROTECTED] wrote: Please refer to this post for more information. Flex2B3 :: Container subclass :: viewMetrics - borderMetrics Okay, this one: override public function get viewMetrics():EdgeMetrics { var v:EdgeMetrics = super.viewMetrics; var b:EdgeMetrics

Re: [flexcoders] How to cancel Keyboard events?

2006-05-18 Thread Michael Schmalle
Hi, Well, looking at how Adobe did somethings, I would say you could either write a filter loop that executes in the keyDown handler or just hard code the keys you want to reject. I don't know if this helps you but, there is; keyEvent.stopPropagation() keyEvent.stopImmediatePropagation()

[flexcoders] Re: Flex 2b3 - Tree Problems

2006-05-18 Thread Michael Montagna
into XML by trying something like: myXMLTest:XML = new XML(myXMLString/); HTH, Michael -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] Re: How to cancel Keyboard events?

2006-05-18 Thread Michael Schmalle
. It seems that there must be someway to be able to reject or respond in a custom way to keyDown/keyUp events??? --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Well, looking at how Adobe did somethings, I would say you could either write a filter loop

Re: [flexcoders] Repeater Creationcomplete

2006-05-18 Thread Michael Schmalle
Got code?On 5/18/06, Franca Daniel [EMAIL PROTECTED] wrote: Hi All, I am trying to set a dataprovider to a Repeater object on Createcomplete but Repeater dont call it, Anyone knows why ? Thank you! ___ Abra sua conta no

Re: [flexcoders] Re: How to cancel Keyboard events?

2006-05-18 Thread Michael Schmalle
this: Application.application.addEventListener(keyDown, onKeyDown, true); setting third param to true will switch to capture phase, then you get the chance to do : keyEvent.stopPropagation() keyEvent.stopImmediatePropagation() as Michael suggested, this will prevent keyDown event from being picked up by underlying components

Re: [flexcoders] Flex2B3 :: viewMtrics - borderMetrics :: What changed

2006-05-19 Thread Michael Schmalle
Thanks Gordon, Manish I know about references but, this taught me a new angle of it. BTW, I have now got things balanced out, last night I basically discovered what Gordon was talking about. It's funny, you think you know sometihing and life teaches you a new perspective of what you thaught

Re: [flexcoders] Re: Using amf0 in f2b3

2006-05-19 Thread Michael Schmalle
published a lass which allows you to work with amf0 through f2b3. Why would I want or need to use that ? Uh... AMFPHP (for now) ;-) Peace, Mike On 5/19/06, 海云飞 [EMAIL PROTECTED] wrote: Hi, Renaun, I noticed that I can't view the source of login.php2006/5/19, Renaun Erickson [EMAIL

Re: [flexcoders] Flex2B3 :: viewMtrics - borderMetrics :: What changed

2006-05-19 Thread Michael Schmalle
true, just return the REFERENCE of borderMetrics. So this solves my whole hummiliating journey through the doors of Container. ;-) I learned a lesson, slapped wrist whatever! Peace, MikeOn 5/19/06, Michael Schmalle [EMAIL PROTECTED] wrote: Thanks Gordon, Manish I know about references

Re: [flexcoders] probably-stupid AS3 question

2006-05-19 Thread Michael Schmalle
) as SellerEdit; Peace, MikeOn 5/19/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Simple casting problem; __editWindow = TitleWindow(PopUpManager.createPopUp(this, SellerEdit, true)); to __editWindow = TitleWindow(PopUpManager.createPopUp(this, SellerEdit, true)); as SellerEdit Peace

[flexcoders] Re: Tree Custom Data Descriptor Example Update

2006-05-19 Thread Michael Montagna
--- In flexcoders@yahoogroups.com, "sufibaba" [EMAIL PROTECTED] wrote: Hi Flex Team, Wondering if there is a working example for Beta3. The example in the docs is not working. Flex 2.0 Developer's Guide Building User Interfaces to Flex Applications Using Data Providers and Collections

[flexcoders] [Flex2] File upload using HTTP PUT ?

2006-05-19 Thread Michael Hansen
This one is for the Adobe guys...Any chance we'll see Flex2 implement file uploading using HTTP PUT ? I sense that your're going to see a demand for this in the near future. (I could use it right now! :) Cheers -michael -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

Re: [flexcoders] [Flex2] File upload using HTTP PUT ?

2006-05-19 Thread Michael Hansen
m' Subject: RE: [flexcoders] [Flex2] File upload using HTTP PUT ? It's already in there , I'm using it ! -Stace From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Hansen Sent: Friday, May 19, 2006 5:09 PM To: flexcoders@yahoogroups.c

Re: [flexcoders] ASDoc for AS3?

2006-05-19 Thread Michael Schmalle
I have something to but, that would be ready for prime time no sooner than 4 months from now. There is more information on my blog. http://www.flex2components.com/f2cblog/2006/03/29/flex2-documentx-a-document-solution-for-flex/ It's called DocumentFX, used to be DocumentX(didn't search

Re: [flexcoders] [Flex2] File upload using HTTP PUT ?

2006-05-19 Thread Michael Hansen
@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael HansenSent: Friday, May 19, 2006 5:47 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] [Flex2] File upload using HTTP PUT ? NP! You had me going there for a minute... :)-michael On 5/19/06, Stacy Young [EMAIL

[flexcoders] Re: Complex XML in Tree Control

2006-07-12 Thread Michael Montagna
to ignore these tags? There's a few ways to do this. The one I'd try first is to write a custom ITreeDataDescriptor that only returns the items you want displayed. The default descriptor aggressively displays all XML elements which in this case is including too many. -Michael

[flexcoders] Re: Is it Possible to call a function that's inside of a Tree ItemRenderer?

2006-07-13 Thread Michael Montagna
For all listbase controls, you can use the methods below to get the invididual renderers. Remember that renderers are recycled so a reference to a renderer may get stale. indexToItemRenderer(index:int):IListItemRenderer and itemToItemRenderer(item:Object):IListItemRenderer -Michael

Re: [flexcoders] Cairngorm Events

2006-07-26 Thread Michael BADEN
I think you made a mistake when declaring your event listener: the method addEventListener accept as first parameter the event type and not the event class name. Example : package events { public static const EVENT_NAME : String = myevent; public class MyEvent { public function MyEvent() {

Re: [flexcoders] ICQ, Skype, Yahoo and other messengers id validation

2006-08-04 Thread Michael Klishin
! Msgr uses. MSN Google Talk validation is a simple email address validation so no worries here. Don't forget that Google Talk requires user to use Gmail account. -- Michael Antares Klishin, http://www.novemberain.com | mailto:[EMAIL PROTECTED] -- Flexcoders Mailing List FAQ: http

Re: [flexcoders] ICQ, Skype, Yahoo and other messengers id validation

2006-08-04 Thread Michael Klishin
Sergey Kovalyov wrote: Thank you, Michael! And what about ICQ? Now they use both digital value and digital with dashes. It's just digits, the shortest I could find is 4 chars length and the longest at the time is 9. Dashes are stripped in database queries and used just for usability sake

Re: [flexcoders] ICQ, Skype, Yahoo and other messengers id validation

2006-08-04 Thread Michael Klishin
Sergey Kovalyov wrote: So, the validation string should be like this [0-9]{4,10}$ in order to fit future 10-digits numbers? Kinda that -- Michael Antares Klishin, http://www.novemberain.com | mailto:[EMAIL PROTECTED] -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders

Re: Re: [flexcoders] integrating map24 maps with FLEX2

2006-08-04 Thread Michael Hansen
You could use an iframe solution. Google around for iframe and flex2... I've seen seen a sample somewhere out there. cheers -michael On 7/28/06, duccio del ministro [EMAIL PROTECTED] wrote: Thanks Rich but yahoo maps don't have road details that map24 has for Europe and Italy

[flexcoders] POST data to Flex 1.5 app from Flex 2.0 app

2006-08-07 Thread michael . corbridge
Anyone have any insight into whether this can be done? I am well aware that navigateToURL() allows the method to be set to POST, but is there a way for a Flex 1.5 app to have access to that data? --- This e-mail message

[flexcoders] createChild with dynamically loaded classes

2006-08-08 Thread Michael Herron
Hi all, Im having a very specific problem with createChild calls that I will try to sum-up as briefly as possible: A.SWF loads B.SWF through a Loader component, both are originally flex applications. A invokes a particular method on B, passing down an instance of Panel. In this

RE: [flexcoders] POST data to Flex 1.5 app from Flex 2.0 app

2006-08-08 Thread michael . corbridge
Thanks Matt, I get the following response if I try to post data to a mxml page: JRun Servlet Error HTTP method POST is not supported by this URL This seems to point to config settings on the JRun4 server (web.xml?). I note that http GET works as expected. Any thoughts? - mike

Re: [flexcoders] Re: image in text within Alert.show()

2006-08-08 Thread michael . corbridge
[Embed(source=/assets/images/alert.png)] [Bindable] public var alertSymbol:Class; Alert.show(Text entered in the comments box will be lost! Do you want to continue?,Alert,Alert.YES|Alert.NO,null,alertListener,alertSymbol,Alert.NO);

[flexcoders] Loading Unicode values from XML and viewing in Flex components as HTML

2006-08-09 Thread Michael Ritchie
=UTF-8? specialChars character data\u00A9/data labelCopyright sign/label /character /specialChars Thanks, Michael -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

[flexcoders] Re: Loading Unicode values from XML and viewing in Flex components as HTML

2006-08-09 Thread Michael Ritchie
Gordon, That makes sense but its still strange that when I created an XML var in side application, it worked: var localXML:XML = character data\u00A9/data labelInverted Exclamation Mark/label /character; I was able to see the copyright symbol as HTML on my label. What threw me was that I

[flexcoders] Re: Loading Unicode values from XML and viewing in Flex components as HTML

2006-08-09 Thread Michael Ritchie
/label /character /specialChars - Michael --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: \u00A9 is AS syntax that only means something inside of an AS string literal. In an XML literal, you have to use XML entity syntax, which I believe would be data

[flexcoders] Re: Loading Unicode values from XML and viewing in Flex components as HTML

2006-08-09 Thread Michael Ritchie
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Ritchie Sent: Wednesday, August 09, 2006 3:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Loading Unicode values from XML and viewing in Flex components as HTML Gordon, That makes

Re: [flexcoders] request for adobe: stop being so private

2006-08-10 Thread Michael Schmalle
: Michael,I understand why things are marked as private versus protected. What I'm suggesting is that enough thought isn't going into it and a LOT of stuff is being marked as private that shouldn't be. This is hobbling component extension. I have dealt with a lot

[flexcoders] Re: Tree-to-tree drag drop

2006-08-10 Thread Michael Montagna
COPY operations arent supported in the Tree by default because the framework cant guarantee deep copies of your objects. You'll need to implement your own COPY logic in the DND methods (MOVE can stay the same) including your own object copy. HTH, -Michael On 8/9/06 10:47 PM, John Mazzocchi

Re: [flexcoders] request for adobe: stop being so private

2006-08-11 Thread Michael Schmalle
get to choose how much I want this feature (a lot). Enough to deal with it being all screwed up in the design mode? Not sure. On 8/10/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hey,I totally agree with you. ;-) Most of what you said I have run into myself. What I have done? I created

Re: [flexcoders] Overall consensus of using the this keyword

2006-08-11 Thread Michael Schmalle
My question is, do all these same rules apply, to ActionScript that is contained within .MXML files?Yes, it is exactly the same. All mxml files are actually quasi classes. The all get compiled into as3 classes.So, if you had a button likemxApplication ... mx:Button id=myButton

Re: [flexcoders] http://www.gliffy.com

2006-08-11 Thread Michael Schmalle
oh,If you want to look at the asdochttp://www.teotigraphix.com/flex2/docs/SizerManagerFX/index-frames.htmlThat was printed a week ago and it is not totally current. Peace, MikeOn 8/11/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi,I have a component comming out soon that does exactly

Re: [flexcoders] Newbie Question - attaching a Sprite

2006-08-11 Thread Michael Schmalle
Hi,You could..var wrapper:IUIComponent = new UIComponent();wrapper.addChild(contentBg);panelOne.addChild(wrapper);This makes it harder to ref and size.You should look into skin subclasses like ProgrammaticSkin. If you make a class that subclasses ProgrammaticSkin, then you can use the graphics

Re: [flexcoders] Re: Newbie Question - attaching a Sprite

2006-08-11 Thread Michael Schmalle
extend mx.core.IUIComponent,A DisplayObject dosn't have to extend UIComponent it just has to implement the IUIComponent interface which ProgrammaticSkin does.ProgrammaticSkin is a Shape/FlexShape subclass. Peace, MikeOn 8/11/06, dadrobson [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Newbie Question - attaching a Sprite

2006-08-11 Thread Michael Schmalle
Hi Jim, Canvas.addChild(Sprite),You cannot do this because The DisplayObject to add as a child of this Container. It must implement the IUIComponent interface.Sprite does not implement IUIComponent. Basically all children of a container have to be a IUIComponent becasue of the way Flex lays

Re: [flexcoders] Re: Newbie Question - attaching a Sprite

2006-08-11 Thread Michael Schmalle
danfrap767Have you been reading my posts? From the thread it dosn't look like you are seeing them or something.You need to create a skin class from ProgrammaticSkin. Subclass it.Peace, MikeOn 8/11/06, danfrap767 [EMAIL PROTECTED] wrote: I thought so too, as

Re: [flexcoders] AS3 Question

2006-08-11 Thread Michael Schmalle
Hi, mx:Script import AppStarter; var app:AppStarter = new AppStarter(); /mx:ScriptYou can't do this.you need to put that call inprivate function init(event:FlexEvent):void{ var app:AppStarter = new AppStarter(); }Here again, you cannot add a Sprite to an Application becasue Application is a

Re: [flexcoders] AS3 Question

2006-08-11 Thread Michael Schmalle
() { var t:TextField = new TextField(); t.text = Hello World; addChild( t ); } }}On 8/11/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, mx:Script import AppStarter; var app:AppStarter = new AppStarter(); /mx:ScriptYou can't do this.you need to put that call inprivate function init

Re: [flexcoders] Re: AS3 Question

2006-08-12 Thread Michael Schmalle
Tim, good to see you back from the component exclusive world. Well, it was more of a 'had to answer most of questions world'.I don't know, you are out in lala land creating and using things that are new, it gets lonley sometimes.-) Really, I have been working on components, I had to turn the

Re: [flexcoders] MyPrintPreview,,,,,how to print images?

2006-08-13 Thread Michael Schmalle
Hi,This method might help you protected function getComponentBitmap(target:IUIComponent,transparent:Boolean = false):IUIComponent { var bitmapData:BitmapData = new BitmapData( Math.round(target.width / target.scaleX), Math.round(target.height / target.scaleY), transparent);

Re: [flexcoders] Re: Custom UIComponent creating problem

2006-08-15 Thread Michael Schmalle
Hi,It's not that it is not getting added to the display list, it's that UIComponet does not have a border.If you want something with a border, you either have to create a border skin instance in your extended UIComponent subclass OR subclass container that has a border(which is expensive if

Re: [flexcoders] Custom UIComponent creating problem

2006-08-15 Thread Michael Schmalle
Gordon;Opps my bad; to early in the morning;I read to much into this,He needed item_button.label = As;override protected function updateDisplayList({ super.updateD ... item_button.move(0, 0); item_button.setActualSize( item_button.measuredWidth, item_button.measuredHeight); Heh, sorry

Re: [flexcoders] Awe

2006-08-15 Thread Michael Schmalle
It happens when people enjoy what they do :)On 8/15/06, Samuel D. Colak [EMAIL PROTECTED] wrote: Dear All, Ive been a member of this group for the last 2 days and frankly am very amazed regarding the quality of the posts and replies given. Its fun to be

Re: [flexcoders] PopUp Windows 50% Transparent???

2006-08-17 Thread Michael Schmalle
I guess I really need to study up on Styles a bit more As far as base styles, check out the Flex Style Explorer. In about 10 minutes you will have a thorough understanding of the style implications on each of the base components. Peace, MikeOn 8/17/06, Mike Anderson [EMAIL PROTECTED] wrote:

Re: [flexcoders] Finding an Object in ActionScript

2006-08-17 Thread Michael Schmalle
Hi,1) There is a method of DisplayObjectContainer that does this by name.getChildByName();Note : This does not return a child by it's id only the name assignment. Which at anytime you can name a component in MXML or actionscript. myComponent.name = lblText;Then you could find it. If you need

Re: [flexcoders] Bug in Slider::UpdateDisplayList

2006-08-17 Thread Michael Schmalle
Hi, I'm instantiating new components and calling addChild() as needed in my container component's UpdateDisplayList function.If I hear you right, no this is not the right place to call add child.You should use commitProperties() override to create and add children in your component.Say,

Re: [flexcoders] TabNavigator vs. TabBar

2006-08-17 Thread Michael Schmalle
The only other thing it does that might BE of importance to a hard core programmer is that it binds the dataProvider to the TabBar and ViewStack for you(selectedIndex, selectedItem etc.).I guess if you like writing code and it didn't offer you something, use them separately. As far as

Re: [flexcoders] Event to detect data was loaded in a tree

2006-08-17 Thread Michael Schmalle
Hi,I have run into this issue before and I swear I couldn't find an answer for it. There are many events you can listen for for a Tree changing it's state and data changing.But... As far as granular control dealing with when particular nodes are loaded AND rendered is a completely different

Re: [flexcoders] how to text wrap in a label?

2006-08-17 Thread Michael Schmalle
Well it is easy, the Label is a single line text component. The 'Text' component will wrap and has multiline support. can I ask why I can't use a namespace for all my custom stuff?Because if you look at the itemRenderer's type, it is IFactory. This means it has to be a class reference not a

Re: [flexcoders] Event to detect data was loaded in a tree

2006-08-17 Thread Michael Schmalle
: There should be an appropriate CollectionEvent.CHANGE event coming from the dataProvider when data becomes available. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michael Schmalle Sent: Thursday, August 17, 2006 4:19 PM

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