Re: [flexcoders] Re: Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread matthew
no fiddler, but you should be able to use charles: http://www.xk72.com/charles/ /matthew On Feb 17, 2008, at 11:12 PM, Josh McDonald wrote: Hmm, I'm on Mac, so there'll be no fiddler for me :) On Feb 18, 2008 2:11 PM, Josh McDonald [EMAIL PROTECTED] wrote: Free is good, thanks for the tip

[flexcoders] truncateToFit() and concatenated Strings

2009-09-16 Thread Matthew
Hi - I have a Label with truncateToFit set to true and a maxWidth. However, the htmlText I assign is concatenated a la: ipText = 'b' +endPointData.ipLabel+ '/b: ' + endPointData.ipValue; I've researched online and found that truncateToFit() has problems dealing with concatenated Strings; my

[flexcoders] Re: truncateToFit() and concatenated Strings

2009-09-17 Thread Matthew
Thanks for your responses. I did try that link (and that class) but it appears to replace the entire string with '...' instead of just the ending characters. And the conditional it uses to test if truncation is needed is testing for height values??? That I don't understand: protected function

[flexcoders] Re: truncateToFit() and concatenated Strings

2009-09-17 Thread Matthew
thank you very much, valdhor. those links got it done.

[flexcoders] AdvancedDataGrid itemOpen() to resize Container

2009-09-17 Thread Matthew
Hi, I have a Windowshade as a root component; the child is an AdvancedDataGrid. I want the Windowshade to scale as a user expands/collapses a row in the DataGrid. So I trap the itemOpen and itemClose events and I try to adjust the height of the Windowshade like this: this.owner.measuredHeight

[flexcoders] Re: AdvancedDataGrid itemOpen() to resize Container

2009-09-18 Thread Matthew
I figured out one way to do it: private function openRow():void{ var windowShade:WindowShade = this as WindowShade; windowShade.height += appColl.source.length * 20; } The problem seemed to be that I was

[flexcoders] verticalSeparatorSkin with an AdvancedDataGrid

2009-09-22 Thread Matthew
Hi - I'm trying to put a 5px space inbetween AdvancedDataGrid rows, but I don't want any space between the AdvancedDataGrid and its renderer (another DataGrid). I tried creating a spacer gif and using that as the verticalSeparatorSkin in the outer AdvancedDataGrid but it puts a space not

[flexcoders] Re: Chart Similar to Google finance ?

2009-11-11 Thread Matthew
Check anychart.com. They have some pretty good charts that might fit your needs. HTH, Matt --- In flexcoders@yahoogroups.com, Dharmendra chauhan_i...@... wrote: Hi There, I need charts similar to google finance . Does any charting library support it ? . I explored all leading third

[flexcoders] How many records is too many records?

2009-11-16 Thread Matthew
From what I found online, the flash player has no real limitations aside from whatever browser's plugin-architecture may limit it. However, I have a few datagrids that will display tens of thousands of records (anywhere from 10,000 - 60,000). Of course I'm going to use a paging scheme but how

[flexcoders] byteStream to .txt file

2009-11-24 Thread Matthew
Hi - I'm working with a Java developer and trying to figure out how to download files off a server. Because the server doesn't accept HTTP requests (only FTP), I can't link to the file. The Java developer wants to send the file to me as a byteStream. Is this possible? How do I transform

[flexcoders] Re: byteStream to .txt file

2009-11-24 Thread Matthew
of that? Thanks for your help. Matt --- In flexcoders@yahoogroups.com, Julian Alexander wb...@... wrote: Check out the FileReference class. It has a download() method that can be passed a URLRequest. -Julian From: Matthew fume...@... To: flexcoders

[flexcoders] Re: byteStream to .txt file

2009-11-24 Thread Matthew
if it's over FTP? From: Matthew fume...@... To: flexcoders@yahoogroups.com Sent: Tue, November 24, 2009 10:21:15 AM Subject: [flexcoders] Re: byteStream to .txt file I didn't realize I could plug in an FTP address into URLRequest. Regardless, I

