Re: [flexcoders] DOT NET 2.0

2006-04-04 Thread Matthew Shirey
We develop Flex 1.0 application using ASP.NET 1.0 and 2.0 Web Services. This works extremely well. Flex 1.0 requires a java server to serve the Flex application itself. While I haven't used 2.0 yet, what I have read indicates that you do not need a java server. The 2.0 development tools can

Re: [flexcoders] Re: setting conditional enabled with AS

2005-04-19 Thread Matthew Shirey
Thank you both, this offered further insight into this problem. I like the watch idea because it keeps it simple and literally watches the variable(s). But I do see its limitations. -- MatthewOn 4/19/05, Darron J. Schall [EMAIL PROTECTED] wrote: Joe Berkovitz wrote:I don't recommend using

Re: [flexcoders] Re: setting conditional enabled with AS

2005-04-19 Thread Matthew Shirey
Heh, I guess I picked bad variable names. We're not talking about x and y positioning here. subst var1 and var2 for x, y. M.On 4/19/05, JesterXL [EMAIL PROTECTED] wrote: Dudes, x is a getter/setter property.If you want to know when it changes,just listen for a move event.- Original Message

Re: [flexcoders] Large Fonts Components

2005-04-19 Thread Matthew Shirey
I think I know what you mean, I'll give it a shot. Thank you, M.On 4/19/05, Manish Jethani [EMAIL PROTECTED] wrote: On 4/19/05, Matthew Shirey [EMAIL PROTECTED] wrote:Problem here is there are components like the MenuBar, and the Column headers for the Datagrid that do not seem

Re: [flexcoders] Large Fonts Components

2005-04-19 Thread Matthew Shirey
of 550x22. It does not measure its contents todetermine its size. --- Seems a like a bit of an oversight to me, but at least it is documented. -- MatthewOn 4/19/05, Matthew Shirey [EMAIL PROTECTED] wrote: Thank you, that did make it more clear. I knew what you meant by extending the class, but I

Re: [flexcoders] How to trace the Variables in Flex

2005-04-20 Thread Matthew Shirey
I've written a couple of apps now and in both I made my own text box for displaying trace and debug type info. I just found it a bit quicker and simpler than the debugger in Flex. I'm going to try the Flash debugger option though since I didn't know you could do that. Hopefully that will be

Re: [flexcoders] Tomcat

2005-04-21 Thread Matthew Shirey
I'm not sure I understand the if you can actually get Tomcat installed correctly statement. We have the latest version of Tomcat and Flex running here. Took about 10 minutes to set up and have the samples site working. It's pretty simple really. -- MatthewOn 4/21/05, JesterXL [EMAIL PROTECTED]

Re: [flexcoders] Dynamic CSS

2005-04-25 Thread Matthew Shirey
No you cannot. Just search the groups for the keywords Dynamic CSS. You'll see quite a few posts on the topic. -- MatthewOn 4/25/05, kaibabsowats [EMAIL PROTECTED] wrote: Can you reference CSS files in the main Application file dynamically?I tried to bind a value to the CSS include statement

Re: [flexcoders] Re: Windows Logon ID in Flex

2005-04-25 Thread Matthew Shirey
I'm doing this, but I'm using Flex to talk to an ASP.NET web service that gets the information and returns it. M.On 4/25/05, kaibabsowats [EMAIL PROTECTED] wrote: Since the flash player resides in a sandbox on the clients machine(for security reasons) it wont be able to talk to the underlying

Re: [flexcoders] Re: Dynamic CSS

2005-04-25 Thread Matthew Shirey
?--- In flexcoders@yahoogroups.com, Matthew Shirey [EMAIL PROTECTED] wrote: No you cannot. Just search the groups for the keywords DynamicCSS. You'll see quite a few posts on the topic. -- Matthew On 4/25/05, kaibabsowats [EMAIL PROTECTED] wrote: Can you reference CSS files in the main

