[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] 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] 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] 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] 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] 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] 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

Re: [flexcoders] Send SMS

2010-06-28 Thread Matthew Muller
Or call a web service. Sent from my iPad mini On 27 Jun 2010, at 09:37, chenrij...@gmail.com wrote: The API should be able to access the COM port for it, AFAIK there aren't no solution for that yet, correct me if I'm wrong. Powered by Telkomsel BlackBerry® From: Smin Rana

[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] 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: 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] 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] 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] 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] 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] 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] 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] Flex Video and Firefox Issue

2009-12-15 Thread Gates Matthew
I have a videoplayer component that has been working just fine across browsers (chrome, IE, Safari, Firefox). We just changed server platforms from IIS to apache tomcat. The video player continues to work fine in all browsers EXCEPT firefox. In the flex debugger, it reports no errors. But it

[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] 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] 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] 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] 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] 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] 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: 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] 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] 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] ASP.NET .ashx handler - POST variables not working

2009-05-08 Thread Matthew A. Wilson
I created a web handler (.ashx) in ASP.NET and it takes 4 post variables, all strings. When I manually type in the URL with the variables (name=thisemail=thatcomments=this) it works fine, but when I try to POST those variables in an HTTPRequest in Flex, my web handler can't see the variables.

[flexcoders] Tile control: Border style and Zoom

2009-04-12 Thread Matthew A. Wilson
I'm using a tile control to display an image with a short description to the right of it. Basically everything is contained with in an HBox and the I'm programmtically adding that to the tile: thisTile.addchild(myHBox) I'd like to have some sort of visual indicator to let the user know which

[flexcoders] What's your favorite Tip/Trick ?

2009-04-10 Thread Matthew A. Wilson
I've been using .NET for years and recently started developing in Flex. One thing I've noticed (and maybe it's because I'm new) is that I have to write out just about everything. There were so many things in .NET that the IDE would handle for me. Like I could write a function, like DoThis(),

[flexcoders] Re: Debugger won't break on HTTP Service result function

2009-04-09 Thread Matthew A. Wilson
for everyone's help. Have a great day! --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: Have you set up another event listener (using Actionscript) that is grabbing that event? --- In flexcoders@yahoogroups.com, Matthew A. Wilson korband@ wrote: I have a component

[flexcoders] Debugger won't break on HTTP Service result function

2009-04-08 Thread Matthew A. Wilson
I have a component that I'm adding to my Flex project and it makes 3 HTTP Service calls. On the result= I have listed a function and inside that function I have created a breakpoint. When I go into debug, it won't stop at that breakpoint. It's like it's not calling the result function. I know

[flexcoders] Bind ComboBox to returning XML (HOW TO)

2009-03-23 Thread Matthew A. Wilson
Need help with a combobox... I have a combobox that I want to load from a database. The text will be a name, and the value will be an integer. That's it - pretty straightforward. Just can't seem to figure it out. The xml will look like this: designers designer id=1 name=Matt / designer

[flexcoders] ActionScript design patterns chapter pdf

2009-02-02 Thread Matthew Kim
Does anyone know where I can find a copy of the pdf of the chapter from the ActionScript 2.0 Dictionary entitled ActionScript Design Patterns for Rich Internet Application Development? It was previously posted on the now defunct richinternetapps site. I'm in the process of updating a

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

Re: [flexcoders] WHERE is ActionScript 3 Documentation HIDING ?

2008-03-29 Thread Matthew Kampschmidt
Here are the Flex 3 livedocs, this what you¹re looking for? http://livedocs.adobe.com/flex/3/langref/index.html -kampy On 3/29/08 9:49 PM, Jeffry Houser [EMAIL PROTECTED] wrote: If I Google ActionScript 3 Documentation this page comes up:

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

Re: [flexcoders] Flash Player 9.0.115 drawing bug

2007-12-11 Thread Matthew Ganz
it and has a solution I'd love to know what it is! Jim. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz Sent: 10 December 2007 16:15 To: flexcoders@yahoogroups.com Subject: [flexcoders] Flash Player 9.0.115 drawing

Re: [flexcoders] Flash Player 9.0.115 drawing bug

2007-12-10 Thread Matthew Ganz
it might be related. And if anyone has seen it and has a solution I'd love to know what it is! Jim. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz Sent: 10 December 2007 16:15 To: flexcoders@yahoogroups.com

Re: [flexcoders] Flash Player 9.0.115 drawing bug

2007-12-10 Thread Matthew Ganz
DisableMulticoreRenderer=1 -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz Sent: Monday, December 10, 2007 8:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flash Player

Re: [flexcoders] Flash Player 9.0.115 drawing bug

2007-12-10 Thread Matthew Ganz
? -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Ganz Sent: Monday, December 10, 2007 10:54 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flash Player 9.0.115 drawing bug hi alex. thanks for your response

[flexcoders] accessing node via XML.child()

2007-11-09 Thread Matthew Ganz
hi. i'm trying to access a node using myXML.child(nodeName) and it's throwing an error. i create my XML object by passing a string as an arg in a method invocation: gmlParser.convertStringToXML(event.data) public function convertStringToXML(s:String):Array{ gml = new XML(s); var

Re: [flexcoders] Re: accessing node via XML.child()

2007-11-09 Thread Matthew Ganz
Chiverton [EMAIL PROTECTED] wrote: On Friday 09 Nov 2007, Matthew Ganz wrote: i get the error message: 'a term is undefined and has no properties' Stop it in the debugger and find out which one. -- Tom Chiverton Helping to administratively seize high-yield features

Re: [flexcoders] Replacing Caret character in text

2007-10-30 Thread Matthew Ness
Amy, try: const caret:RegExp = /\^/g; theText = theText.replace(caret, your replacement); Matt On 31/10/2007, at 5:22 AM, Amy wrote: I'm trying to work around the bug in Flex that adds carriage returns around html tags in XML, even ones wrapped in CDATA. So, I figure the

[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

[flexcoders] remove all spaces using RegExp

2007-10-03 Thread Matthew Ganz
hi. i've got a string with a bunch of extra spaces in it; line breaks, tabs, etc...for some reason when i try to RegExp it, it doesn't remove it. anything wrong with this statement?? coordinatesStr.replace(\\s+,); // doesn't remove any spaces i've tried this and it still doesn't work: var

Re: [flexcoders] Re: remove all spaces using RegExp

2007-10-03 Thread Matthew Ganz
to your variable? i.e.: coordinatesStr = coordinatesStr.replace(\\s+,); Greg C. --- In flexcoders@yahoogroups.com, Matthew Ganz [EMAIL PROTECTED] wrote: hi. i've got a string with a bunch of extra spaces in it; line breaks, tabs, etc...for some reason when i try to RegExp

[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.

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] 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

[flexcoders] XMLList and ToggleToolbar

2007-09-14 Thread Gates Matthew Stoner
I'm trying to take a XML structure that I'm returning via a remote service and use it as a dataProvider for a Toogletoolbar. The XML is a bit complex and has some nested nodes. Here is a small example of it topics topic label=Dog / breedSchnauzr/breed topic label=Cat / /topics I

[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

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] 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

[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] 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] 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] 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] FlexBuilder bug: failing to report location of errors, warnings and hints

2007-05-15 Thread Matthew OMeara
. Thanks Matthew

[flexcoders] Auto generate AS3??? from MXML

2007-05-14 Thread Matthew OMeara
. 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] 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: 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

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

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

[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

[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:

[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

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

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] 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

[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] 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] 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

[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] 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

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

[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

  1   2   >