RE: [flexcoders] HTML Text in TextArea

2005-10-26 Thread Matt Chotin
Title: HTML Text in TextArea I don’t think the TextArea is capable of rendering tags.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mehdi, Agha Sent: Wednesday, October 26, 2005 3:25 PM To: flexcoders@yahoogroups.com Subject: [flex

RE: [flexcoders] Re: set Effect at runtime

2005-10-27 Thread Matt Chotin
Right, I would never expect you to be able to successfully get information from childDescriptors, that’s used to instantiate, it’s not the object itself.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bhaq1972 Sent: Thursday, October 27, 2005

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

2005-10-27 Thread Matt Chotin
I think it’s time to send Roger beer J   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL Sent: Thursday, October 27, 2005 10:41 AM To: flexcoders@yahoogroups.com Subject: Re: Re[2]: [flexcoders] SWC's in Flex   Grr... I ran the fix,

RE: [flexcoders] Big problem with OCX, Flash 8 release version

2005-10-27 Thread Matt Chotin
I’m now lost as to whether you’re trying to uninstall the Flash 8 OCX or install it or what.  But here’s what I do:   Close IE (in fact close all your browsers for kicks) Close Explorer, do not have any windows open showing folders that could potentially embed IE   Open up a command

RE: [flexcoders] 1.5 dev version

2005-10-27 Thread Matt Chotin
Download the Flex Trial from http://www.macromedia.com/software/flex/trial/   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert Thompson Sent: Thursday, October 27, 2005 2:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Is FP 8.5 required for deploying Flex2 applications?

2005-10-27 Thread Matt Chotin
Yes, Flex 2 will require 8.5.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Bill Long Sent: Thursday, October 27, 2005 11:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is FP 8.5 required for deploying Flex2 applications

RE: [flexcoders] Big problem with OCX, Flash 8 release version

2005-10-27 Thread Matt Chotin
f it's the activeX or IE himself that is messing up but we can't use other browser since it's the company choice. João Fernandes Secção de Desenvolvimento Departamento de Informática -Original Message- From: flexcoders@yahoogroups.com on behalf of Matt Chotin Sent:

RE: [flexcoders] Problem with type casting a TreedataProvider back to array...

2005-10-27 Thread Matt Chotin
A TreeDataProvider cannot be an array.  It has to be a single object that has a child array.  So try creating an object like this:   Var treeDetails:Object = {label: ‘root’}; treeDetails.children = treeList;   get the array of details back:   var arr:Array = treeCmp.dataProvider.ge

RE: [flexcoders] DataGrid Bug?

2005-10-27 Thread Matt Chotin
You should be looking into createChild, you can’t do “new” for UI objects.  Check out this page in the docs: http://livedocs.macromedia.com/flex/15/flex_docs_en/1064.htm   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of knly browne

RE: [flexcoders] HTTPS Flex Apps

2005-10-27 Thread Matt Chotin
If the web service is http and your swf is https you’re going to need a crossdomain.xml file or you’ll need to go through the proxy (and if it’s not working turn on debugging in flex-config and check the logs).   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoo

RE: [flexcoders] issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Matt Chotin
The ViewStack might have something to do with it.  Can you create a full example that shows the problem?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jaime Bermudez Sent: Thursday, October 27, 2005 12:59 PM To: flexcoders@yahoogroups.com Su

RE: [flexcoders] Re: Two way data binding?

2005-10-27 Thread Matt Chotin
ever I want) to push the data back into the XML model. Figure I have this TextInput bound to the xml (e4x) ... This is a simple case, but the solution should also elegantly apply to automatically generated / replicated list items... and also executable by any arbitrary code easily so some d

RE: [flexcoders] issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Matt Chotin
out.  The bindings also work if the initObj() method is called on a childrenCreated event of the Application, which I don't understand.  Any idea on what's going on?   On 10/27/05, Matt Chotin <[EMAIL PROTECTED]> wrote: The ViewStack might have something to do with it. 

RE: [flexcoders] Flex 2 deployment on Apache Tomcat / J2SE or EE

2005-10-30 Thread Matt Chotin
dy, just how > > are they going to implement dataservices within > the > > enterprise? If I use FB2 > > will I get all the current functionality in F1.5 > as > > far as data > > manipulation? Or will that part only be in the > > Enterprise side? > > > > James