[flexcoders] Re: byteStream to .txt file

2009-11-24 Thread Matthew
downloading via FTP but I've had a Java client stream me files plenty of times and it comes out the other end as the file. -J From: Matthew fume...@... To: flexcoders@yahoogroups.com Sent: Tue, November 24, 2009 12:34:48 PM Subject: [flexcoders] Re

[flexcoders] Channel.Connect.Failed error NetConnection.Call.Failed: HTTP Status 404

2009-11-25 Thread Matthew
Hi - I found that this error occurs frequently when moving a Flex project from one machine to another. In my situation, I am exporting a release build so another developer can run it on their machine; they don't have Flex, only the flash player to run it. They are receiving this error and

[flexcoders] Passing Excel file to Java

2009-12-02 Thread Matthew
Hi - I have a Flex UI and I want to allow a user to upload an Excel file. Since parsing Excel in Flex is quite difficult I'd rather pass it to Java (via Blaze DS) and have Java return me a CSV file. But I'm doubtful that I can pass an Excel file thru Blaze. Can I? Is there some other

[flexcoders] Why am I seeing a greyed out folder icon...

2009-12-09 Thread Matthew
...in the first column of my AdvancedDataGridRendererProvider?? I'm using an AdvancedDataGrid with a DataGrid item renderer. I set the renderer up with a columnIndex=1 and columnSpan=0. When the row is expanded, the DataGrid is indented one column (as it should), but why am I seeing the grey

[flexcoders] Re: Why am I seeing a greyed out folder icon...

2009-12-09 Thread Matthew
Actually, the more online examples I see, that folder (really more a document) always appears in the left-most column of the row that is expanded. I guess it's there by default. --- In flexcoders@yahoogroups.com, Matthew fume...@... wrote: ...in the first column of my

[flexcoders] Access Checkbox ItemRenderer in AdvancedDataGrid

2009-12-28 Thread Matthew
Hi - I have a button outside an AdvancedDataGrid. On the click event, I want to find which of my checkbox item renderers are selected. For some reason, I can't figure out. Here's my code below. Any tips are greatly appreciated. Thank you! mx:Button label=Remove Selections

[flexcoders] Re: Access Checkbox ItemRenderer in AdvancedDataGrid

2009-12-28 Thread Matthew
is available to me with the updated value. That's the beauty of an ItemRenderer, I guess. --- In flexcoders@yahoogroups.com, Matthew fume...@... wrote: Hi - I have a button outside an AdvancedDataGrid. On the click event, I want to find which of my checkbox item renderers are selected

[flexcoders] Is my ItemRenderer on the last Row of data?

2010-01-05 Thread Matthew
Hi, I know the answer to this question before asking it but hopefully someone has a found a way to do this. Is there a way to know (in my override of set data() method) whether my item renderer is rendering the last row of data? thanks for any help on this one, matt

[flexcoders] Re: Is my ItemRenderer on the last Row of data?

2010-01-06 Thread Matthew
= value[DataGridListData(listData).dataField]; if(listData.rowIndex == (owner as DataGrid).rowCount - 1) { trace(Rendering the last row); } } } } } --- In flexcoders@yahoogroups.com, Matthew

[flexcoders] What server do I put my crossdomain.xml file on?

2010-01-14 Thread Matthew
Hi - I have a Flex app that uses an HTTPService to call a Servlet. The servlet retrieves a file on another domain and passes back to Flex where they are prompted by a Windows dialog to either save or open it: It works fine locally. When deployed, I get this error: Error #2044: Unhandled

[flexcoders] Remove item from Array and loop messes up