Re: [flexcoders] WYSIWYG

2005-04-25 Thread Matthew Shirey
I am assuming you mean a WYSIWYG test editor. We have one we created in Flash. I intend to convert that to a component that can be used in Flex. Unless someone here has a better idea? -- MatthewOn 4/25/05, Ryan Scott Jones [EMAIL PROTECTED] wrote: Has anyone created a nice

Re: [flexcoders] WYSIWYG

2005-04-25 Thread Matthew Shirey
Heh, typo, I meant WYSIWYG TEXT editor... I think I type the word test to often. M.On 4/25/05, Matthew Shirey [EMAIL PROTECTED] wrote: I am assuming you mean a WYSIWYG test editor. We have one we created in Flash. I intend to convert that to a component that can be used in Flex. Unless

Re: [flexcoders] WYSIWYG

2005-04-25 Thread Matthew Shirey
Of Matthew Shirey Sent: Monday, April 25, 2005 2:35 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] WYSIWYG Heh, typo, I meant WYSIWYG TEXT editor... I think I type the word test to often. M. On 4/25/05, Matthew Shirey [EMAIL PROTECTED] wrote: I am assuming you mean

Re: [flexcoders] Re: Dynamic CSS

2005-04-25 Thread Matthew Shirey
That's so great to hear, thank you! Wasn't sure if those were being routed to dev/null or what. M.On 4/25/05, Matt Chotin [EMAIL PROTECTED] wrote: have already sent in a request to MM that dynamic loading of css files be added to a future version of Flex, but I have no idea

Re: [flexcoders] Vertical Text- is it possible?

2005-04-27 Thread Matthew Shirey
I'd like to know if there's a simple way to rotate a label placed on a canvas? M.On 4/27/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi Nithya,It's not there by default, but you can do it by keeping one character perline in a Label or TextArea or TextInput. You can write a simpleVerticalLabel

Re: [flexcoders] Vertical Text- is it possible?

2005-04-27 Thread Matthew Shirey
Thanks, thats just what I needed! M.On 4/27/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Yeah,you can use Label's_rotation property. But you would need to embed thefont if you want to rotate a Label,TextInput or TextArea..For example:##RotateLabel.mxml##mx:Application xmlns:mx=

Re: [flexcoders] Internal popups

2005-05-12 Thread Matthew Shirey
Yeah, you were just a little quicker than me getting that one posted. Mine is pretty much the same solution: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml mx:Script ![CDATA[ function toggleVis(){ tw.visible = !tw.visible; } ]]

[flexcoders] Scale the size of a whole application

2005-05-19 Thread Matthew Shirey
This may sound like a odd request, but is there a way to scale the size of a whole application so that all of the contents get larger? The functionality that I desire is similar to what happens to a Flash movie when you make its size bigger. I'd like to design an application at a fixed

Re: [flexcoders] Scale the size of a whole application

2005-05-19 Thread Matthew Shirey
what I do to get full screen real-estate usage. Decreasing margins on things helps a lot too. - Original Message - From: Matthew Shirey To: flexcoders@yahoogroups.com Sent: Thursday, May 19, 2005 6:31 PM Subject: [flexcoders] Scale the size

Re: [flexcoders] Scale the size of a whole application

2005-05-20 Thread Matthew Shirey
. - Original Message - From: Matthew Shirey To: flexcoders@yahoogroups.com Sent: Friday, May 20, 2005 1:20 AM Subject: Re: [flexcoders] Scale the size of a whole application Actually, I am working down a path that uses a canvas and dynamically adjusts the ScaleX and ScaleY

Re: [flexcoders] Html page pop up

2005-06-10 Thread Matthew Shirey
Okay, I just looked at that IFrame example... that's pretty damn slick! M.On 6/10/05, Manish Jethani [EMAIL PROTECTED] wrote: On 6/10/05, nithya karthik [EMAIL PROTECTED] wrote:I have an application with a top canvas and a botton canvas. the top canvas has a button which on click must make a