RE: [flexcoders] Flex running on JBoss 4.03

2005-10-31 Thread Matt Chotin
Title: Flex running on JBoss 4.03 You haven’t defined any objects in the named section, they’re all commented out.  At least one is needed, otherwise the section has to be commented out I think.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] need help from web service

2005-10-31 Thread Matt Chotin
Generally if you pass it as a string it should convert for you I think.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of collection711 Sent: Saturday, October 29, 2005 11:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] need help from

RE: [flexcoders] Repeater inside TabNavigator, manipulated by class

2005-10-31 Thread Matt Chotin
Definitely is a bug.  I’ll go ahead and file it.  I don’t have a workaround for you right now, maybe try re-creating the ArrayCollection instead of just the inner array?  myAC = new ArrayCollection(projectFiles) instead of re-assigning projectFiles.  I don’t have more time to dig on it, s

RE: [flexcoders] AS2.0 remoting with @ContextRoot()

2005-10-31 Thread Matt Chotin
@ContextRoot() only gets interpreted by the MXML parser (so in the attributes or child tags of MXML); it does not get interpreted by the AS parser.  So you’ll need to do your own parsing to figure out the root.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoo

RE: [flexcoders] Flex 2:Package/Class problem

2005-11-01 Thread Matt Chotin
Flex has a rule of one public class per file, so you’re going to need to factor each class into into its own file.  Then make sure you declare the functions that don’t need an instance of the class static and refer to them as class.func()   Matt   From: flexcoders@yahoogroups.

RE: [flexcoders] FlexBuilder 2.0 - Network Monitor

2005-11-01 Thread Matt Chotin
Not yet, we’re figuring out what we can provide.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Boddula, Sridhar Sent: Tuesday, November 01, 2005 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] FlexBuilder 2.0 - Network Monitor

RE: [flexcoders] script time warning and Flash Player 8

2005-11-01 Thread Matt Chotin
OK, bad news.  I went searching through the bugbase and found one for our docs team to add to the migration guide that the timeout can no longer be greater than 60 seconds.  I’m assuming that this was actually put into Player 8, not just 8.5 since you’re running into it.  Guess that means

RE: [flexcoders] Flex 1.5 - n checkboxes

2005-11-02 Thread Matt Chotin
Check out the Repeater tag.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Wednesday, November 02, 2005 9:07 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 1.5 - n checkboxes   Is there a slick way to b

RE: [flexcoders] bugzilla or something like that for Alpha 1?

2005-11-02 Thread Matt Chotin
You can go through the wish from: http://www.macromedia.com/go/wish for now, we’re not opening the full bugbase up.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert Thompson Sent: Wednesday, November 02, 2005 3:02 PM To: flexcod

RE: [flexcoders] Setting the HTTP proxy in Flex2

2005-11-02 Thread Matt Chotin
The proxy isn’t available in the alpha right now, when we preview Flex Enterprise Services in a little while it will be come available.  In the meantime if you go through your web browser and your browser has the proxy setup the services should use that as well.   Matt   From:

RE: [flexcoders] problem adapting to FLEX 2 on defining variables

2005-11-02 Thread Matt Chotin
So why not take that array collection that worked and assign to the DataGrid?  That’s what DataGrid expects now.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of yaagcur Sent: Wednesday, November 02, 2005 8:06 AM To: flexcoders@yahoogr

RE: [flexcoders] CellRenderer for datagrid

2005-11-02 Thread Matt Chotin
Do you know which column should have the cellRenderer?  You can just iterate through the columns later (getColumnAt) and assign the cellRenderer in ActionScript.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Parekh, Shweta - BLS CTR

RE: [flexcoders] Flow.as from "Re: like behaviour?"

2005-11-02 Thread Matt Chotin
Maybe give the boxes an initial visibility of false and then in creationComplete set the visibility to true?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of edeustace Sent: Wednesday, November 02, 2005 9:39 AM To: flexcoders@yahoogroups.com Su

RE: [flexcoders] Seeing double in DataGrid

2005-11-02 Thread Matt Chotin
I guess we’ll need the full example, I don’t see anything jumping out at me.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of P Trisnadi Sent: Wednesday, November 02, 2005 9:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Seeing doub

RE: [flexcoders] AnimationPackage