2010-03-16 Thread Matthew
Hi - I remove an item in an array using splice() and when there's one object left in the array, the looping stops. Why is that? My loop is nested within another loop but I thought it should iterate over everything first before it goes back to the outside loop. Here's my code: for( var

[flexcoders] Re: Remove item from Array and loop messes up

2010-03-16 Thread Matthew
I found that reversing the loop, i.e. decrementing thru it solves the problem. Hope that helps someone. --- In flexcoders@yahoogroups.com, Matthew fume...@... wrote: Hi - I remove an item in an array using splice() and when there's one object left in the array, the looping stops. Why

[flexcoders] Re: Remove item from Array and loop messes up

2010-03-16 Thread Matthew
find the best way is to create a new array that holds the id's of the items you want to delete and iterating over this new array and deleting specific items in the original array is best. --- In flexcoders@yahoogroups.com, Matthew fumeng5@ wrote: I found that reversing the loop, i.e

[flexcoders] AdvancedDataGridRendererProvider: dynamic columnIndex and columnSpan

2010-04-28 Thread Matthew
I have a need to render the same item on each row of a data grid. The only difference is on each row I need to dynamically compute the columnIndex and columnSpan. On each row it can be different. For example, on row 1 start the item on column 2 and span 5 columns. One row 2 start the item

[flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-05-03 Thread Matthew
I'm pretty new to Flash so I don't know all the technical details under the covers (e.g. Flash is buggy on Macs, who supported what video format first, etc) but one thing that strikes me as odd in the manifesto published by Apple is the attack of Flash for not being open. That strikes me as

[flexcoders] Yahoo TimeInput component as Item Editor

2010-06-22 Thread Matthew
Hi -- I'm having problems using the Yahoo TimeInput component as an Item Editor. I'm try to handle the situation when a user deletes numbers in the component and then clicks outside. For example, deleting the '56' in seconds Example time: 12:22:56 Normally, the numbers reset to 0, which is

[flexcoders] Re: Yahoo TimeInput component as Item Editor

2010-06-23 Thread Matthew
, it does. So, how does removing focus after making a change make me lose my value? Thanks, Matt --- In flexcoders@yahoogroups.com, Matthew fume...@... wrote: Hi -- I'm having problems using the Yahoo TimeInput component as an Item Editor. I'm try to handle the situation when a user

[flexcoders] PROGRESS:: Re: Two-way binding via ActionScript

2010-07-20 Thread Matthew
is it only 1-way binding? Still a little confused as to these things. Thanks for listening, Matt --- In flexcoders@yahoogroups.com, Matthew fume...@... wrote: Hi - I'm binding two AutoCompleteModified objects to one another; meaning you type in one and it selects the correct object in the other

[flexcoders] Bookmark no longer valid when moving items in AdvancedDataGrid

2010-07-28 Thread Matthew
I am trying to implement code to move items up and down in an AdvancedDataGrid. When I repeat the move up or move down action multiple times in a row I get the error below. I don't get it every time but it will come here and there...pretty frequently. Sometimes I can click 2, 3, even 4 times

[flexcoders] Re: Bookmark no longer valid when moving items in AdvancedDataGrid

2010-07-30 Thread Matthew
Does anyone have any ideas on how I can resolve or troubleshoot further?

[flexcoders] WebSphere configuration errors

2010-08-24 Thread Matthew
Hi - This is my first time deploying my Flex war on WebSphere and I'm running into difficulties. I've got two errors when I compile my app from these files: ibm-web-bnd.xmi ibm-web-ext.xmi The main error message is this: org.eclipse.emf.ecore.xmi.PackageNotFoundException: Package with uri

[flexcoders] Problem: renderProvider and hierarchical data objects

2011-11-29 Thread Matthew
Hi - I'm having a problem with an AdvancedDataGrid that has a DataGrid as a renderProvider. My dataProvider for the ADG is an ArrayCollection of the below object. [Bindable] public class MyRecord implements ValueObject { public var recall_id:int; public var recall_type:String;

[flexcoders] Re: Problem: renderProvider and hierarchical data objects

2011-11-29 Thread Matthew
@yahoogroups.com, Matthew fumeng5@... wrote: Hi - I'm having a problem with an AdvancedDataGrid that has a DataGrid as a renderProvider. My dataProvider for the ADG is an ArrayCollection of the below object. [Bindable] public class MyRecord implements ValueObject { public var

[flexcoders] AIR: How to connect to external proxy

2012-01-05 Thread Matthew
Hi - I need my AIR app to connect to an external proxy via HTTPService call and I'm not using Blaze DS. How do I go about this? I can't figure it out. Any helpful tips are greatly appreciated. Thank you

[flexcoders] Re: AIR: How to connect to external proxy

2012-01-06 Thread Matthew
unless you are using Blaze DS or LCDS? Is this true? I'd hate to have to add that to my application just so I can get this accomplished. --- In flexcoders@yahoogroups.com, Matthew fumeng5@... wrote: Hi - I need my AIR app to connect to an external proxy via HTTPService call and I'm

[flexcoders] Selecting/Unselecting Rows In A Datagrid

2005-08-30 Thread Matthew Kuehn
on reference material here, and Google hasn't helped me any. Thanks, Matthew Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM

[flexcoders] Re: Selecting/Unselecting Rows In A Datagrid

2005-08-30 Thread Matthew Kuehn
].item.foo == flipFlag || flipFlag == '' ) { aSelectedRows.push(i); } } myDataGrid.selectedIndices = aSelectedRows; } Works like a charm. Props to cfbrianevans. Thanks, Matthew Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help