[flexcoders] Strange Behavior with Font Embeding

2005-06-24 Thread Matthew Shirey
I am getting wierd results while trying to embed fonts in my application. Many times it reports: Warning /Penguin/SurveyProperties/EditSurvey.mxml:53 Font not found at: file:C:/Program Files/Apache Software Foundation/Tomcat 5.5/webapps/flex/Penguin/SurveyProperties/VERDANA.TTF This simply

[flexcoders] Re: Strange Behavior with Font Embeding

2005-06-24 Thread Matthew Shirey
it to really do a rebuild, which it didn't seem to be really doing before. I hope this helps someone else... -- MatthewOn 6/24/05, Matthew Shirey [EMAIL PROTECTED] wrote: I am getting wierd results while trying to embed fonts in my application. Many times it reports: Warning /Penguin/SurveyProperties

[flexcoders] Flex, C# Web Services, and Dates

2005-06-24 Thread Matthew Shirey
Hey all, I sure hope someone out there can make sense of the chaos that seems to be dates. I recently discovered the hard way that flex dates are in UTC by default when you create them, when you send them as a parameter to a C# web service, you need to use the .ToLocalTime() method (in c#)

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matthew Shirey
Might you have some information on where to put this exactly? It seems like it's too late by the time the object has been created from the result of the web service call. All it seems to contain is Invalid Date. When I look at the object that was created in the Network Monitor, it does seem to

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matthew Shirey
.Row[i].DateTime = d; } } - Rick From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matthew Shirey Sent: Monday, June 27, 2005 6:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates Might you h

Re: [flexcoders] embedding PDF file