2005-11-02 Thread Matt Chotin
http://www.alex-uhlmann.de/flash/animationpackage/   Alex Uhlmann wrote the animation package and it’s quite good, but I don’t think it’s really about 3d.  He went to work for iteration::two and then we acquired iteration::two so now he works for us in Macromedia Consulting EMEA.  So we

RE: [flexcoders] Gaps between list items

2005-11-02 Thread Matt Chotin
The verticalGap may get ignored with cellRenderers, I can’t remember.  Try adjusting your Canvas instead to have the gap, maybe use a VBox with margins instead?   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Greg Morphis Sent: Wednes

RE: [flexcoders] Image ScaleContent

2005-11-02 Thread Matt Chotin
I think you still need to set width=”100%” on the image, the scaleContent is whether it should scale proportionally or stretch.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jwc_wensan Sent: Wednesday, November 02, 2005 1:08 PM To:

RE: [flexcoders] Problem dynamically creating text controls

2005-11-02 Thread Matt Chotin
What happens if you set creationPolicy=”all” on the view stack?  Maybe the height it messed up because the VBox was not really ready to accept children?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pasflex Sent: Wednesday, November 02, 2005

RE: [flexcoders] go away, Matt!

2005-11-02 Thread Matt Chotin
Well if you threw in the one-liners too I wouldn’t have to J  Our roles are this:   Roger: thoughtful responses requiring knowing what you’re talking about Matt: one line requests for more information, semi-useful suggestions, and anything that fits in less than 100 words and doesn’t

RE: [flexcoders] go away, Matt!

2005-11-03 Thread Matt Chotin
: flexcoders@yahoogroups.com Subject: Re: [flexcoders] go away, Matt!   Q. Do you two sit and stare at mailing lists + bug queues all day? (curious) On 11/3/05, Matt Chotin <[EMAIL PROTECTED]> wrote: Well if you threw in the one-liners too I wouldn't have to J   Our rol

RE: [flexcoders] Multilingual Messages in Validators

2005-11-03 Thread Matt Chotin
I wrote up one possible technique a while back: http://weblogs.macromedia.com/mchotin/archives/2005/01/localizing_vali.cfm   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of r_woess Sent: Wednesday, November 02, 2005 11:56 PM To: flexcod

RE: [flexcoders] Flex2: component and generated source code?

2005-11-03 Thread Matt Chotin
We haven’t shipped the source yet but are hoping to in a later build.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Julian Suggate Sent: Thursday, November 03, 2005 12:15 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex2: com

RE: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-03 Thread Matt Chotin
7;m guessing there's no way around using Actionscipt to populate the form > from the model and vice versa. > > - Richard > > On 11/2/05, Matt Chotin <[EMAIL PROTECTED]> wrote: > > > >  Check out the Repeater tag. > > > >   --

RE: [flexcoders] Problems Databinding to Custom Properties (Flex 2.0)

2005-11-03 Thread Matt Chotin
Looks like you bound to _sample_ac and not sample_ac (without the underscore).  (also I wouldn’t pass true/true to new Event, just pass “sampleChanged”).   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of John Crosby Sent: Thursday, Nove

RE: [flexcoders] Re: Problem dynamically creating text controls