RE: [flexcoders] Flex in Eclipse

2005-11-25 Thread Matthew Ryan
If you are starting from scratch you might want to download Flex download Tomcat deploytwo war files - flex.war and samples.war into a Tomcat instance download Eclipse start hacking the Flex samples I only work with Flex 1.5 so I can't speak for what you might do in the

RE: [flexcoders] Yahoo! Maps API

2006-03-26 Thread Matthew Simpson
:[EMAIL PROTECTED] On Behalf Of Mike Chambers Sent: Sunday, March 26, 2006 1:16 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Yahoo! Maps APIThat is correct.mike chambers[EMAIL PROTECTED]Brendan Meutzner wrote: Hey Matthew, I'm going to go out on a limb here

Re: [flexcoders] DOT NET 2.0

2006-04-04 Thread Matthew Shirey
compile the application directly into a SWF file that can be served just like any normal Flash file. So with Flex 2.0, you should should be able to use ASP.NET 2.0 Web Services without the need for a Java server. -- Matthew On 4/4/06, sakgroups [EMAIL PROTECTED] wrote: We are building a web

[flexcoders] Looking for Developer - Flex Charting

2007-02-06 Thread Matthew Blumberg
We seek to developer to help us to create data-driven flash charts for our website. Some details: * Data is drawn dynamically from MySQL and/or XML (on a LAMP server). * We will need three different chart types: (1) Area Charts, (2) Bar Charts, (3) Balloon Charts. * Appearance of charts is

[flexcoders] My first Flex experiment. Styling weirdness.

2007-03-16 Thread Matthew Hayes
Hello all, I built my first Flex page the other day. I must say, everything went really smoothly except for one thing. I was trying to style a ToggleButtonBar. I even got the styling code from the Style Explorer app... where it seemed to work just fine. Here's the code:

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
there, but I hope I've accurately described my problem and the type of solution I'm looking for. Any other suggestions on how I can deal with visibility impaired users would also be helpful. Thank you! -- Matthew Yahoo! Groups Links To visit your group on the web, go to:http

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

2005-05-19 Thread Matthew Shirey
Unnikrishnan [EMAIL PROTECTED] wrote: One interesting adventure you can embark on is to put the whole application in a mx:Canvas and use mx:Zoom to scale it based on the resolution. I have never tried this before, so can't tell. I have doubts about the font-size etc :-) Sree Matthew

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
, -- Matthew -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders

[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
in from the C# side? Or is there something I need to do on the Flex side to make this equation happy? Please, any help would be appreciated, I'm pulling my hair out here. Dates are only fun if they are with a woman... :( -- Matthew -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

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

2005-06-27 Thread Matthew Shirey
you, -- Matthew On 6/25/05, Manish Jethani [EMAIL PROTECTED] wrote: On 6/25/05, Rick Bullotta [EMAIL PROTECTED] wrote: Is there a way to use the import statement in inline script in an mx:Script block?The compiler complains if we try this. Yes, certainly.mx:Scriptimport foo.Bar;function blah():V

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

2005-06-27 Thread Matthew Shirey
created is: StartDate[Local Time] : Wed Dec 31 16:00:00 1969 (+0:00) this just doesn't make any sense... -- Matthew On 6/27/05, Rick Bullotta [EMAIL PROTECTED] wrote: Here's an example with an HttpService, you can do something similar: Add: result=manageData(event) …to your

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
confusing... -- Matthew On 6/27/05, Rick Bullotta [EMAIL PROTECTED] wrote: The -MM-DDTHH:MM:SS format is from .NET's default XML serializer, which uses something like an ISO date format (.NET's format string "s"). When you dump it on the server side, it is probably

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

[flexcoders] Can someone please help me? Error message *No Disk*

2007-04-16 Thread Matthew Hartman
Can someone please help me? When I try and compile or debug an application through Flex Builder 2, I get an error message with a title: Windows - No Disk and the message: There is no disk in the drive. Please insert a disk into the drive. I have tried un-installing FB2 and re-installing and

Re: [flexcoders] Can someone please help me? Error message *No Disk*

2007-04-17 Thread Matthew Hartman
Matthew Hartman wrote: Can someone please help me? When I try and compile or debug an application through Flex Builder 2, I get an error message with a title: Windows - No Disk and the message: There is no disk in the drive. Please insert a disk into the drive. I have tried un-installing FB2

Re: [flexcoders] Can someone please help me? Error message *No Disk*

2007-04-18 Thread Matthew Hartman
of a large company with an expensive service plan). --Matthew On 4/18/07 8:40, Johannes Nel [EMAIL PROTECTED] wrote: this is an eclipse issue me thinks as i had this problem with an eclipse version of mine that did not have the FB plugin installed On 17 Apr 2007 06:00:18 -0700

[flexcoders] Re: Installing Flex On Vista Causes Reboots

2007-04-20 Thread Matthew OMeara
of their OS's. So make sure that is off and at least it gives you a chance to further debug. Matthew --- In flexcoders@yahoogroups.com, realeyes_jun [EMAIL PROTECTED] wrote: Iko, Sorry you couldn't get the installer to run on Vista, but it did work for me - I was running Windows Vista

[flexcoders] ZLIB compression standard within Flex (Flash)??

2007-04-25 Thread Matthew OMeara
is to grab 5mb xml files that are first zipped, then encrypted that have been cached on the server. I have flex unencrypting data successfully, but I can not get Flex to recognize and unzip any flavor of Zip that I send to it. Any thoughts? Thanks Matthew

[flexcoders] Re: ZLIB compression standard within Flex (Flash)??

2007-04-26 Thread Matthew OMeara
at trhe client (Flex app). I pass the string as HexString now and it works fine, will switch to Byte Stream soon. best, Matthew --- In flexcoders@yahoogroups.com, Matthew OMeara [EMAIL PROTECTED] wrote: I have been spinning cycles trying to get the uncompress function of ByteArray

[flexcoders] Auto generate AS3??? from MXML

2007-05-14 Thread Matthew OMeara
. Thanks Matthew

[flexcoders] FlexBuilder bug: failing to report location of errors, warnings and hints

2007-05-15 Thread Matthew OMeara
. Thanks Matthew

[flexcoders] Override failing.... between MXML base class and AS3 subclass

2007-05-17 Thread Matthew OMeara
but flex fails to route my event to the overriden function... it sends it to my placeholder function in the base class. I realize that Flex does not support Abstract functions yet, but what I am trying to do should work without requiring abstract. Any insights are appreciated. Matthew

[flexcoders] Flex bug... no resize event fired when width changes??