2005-06-27 Thread Matthew Shirey
Just a note, IFRAME works in the current version of Firefox. I believe it also works in current version of Netscape as well... -- MatthewOn 6/27/05, Longley, Andrew (N-Aviture) [EMAIL PROTECTED] wrote: I imagine the IFrame solution might work for you.It's a little toughto implement and as far

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matthew Shirey
- Rick From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matthew Shirey Sent: Monday, June 27, 2005 6:41 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates Thanks for the reply, I did try what you suggested just

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matthew Shirey
to coding my own date object to hold the year, month, day, hour, minutes, and seconds values seprately and turn them back into a date once flex has them. Again, this seems a little extreme for a situation where it should just work... any thoughts? -- Matthew On 6/27/05, Matthew Shirey [EMAIL

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-28 Thread Matthew Shirey
a disconnect somewhere inside of the deserialization in Flex, but I can't be certain. Sounds like it is worth creating a bug report. - Rick From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matthew Shirey Sent: Monday, June 27, 2005 9:36 PM To: flexcoders

[flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-06-30 Thread Matthew Shirey
Here's another bug that seems to have found me. If you use scaling to make a MenuBar larger, it's menu items do not scale with it. They remain their normal size. Does anyone know of a possible work around to this? I need the menu items to scale as well. -- Matthew -- Flexcoders Mailing List

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-06 Thread Matthew Shirey
, JesterXL [EMAIL PROTECTED] wrote: Is it the items or rather the text itself that does not scale? The text can scale if you embed the font. - Original Message - From: Matthew Shirey To: flexcoders@yahoogroups.com Sent: Thursday, June 30, 2005 5:05 PM Subject: [flexcoders] bug

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-06 Thread Matthew Shirey
, my anger is directed that Flex Development Team, not you. Why have scalex and scaley properties when on many components they are seriously broken? M.On 7/6/05, Manish Jethani [EMAIL PROTECTED] wrote: On 7/6/05, Matthew Shirey [EMAIL PROTECTED] wrote:I am using embeded fonts, but its the whole sub

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-07 Thread Matthew Shirey
, we're going to want to take a step back from the monitor, but its all I could come up with on my current time line. I'll explore scaling the whole application again once I get this version out. Thanks again for the information. M.On 7/7/05, Manish Jethani [EMAIL PROTECTED] wrote: On 7/7/05, Matthew

Re: [flexcoders] Reorder tree via dragging

2005-07-07 Thread Matthew Shirey
As I am currently working with this, I can say that dataForFormat(source) will give you a reference to the source object of the drag drop operation. I am not sure about the items one though. I've read mixed documentation, some say its treeItems. Any rate, there's a formats array in the event

Re: [flexcoders] Re: User Credentials Cache

2005-03-22 Thread Matthew Shirey
Yes, I may have to do the same, but at this point it represents a major change to the application. =( M. On Tue, 22 Mar 2005 08:13:47 -, billheit [EMAIL PROTECTED] wrote: My guess is that the Flex server is caching the credentials somewhere when using the proxy server. I'm not sure

Re: [flexcoders] weird problem with Flashplayer in Linux

2005-03-22 Thread Matthew Shirey
Well, my guess would be that it didn't affect the Flashplayer directly. Java is used to create the SWF that is passed to the Flashplayer though so maybe some difference in the version was creating a SWF that wasn't quite right for the Linux flash player? M. On Tue, 22 Mar 2005 14:31:35 +0100,

Re: [flexcoders] Binding question

2005-03-23 Thread Matthew Shirey
You just hit on a problem I had a week ago. It looks like the wsdl attribute cannot be set at runtime. I even tried doing it in actionscript with no luck. This is problematic for me because I want to be able to declare all of my web service urls globally so they can be changed easily. I

Re: [flexcoders] Flex on .Net? Any progress?

2005-03-24 Thread Matthew Shirey
I don't think you are missing anything. We have a similar problem in our shop. We're primarily .NET here and to use flex we have to support a completely different platform. We're mostly just waiting for the .NET version. When that's released we'll port our applications to it and dump the J2EE

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Matthew Shirey
Our shop cannot hardly pull the current price... If it goes up I don't know what it will mean for us, but I doubt its good. We're in love with flex, but we may have to give it up if they raise the price on it like that. -- Matthew On Fri, 25 Mar 2005 14:25:38 +0200, Robert Stuttaford [EMAIL

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Matthew Shirey
!!! Thijs Op 25-mrt-05 om 17:36 heeft Dennis Jackson het volgende geschreven: Sounds like laszlo time :) -Original Message- From: Matthew Shirey [EMAIL PROTECTED] Date: Fri, 25 Mar 2005 08:32:45 To:flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 1.5 price

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Matthew Shirey
What about a 2cpu license? Please answer. Your 'starter kit' is overkill for us. If our price is based on a minimum 4cpu price, then this is no longer a joke at all. We will have to drop Flex and never look back. We will have wasted months of training and actual development time. This is

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Matthew Shirey
As I already said this is no joke to me or my department. -- Matthew On Thu, 31 Mar 2005 14:43:38 -0500, Pushkar Phatak [EMAIL PROTECTED] wrote: damn. either this is too good for an april fools joke, or as russel peters said, somebody gonna get-a-hurt real bad :) pushkar --

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Matthew Shirey
when they need to renew their maintenance license? Or will the 1 cpu license cover the whole server? (i.e. does cpu mean server or does it mean processors?) Simon -Original Message- From: Matthew Shirey [mailto:[EMAIL PROTECTED] Sent: 31 March 2005 18:17

[flexcoders] Scrollbars in a VBox

2005-03-31 Thread Matthew Shirey
With all these pricing things up in the air its hard to think about coding, but I do have a bit of a problem I'm trying to work out. I have a layout that has multiple nested VBox components with a repeater on the inside. For my application this repeater is going to be repeating a custom

Re: [flexcoders] Flex 1.5 price

2005-04-01 Thread Matthew Shirey
it mean processors?) Simon -Original Message- From: Matthew Shirey [mailto:[EMAIL PROTECTED] Sent: 31 March 2005 18:17 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 1.5 price What about a 2cpu license? Please answer. Your 'starter kit' is overkill for us

Re: [flexcoders] Run MXML on PC, Calling to Java on Remote Server - Help

2005-04-04 Thread Matthew Shirey
My guess would be that most don't have enough information to help. I am not sure what you are trying to attempt here. You may want to be more specific about what it is you are trying to do. What kind of java programs are you trying to'make calls' to? What do you mean by 'make calls'... --

[flexcoders] Sort Order in a DataGrid

2005-04-04 Thread Matthew Shirey
Might someone point me in the right direction for altering the sort order method(s) for a DataGrid? It's currently annoying litteral. I'd like to alter it so it is case insensitive. Currently the column orders somewhat like this: A B C . . Z a b c . . . z while I'd like it to order like: A a

Re: [flexcoders] Sort Order in a DataGrid

2005-04-04 Thread Matthew Shirey
(sortFunc);/ /mx:VBox /mx:Panel/mx:Applicationhope that helps-abdulFrom: Matthew Shirey [mailto:[EMAIL PROTECTED]]Sent: Tuesday, April 05, 2005 5:20 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Sort Order in a DataGridMight someone point me in the right direction

Re: [flexcoders] Experiences with XMLSocket?

2005-04-05 Thread Matthew Shirey
It should be pointed out that the server is what you are most interested in for this case. I have had good experiences using XMLSocket and Flash in many situations. I have however seen many horrible server implementations that result in poor performance that have nothing to do with the Flash

[flexcoders] ActionScript Components

2005-04-05 Thread Matthew Shirey
Might someone point me in the direction of some good docs/examples of creating components using ActionScript. I have the RIA book and chapter 10 has some information, but its disappointingly sparse. Mostly I am interested in how to create a composite component. A component containing many other

Re: [flexcoders] Re: Development Environment Setup Q's

2005-04-06 Thread Matthew Shirey
Is there any way to integrate Flex Builder and Subversion or is the process more manual? -- Matthew On Apr 6, 2005 9:04 AM, JesterXL [EMAIL PROTECTED] wrote: The only time things get bleh is when you and your fellow developers don'tcommunicate.As long as communication is continous, and people

[flexcoders] Dynamically Changing an entire CSS

2005-04-06 Thread Matthew Shirey
After searching the mailing list archives I cannot seem to find a good answer for this question so I thought I'd re-ask it and see if it could get some additional feedback. We have multiple VERY extensive CSS files. We'd like to be able to dynamically switch between the CSS files at run time.

Re: [flexcoders] Dynamically Changing an entire CSS

2005-04-06 Thread Matthew Shirey
. - Original Message - From: Matthew Shirey To: flexcoders@yahoogroups.com Sent: Wednesday, April 06, 2005 1:13 PM Subject: [flexcoders] Dynamically Changing an entire CSS After searching the mailing list archives I cannot seem to find a good answer for this question so I thought I'd re-ask

Re: [flexcoders] Dynamically Changing an entire CSS

2005-04-06 Thread Matthew Shirey
, should detect the CSS file change, and generate a new SWF for the end user that will have the new CSS styles in it. - Original Message - From: Matthew Shirey To: flexcoders@yahoogroups.com Sent: Wednesday, April 06, 2005 2:34 PM Subject: Re: [flexcoders] Dynamically Changing an entire CSS

Re: [flexcoders] Dynamically Changing an entire CSS

2005-04-07 Thread Matthew Shirey
on the server, you could download them, parse them, and set various styles, including global styles that affect the entire application, using a fairly small amount of ActionScript. - Gordon -Original Message-From: Matthew Shirey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 06, 2005 4:39

Re: [flexcoders] ActionScript Components

2005-04-07 Thread Matthew Shirey
I think things are a bit messy for many reasons. In this casebecause for each component I also have a separate action script file.Between that and having the actionscript embeded in the mxml files it seemed like the lesser of two evils. On top of that Flex Builder doesn't seem to manage its

Re: [flexcoders] Flex 1.5 price

2005-04-07 Thread Matthew Shirey
Just call MM and try to order. That's all the proof you need.My MMcontact did confirm to me the day before that it was indeed going up. -- Matthew On Apr 7, 2005 11:43 AM, Kristopher Schultz [EMAIL PROTECTED] wrote: OK. After all the chatter and speculation on the price of Flex changing on

Re: [flexcoders] How to add an image or icon beside titles of a container

2005-04-07 Thread Matthew Shirey
I read somewhere in this list about using a custom renderer for the accordian container bar. I am far from a flex expert yet, but I imagine you could do it that way... M. On Apr 7, 2005 10:49 AM, Ghislain Simard [EMAIL PROTECTED] wrote: how to add an conditional icon beside a title inside a

Re: [flexcoders] flex and javascript

2005-04-07 Thread Matthew Shirey
To my knowledge Flash itself has no way to upload a file. Other than the SharedObject I don't think it has any access to the local filesystem. (as always please correct me if I'm wrong) That would be the real problem. The HTML/_javascript_ solutions are the workaround and in turn require the

Re: [flexcoders] Flex 1.5 price

2005-04-07 Thread Matthew Shirey
That's true, but my point was that he might want to just go right to the source since its really easy to just pick up the phone and call. Lucian also stated that there was pricing based on 'interview' or 'discussion'. So again, its most likely best just to call MM. M. On Apr 7, 2005 12:13 PM,

Re: [flexcoders] Dynamically Changing an entire CSS

2005-04-07 Thread Matthew Shirey
a global style like this: StyleManager.styles.global.setStyle(fontSize, 14); and astyle for all instances of a particularcomponent like this: StyleManager.styles.Button.setStyle(fontSize, 14); - Gordon -Original Message-From: Matthew Shirey [mailto:[EMAIL PROTECTED]] Sent: Thursday, April

Re: [flexcoders] full screen panel.

2005-04-13 Thread Matthew Shirey
I would be interested in that information as well if you manage to find it. Might you share if you do? Thanks! -- MatthewOn 4/13/05, Duccio Del Ministro [EMAIL PROTECTED] wrote: Thanks Manish.RegardsDuccio--- Manish Jethani [EMAIL PROTECTED] wrote:-On 4/13/05,

Re: [flexcoders] Radio Button Custom Component

2005-04-13 Thread Matthew Shirey
I am working with Jack and I am familiar with his problem. There's a few reasons why we're using a component with a radio control inside it. Our problem is that it seems to be ignoring the groupName property. Do radio controls have to all exist inside the same parent container to work as a

Re: [flexcoders] Flex Non Comercial

2005-04-13 Thread Matthew Shirey
I have one. It took me about two weeks to get it once it was confirmed that I qualified for it. -- MatthewOn 4/13/05, Rich Tretola [EMAIL PROTECTED] wrote: Do you have a non comercial licence ?Does anyone have one ?On 4/13/05, Ryan Scott Jones [EMAIL PROTECTED] wrote: (But I'm not from MM.)

Re: [flexcoders] Flex Non Comercial

2005-04-13 Thread Matthew Shirey
While it took me two weeks to get the license once I was approved, it first took two weeks to get approved. I ended up calling MM twice to try to get information on the status during those first two weeks. I believe their approval process is very manual. I am sure they have quick, and, as we've

[flexcoders] SharedObject across Applications

2005-04-13 Thread Matthew Shirey
I am trying to use a SharedObject to store some data that will be access across two applications. I am finding that the second application cannot seem to access any of the data stored by the first though. What little information I could find on the SharedObject in the Macromedia Developing Flex

Re: [flexcoders] SharedObject across Applications

2005-04-13 Thread Matthew Shirey
handles or anything, but you know why checkin/checkout systems were invented in the first place... - Original Message - From: Matthew Shirey To: flexcoders@yahoogroups.com Sent: Wednesday, April 13, 2005 6:02 PM Subject: [flexcoders] SharedObject across

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Matthew Shirey
I'd be interested in that answer as well.Flex Builder's performance leaves a lot to be desired.Editing multiple CSS files practically takes the editor to a stand still.M.On 4/13/05, Ketan Bengali [EMAIL PROTECTED] wrote: Has anybody tried any editors apart from from Flex Builder for mxml?

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Matthew Shirey
) and quite enjoy it. From: Matthew Shirey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 13, 2005 10:20 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MXMXL Editor I'd be interested in that answer as well.Flex Builder's performance leaves a lot to be desired.Editing

Re: [flexcoders] MXMXL Editor

2005-04-13 Thread Matthew Shirey
Yes, that's who makes XML SPYOn 4/13/05, Ketan Bengali [EMAIL PROTECTED] wrote: Is it altova.com ?Regards,Ketan BengaliBrooks Andrus wrote: I've used XMLSPY home edition (free) and quite enjoy it. *From:* Matthew Shirey

Re: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Matthew Shirey
I'm fairly new at this data binding stuff... but I thought you were only able to bind properties, or getters/setters. I have had mixed results when I try to bind to a function. Is this wrong? -- MatthewOn 4/14/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi, Can you post the code so

Re: [flexcoders] any ideas about flex client side caching?

2005-04-14 Thread Matthew Shirey
Just be careful about how much you store in the SharedObject. By default the client is set to accept up to 100k A 'Huge' dataset might exceed that. If you exceed that about I think the client then asks the user if more space can be allocated. I've just started using a SharedObject; I'm a little

Re: [flexcoders] Cairngorm flex/AS2 framework naming convention

2005-04-14 Thread Matthew Shirey
It's just a namespace... and they did make it afterall... M.On 4/14/05, Valy Sivec [EMAIL PROTECTED] wrote: Hello, My undertanding is that this framework is free and was initiated by the guys from iteration::two, and we all are gratefull for their kindness to share with us this framework.

Re: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Matthew Shirey
That's actually more difficult than it sounds... Any time it has happened I have coded around it. If the problem occurs again, I'll be sure to share. At this point though, I simply avoid using functions for data binding because of the problems I've had. If another situation comes up where a

Re: [flexcoders] Re: Radio Button Custom Component

2005-04-14 Thread Matthew Shirey
components? --- In flexcoders@yahoogroups.com, Matthew Shirey [EMAIL PROTECTED] wrote: I am working with Jack and I am familiar with his problem. There's a few reasons why we're using a component with a radio control inside it. Our problem is that it seems to be ignoring

Re: [flexcoders] Re: how to get the windows domain user id of the loc al machine?

2005-04-15 Thread Matthew Shirey
I believe that will require the user to authenticate against the server first though right? -- Matthew On 4/15/05, Matt Chotin [EMAIL PROTECTED] wrote: Building on what Abdul is suggesting (since getRemoteUser() is what you'll want) you basically need to get your J2EE server to

Re: [flexcoders] key events and the application

2005-04-15 Thread Matthew Shirey
I thought it might be something like that. Thank you though for the details. -- MatthewOn 4/15/05, Matt Chotin [EMAIL PROTECTED] wrote: You'll need to use a JSP page to load your flex app and then use _javascript_ to set focus in the flash movie. There have been other

Re: [flexcoders] Do you use a Mac?

2008-10-23 Thread Matthew Shirey
Like someone else already posted. The main advantage to using OSX instead of WindowsXP/Vista is that you spend more time actually getting work done. I spent fifteen years in various Windows boxes. I switched last year and I'll never go back. -- Matthew On Wed, Oct 22, 2008 at 11:49 PM, Haykel