2005-11-03 Thread Matt Chotin
creationPolicy="all" on the view stack and it has the same behavior.  For kicks, I also tried moving the call to initLayout to the creationComplete event on the second VBox, this did not help either.  Any other ideas? --- In flexcoders@yahoogroups.com, "Matt Chotin" <[E

RE: [flexcoders] Licensing and dev server compilation

2005-11-03 Thread Matt Chotin
if you have their license key you can compile with theirs and just upload the SWFs I guess.  This statement doesn’t clear you legally, but it probably wouldn’t be the end of the world if they really do have the license for their server.   From: flexcoders@yahoogroups.com [mailto

RE: [flexcoders] Re: Forcing Recompile in production mode

2005-11-03 Thread Matt Chotin
I think we did our darndest to make sure that it would keep using what it has and not put the server through a re-compile.  So I’m not sure it’s gonna timeout and just load later, you’re going to need to bounce the app (and next time not use production-mode I guess and just turn off all t

RE: [flexcoders] Loading a Flash 8 compiled AS 2.0 class into a Flex app and instantiate it

2005-11-03 Thread Matt Chotin
Title: RE: [flexcoders] Loading a Flash 8 compiled AS 2.0 class into a Flex app and instantiate it Nice find!   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dirk Eismann Sent: Thursday, November 03, 2005 1:35 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Gaps between list items

2005-11-03 Thread Matt Chotin
as or suggestions? I would like a little gap between the cells. I even tried putting a spacer after the Thanks again.. GM On 11/2/05, Matt Chotin <[EMAIL PROTECTED]> wrote: > > > > The verticalGap may get ignored with cellRenderers, I can't remember.  Try > adjusting your Canvas

RE: [flexcoders] Re: How do you pass bindings into a custom component?

2005-11-03 Thread Matt Chotin
Use a setter for the buttonText property and then in that setter assign button_mc.label.   The binding is executing after the createChildren method has been called.   Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rob Rusher Sent: Thurs

RE: [flexcoders] passing javascript values to sws/mxml

2005-11-03 Thread Matt Chotin
http://livedocs.macromedia.com/flex/15/flex_docs_en/2349.htm     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Boddula, Sridhar Sent: Thursday, November 03, 2005 1:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] passing _javasc

RE: [flexcoders] Re: problem adapting to FLEX 2 on defining variables

2005-11-03 Thread Matt Chotin
no problem. But I want to do other stuff like set a title based on a combination of the result fields. It also bugging me that I cannot get a handle on something pretty basic :) --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > So why not take

RE: [flexcoders] Force binding for Arrays

2005-11-03 Thread Matt Chotin
It’s not the end of the world in Flex 1.5, it will not be a good idea in Flex 2 (but we provide new interfaces to make it even easier).  It also depends what the binding destination is doing with the array.  If it’s a DataGrid there’s a lot more invalidating and redrawing that happens if

RE: [flexcoders] Resizing images in a TileList

2005-11-03 Thread Matt Chotin
Hmm, is the tile too small for the image now?  What happens if you re-assign the dataProvider after you’ve adjusted the slider, do the images appear?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of gootish Sent: Thursday, November 03, 2005 4:2

RE: [flexcoders] bugzilla or something like that for Alpha 1?

2005-11-03 Thread Matt Chotin
a central place where we can report them (other than the general wish/bug form). regards, Muzak - Original Message - From: "Matt Chotin" <[EMAIL PROTECTED]> To: <flexcoders@yahoogroups.com> Sent: Thursday, November 03, 2005 5:38 AM Subject: RE: [flexcoders] bug

RE: [flexcoders] Re: Image ScaleContent

2005-11-03 Thread Matt Chotin
: I made the change by adding width="100%" . . .   source="@Embed('../images/MainMenuBackground.png')"/> It had no effect. Other ideas? Thanks, Jack --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > I thi

[flexcoders] take that roger!

2005-11-03 Thread Matt Chotin
Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM ~-> -- Flexcoders Mai

RE: [flexcoders] take that roger!

2005-11-03 Thread Matt Chotin
For sure!   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Roger Gonzalez Sent: Thursday, November 03, 2005 9:46 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] take that roger!   Nah, these threads bored me anyway.  ;-) I do t

RE: [flexcoders] New To Flex

2005-11-04 Thread Matt Chotin
Understanding Flash is not a pre-requisite to understanding Flex.  Sometimes it even confuses people J  I’d look at the Developing Rich Clients book even though it’s for 1.0, the concepts of how to build an application remain.  The 1.5 tutorials that you find out on the web also should ge

RE: [flexcoders] Flex2: TitleWindow close button click event error

2005-11-07 Thread Matt Chotin
I think we’ve already filed bugs on these issues.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Muzak Sent: Friday, November 04, 2005 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex2: TitleWindow close button clic

RE: [flexcoders] Nested Repeaters ...( was Force binding for Arrays)

2005-11-07 Thread Matt Chotin
Re-sending since it bounced   From: Matt Chotin Sent: Monday, November 07, 2005 9:17 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Nested Repeaters ...( was Force binding for Arrays)   No other general rules but this sounds like a good r

FW: [flexcoders] Re: custom components and custom data provider - howto?

2005-11-07 Thread Matt Chotin
Resending since it bounced   From: Matt Chotin Sent: Monday, November 07, 2005 9:20 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Re: custom components and custom data provider - howto?   Does test.xml start with as the outer tag?  When fac