2007-06-08 Thread Matthew OMeara
... the width hasn't changed according to internal values, hence the event shouldn't fire. So the bug isn't the event not firing, its that the new value for width isn't getting set. Thanks Matthew

[flexcoders] Bring To Front

2007-06-09 Thread Matthew Dahl
I have a application I am creating that contains a few TitleWindows that I have made draggable. Now I would like to make it so that when a TitleWindow is clicked it is brought to the front. Does anyone know how to achieve this. On one site they did Win.orderToFront(); but orderToFront doesn't

[flexcoders] propage events thru a window object

2007-08-27 Thread Matthew Ganz
how can i place my display object in the event chain so it receives events thru a window component? basically, i have a map component that i need to move around and when i mouse up on top of another object, like my pop up window, i want the map to receive the event. thanks for any tips. --

[flexcoders] custom component as item renderer

2007-09-06 Thread Matthew Ganz
hi. i'm following aral balkan's tutorial on using item renderers: http://www.adobe.com/devnet/flex/quickstart/using_item_renderers/ i'm trying to implement a custom component as my item renderer and i'm going thru the tute and i'm still getting the following error: Definition ImageRenderer

Re: [flexcoders] custom component as item renderer

2007-09-06 Thread Matthew Ganz
ImageRenderer; Tracy -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz Sent: Thursday, September 06, 2007 4:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders

Re: [flexcoders] custom component as item renderer

2007-09-07 Thread Matthew Ganz
From: [EMAIL PROTECTED] ups.com [mailto:[EMAIL PROTECTED] ups.com] On Behalf Of Matthew Ganz Sent: Thursday, September 06, 2007 4:51 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] custom component as item renderer thank you

[flexcoders] scrollRect confusion

2007-09-10 Thread Matthew Ganz
hi. i'm loading an image at runtime into an image component. i want the component to have horizontal and vertical scrollbars. the image is 300x300 and the image i'm loading in is 500x500. i thought i could simply define a rectangle for the 'scrollRect' property of the image but it doesn't

Re: [flexcoders] scrollRect confusion

2007-09-10 Thread Matthew Ganz
: [flexcoders] scrollRect confusion scrollRect just provides clipping, it does not add scrollbars, etc. For that, I'd recommend just putting your image component inside of a Canvas component. Troy. On 9/10/07, Matthew Ganz [EMAIL PROTECTED] wrote: hi. i'm loading an image

[flexcoders] event.fault.faultString

2007-09-19 Thread Matthew Ganz
hi. i have a fault handler for my remote object. i pass a custom message when i throw an exception but my alert.show(event.fault.faultString) appends the fully qualified path of the class throwing the exception. how can i get the message only without the path? any tips are appreciated. thank

Re: [flexcoders] event.fault.faultString

2007-09-20 Thread Matthew Ganz
Optimal Payments Inc. -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz Sent: Wednesday, September 19, 2007 3:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders

Re: [flexcoders] event.fault.faultString

2007-09-20 Thread Matthew Ganz
that returns everything before the colon. i'm doing this: var msg:String = event.fault.faultString; var truncMsg:String = msg.substr((msg.indexOf(':')+2),msg.length); // +2 accounts for spaces after colon. - Original Message - From: Tom Chiverton [EMAIL PROTECTED] To:

[flexcoders] FileReference + multiple uploads

2007-10-02 Thread Matthew Ganz
Hi. I thought that if I have an array of FileReference objects, I can iterate over them and call upload() on each one without waiting for a response from the previous one. The problem is that my java upload service is only uploading 1 file and I don't know why the others aren't going thru.

[flexcoders] convert string to XML and access children.

2007-10-03 Thread Matthew Ganz
hi. i have a string returned from a java service and i convert it successfully to an XML object but somehow cannot access its elements appropriately. here's the string returned from the service: gml:ProxyResponse xmlns:gml=http://www.opengis.net/gml; gml:MultiGeometry srsName=0

  1   2   >