RE: [flexcoders] Re: Resizing images in a TileList

2005-11-07 Thread Matt Chotin
tilelist,   tilelist.dataProvider = element; the image don´t appear. The image is loaded via HTTP, then the source of image is like, http://webserver/images/thumbnail1.jpg. Can be a problem? --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > Hmm,

RE: [flexcoders] will we have access to makeplayerglobal script ?

2005-11-07 Thread Matt Chotin
Hmm, I wouldn’t count on getting to mess with those files (or messing with them having any effect right now).  I’ll forward this on to the player team though.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of zwetank Sent: Monday, November 07, 2

RE: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-08 Thread Matt Chotin
No, if you want to defer the read to submit you’ll need to take a manual approach…   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Tuesday, November 08, 2005 9:16 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

RE: [flexcoders] Re: will we have access to makeplayerglobal script ?

2005-11-08 Thread Matt Chotin
Response from someone on the player team includes:   * AS3 does support the ability to extend builtin objects by adding prototype methods.  Yes, you give up something (strong type checking) but it's no worse than in AS1 when it worked.  Actually AS1, AS2, and AS3 all support this.   *

RE: [flexcoders] remote object without mx:RemoteObject, is it possible?

2005-11-08 Thread Matt Chotin
It’s not very easy to do right now in 1.5 because of the amount of code-generation that goes into RemoteObject.  But 2.0 allows everything to be created in ActionScript which will make this easier.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] O

RE: [flexcoders] Dyanamic MXML Loading

2005-11-08 Thread Matt Chotin
That seems pretty odd.  Are you sure that nothing is getting escaped accidentally, like the <> turning into < > deeper in?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of varalakshmi_palani Sent: Saturday, November 05, 2005 11:32 PM To: flexco

RE: [flexcoders] [FlexBuilder 2.0] mx:operation ag - code hinting

2005-11-08 Thread Matt Chotin
Yep, I’m sure we’ll be working on that for a later build.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sreejith Unnikrishnan Sent: Tuesday, November 08, 2005 4:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] [FlexBuilder 2.0] mx:

RE: [flexcoders] Problem with Flex Samples Web services.

2005-11-08 Thread Matt Chotin
/services is mapped in the web.xml I think to go to the AxisServlet which in turn will execute the services.  Did you take the whole WAR or just part of it, maybe web.xml doesn’t match up?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Kevin

RE: [flexcoders] Comparing two Tree nodes.

2005-11-08 Thread Matt Chotin
Maybe the return values of the nodes’ getData() would be equal?    From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 9:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Comparing two Tre

RE: [flexcoders] Image.percentLoaded always returns '0' for remote images

2005-11-08 Thread Matt Chotin
We have a deferred bug on this.  I’ll make sure management sees it again to re-triage and see how it goes in Flex 2.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alon J Salant Sent: Tuesday, November 08, 2005 10:35 AM To: flexcoder

RE: [flexcoders] HTTPService and Flex 2.0

2005-11-08 Thread Matt Chotin
Title: HTTPService and Flex 2.0 That looks right, not sure why it’d be giving you trouble.  I wonder if the line numbers for the error are just wrong?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Michel Bertrand Sent: Tuesday, November 08,

RE: [flexcoders] [Flex 1.5] Drawing Lines

2005-11-08 Thread Matt Chotin
Check out the MovieClip methods like the one here: http://livedocs.macromedia.com/flex/15/flex_docs_en/1518.htm (UIObject is a MovieClip)   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of fowleryj Sent: Tuesday, November 08, 2005 12

RE: [flexcoders] Samples from Welcome Page

2005-11-08 Thread Matt Chotin
The CF adapter is what you should use until the enterprise services is available.  I have a feeling 8.5 didn’t install correctly, go to http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_15507 and if it’s wrong see if you can try to install the player again.   Matt  

RE: [flexcoders] Re: Problem with type casting a TreedataProvider back to array...

2005-11-08 Thread Matt Chotin
> Arun. >  > Note : While running the application use Up & Down buttons to move the nodes and Update button to reflect changes. >  > > Matt Chotin <[EMAIL PROTECTED]> wrote: v\:* {behavior:url(#default#VML);}o\:* {behavior:url(#default#VML);}w\:* {behavior:url(#defa

RE: [flexcoders] How to add checkboxes to datagrid

2005-11-09 Thread Matt Chotin
The Flex Explorer sample has an example under Component Library > DataGrid > Custom Cell Renderers   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of sandip_patil01 Sent: Tuesday, November 08, 2005 11:34 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Using labelfunction with datagrid

2005-11-09 Thread Matt Chotin
Check out the computed column demo in the Flex Explorer under Component Library > DataGrid   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of leorajpoot Sent: Wednesday, November 09, 2005 1:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoder

RE: [flexcoders] Applications forgetting variables

2005-11-09 Thread Matt Chotin
Nope, are you sure you’re not re-creating classes?     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 9:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Applications forgetting vari

RE: [flexcoders] Flex 2:Class Problem?

2005-11-09 Thread Matt Chotin
I’d guess that means that it can’t find stdFuncs since you shouldn’t get an error passing null into the parameters so the only place on that line that you try to access a property is of stdFuncs.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] Cursor position in editable ComboBox

2005-11-09 Thread Matt Chotin
Maybe try using Selection.getCaretIndex() as the input_length?   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 8:39 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Cursor po

RE: [flexcoders] Cool Flex Site with Free 30 day trial

2005-11-10 Thread Matt Chotin
My hotmail with an underscore went through no prob…   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL Sent: Thursday, November 10, 2005 10:23 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cool Flex Site with Free 30 day tr

RE: [flexcoders] Bounced Emails

2005-11-10 Thread Matt Chotin
This happened here at Macromedia too.  It looks like something got added to an abuse filter somewhere maybe (I asked our IT dept to look into it).  You might need to check with your email administrator to find out if they can see anything.   Matt   From: flexcoders@yahoogroups

RE: [flexcoders] another event, instead move?

2005-11-10 Thread Matt Chotin
Assign the moveEffect before you do any moving.  Add an effectStart handler to the Image, the event property will contain an “effect” property which is the instance of the effect that you’re using.  Set the yFrom and yTo properties right then.   Haven’t tried this, but it’s a thought…

RE: [flexcoders] Applications forgetting variables

2005-11-10 Thread Matt Chotin
As in, are you possible creating new instances of classes when you thought you were using an instance that was created previously.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, November 10, 2005 8:08 AM To:

RE: [flexcoders] Re: Dynamic Events (Flex2 Custom Events?)

2005-11-10 Thread Matt Chotin
I don’t think the example is going to work since you’re trying to dispatch an anonymous object instead of an Event.  Flex 2 requires an Event to be dispatched.   There is mx.events.DynamicEvent which is a subclass of Event that is dynamic.  The constructor does take the “bubbles” parame

RE: [flexcoders] Re: Dynamic Events (Flex2 Custom Events?)

2005-11-10 Thread Matt Chotin
Event class? --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > I don't think the example is going to work since you're trying to > dispatch an anonymous object instead of an Event.  Flex 2 requires an > Event to be dispatched. >

RE: [flexcoders] Re: Dynamic Events (Flex2 Custom Events?)

2005-11-10 Thread Matt Chotin
?)   I was subclassing Event, and Flex 2 told me bubbles was read-only.   I'll try using DynamicEvent then isntead; do you have the constructor signature handy?   - Original Message - From: Matt Chotin To: flexcoders@yahoogroups.com Sent: Thu

RE: [flexcoders] Internal Build problem (FLEX 2)

2005-11-11 Thread Matt Chotin
Do you have a small file giving you that build problem?  Sounds like a bug…   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of yaagcur Sent: Friday, November 11, 2005 6:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Internal Build pro

RE: [flexcoders] Flex 1.x web-service and out-parameters

2005-11-11 Thread Matt Chotin
I’m not sure we support multiple out parameters, we might just take the first one.  I haven’t looked at that code in a bit though.  If you trace out the result what’s in it?  I’m betting it will be the first object…   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogrou

RE: [flexcoders] regarding Canvas container in flex-2

2005-11-11 Thread Matt Chotin
The problem is probably the that you have, we don’t allow faceless components to be declared at any level other than under the root tag.  I would just move your script blocks and the Fade outside the Canvas.   You raise an interesting usability issue with how the default Application lo

RE: [flexcoders] Flex 2.0 Enterprise Services 2

2005-11-11 Thread Matt Chotin
Hopefully before the end of the year...   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Boddula, Sridhar Sent: Friday, November 11, 2005 6:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 2.0 Enterprise Services 2   When Fl

RE: [flexcoders] Using the ColorPicker component in Flex 1.5 extras

2005-11-12 Thread Matt Chotin
SWCs for Flex 1.5 aren’t really intended to work in MX 2004, just Flex.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jim Phelan Sent: Saturday, November 12, 2005 3:14 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Using the Col

RE: [flexcoders] Effects Problem

2005-11-14 Thread Matt Chotin
I don’t really have time to set this up but have you tried passing this as the target to the Parallel effect’s constructor?  I saw you did it for the Move and Resize but maybe the Parallel needs it as well.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogrou

RE: [flexcoders] Flex Charting Components 2 distribution

2005-11-14 Thread Matt Chotin
I think the plan at the moment is separately, pricing hasn’t been announced.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Daniel Cascais Sent: Monday, November 14, 2005 11:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex Char

RE: [flexcoders] Question about Enable / Disable Validator

2005-11-14 Thread Matt Chotin
Hmm, disabling the validator usually does clear any borders, you sure you disabled the right one?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Libby Sent: Monday, November 14, 2005 5:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoder

RE: [flexcoders] flex2: security prob accessing HttpService

2005-11-14 Thread Matt Chotin
The Flex 2 Alpha does not have a proxy included so there’s no whitelist to edit.  You’ll need to either load your SWF from the same location as your HTTPService or setup a crossdomain.xml file.  The docs should have more details.   Matt   From: flexcoders@yahoogroups.com [mail

RE: [flexcoders] Re: another event, instead move?

2005-11-14 Thread Matt Chotin
;:       initObj.yFrom = "-365";       initObj.yTo = "0";   }   this.createClassObject(mx.effects.Move, "imgeffect", getNextHighestDepth(), initObj);   event.effect = imgeffect; } ...   effectStart="onEffectStart(event);"

RE: [flexcoders] DataGrid question

2005-11-14 Thread Matt Chotin
Add newmodel.annotation.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Kai Pradel Sent: Monday, November 14, 2005 8:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid question   I am new to Flex and am having a

RE: [flexcoders] Remote Object call - Server Response code

2005-11-15 Thread Matt Chotin
We’re investigating this further and will work with Sridhar offline…   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Boddula, Sridhar Sent: Thursday, November 10, 2005 7:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Remot

RE: [flexcoders] Flex2 :: mx.controls.HorizontalList-like control

2005-11-15 Thread Matt Chotin
Unfortunately it’s still a Repeater that’s going to be your best bet or a custom control that you right.  We won’t support variableWidth in the HorizontalList.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of flexhansen Sent: Monday, N

RE: [flexcoders] why "change" event of the MenuBar is not trigger?

2005-11-15 Thread Matt Chotin
Is that a MenuBar with each of those being its own menu or is it one menu with 6 subitems?  I believe the “change” event only fires for the subitems, not if you simply click on the top-level menu entry.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.c

RE: [flexcoders] How to give dynamic title to panel

2005-11-15 Thread Matt Chotin
This is a little tough.  It’s completely unsupported, but what you’d need to do is get through to the underlying TextField that represents the title and change it to use HTML instead of regular text.  Then you’d update the title using HTML so that the proper number is highlighted.  As I s

RE: [flexcoders] Re: Question about Enable / Disable Validator

2005-11-15 Thread Matt Chotin
do something to tell flex to repaint the screen, which > would then remove the red border since the validator is not being > invoked. Is this wrong? > > --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > > > Hmm, disabling the v

RE: [flexcoders] AddTreeNode sometimes does not add but instead replaces the top node.

2005-11-15 Thread Matt Chotin
Not that I can see from your description so you might need to give us more code…   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, November 15, 2005 11:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] A

RE: [flexcoders] Flex2 :: mx.controls.HorizontalList-like control

2005-11-15 Thread Matt Chotin
On 11/15/05, Matt Chotin <[EMAIL PROTECTED]> wrote: Unfortunately it's still a Repeater that's going to be your best bet or a custom control that you right.  We won't support variableWidth in the HorizontalList.   Matt   From: flexcoders@yahoogroups.com [mailto:

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