[flexcoders] Re: grid does not occupy all of TabNavigator container ?

2005-04-18 Thread Andrew Spaulding
Maybe this will help http://www.flexdaddy.info/2005/02/21/sizing-apps-within-the-loader-control/ Andrew www.flexdaddy.com --- In flexcoders@yahoogroups.com, Andrew Spaulding [EMAIL PROTECTED] wrote: Hi, As the loader is not a component it doesnt have any concept of size, it is merely

[flexcoders] menu bar control- submenu issue

2005-04-18 Thread nithya karthik
hai, I have been using a menubar control which has 4 items.. only the 2nd item has sub menus inside it.. the others dont have.. the problem is when mouseDown on items without a child it displays "[object object], 1,,[object object], null"... how do i avoid this? please help me this issue

[flexcoders] Adobe aquires Macromedia

2005-04-18 Thread Nate Nielsen
SAN JOSE, Calif.--(BUSINESS WIRE)--April 18, 2005--Adobe Systems Incorporated (Nasdaq:ADBE) today announced a definitive agreement to acquire Macromedia (Nasdaq:MACR) in an all-stock transaction valued at approximately $3.4 billion. Crazy. Yahoo! Groups Links To visit your group

Re: [flexcoders] Adobe aquires Macromedia

2005-04-18 Thread Ketan Bengali
Just can't think of anything to comment on this. Regards, Ketan Bengali Nate Nielsen wrote: SAN JOSE, Calif.--(BUSINESS WIRE)--April 18, 2005--Adobe Systems Incorporated (Nasdaq:ADBE) today announced a definitive agreement to acquire Macromedia (Nasdaq:MACR) in an all-stock

RE: [flexcoders] Adobe aquires Macromedia

2005-04-18 Thread Dirk Eismann
After reading and browsing Adobe's site (the first time ever in my life actually :) I understand they've got some big size server solutions in their product portfolio - I hope Flex fits in there. Also, Adobe is a SVG supporter - I wonder what this will mean to the SWF format in the long

RE: [flexcoders] Adobe aquires Macromedia

2005-04-18 Thread Robertson-Ravo, Neil (RX)
SWG will obviously move aside for SWFwhat it means for Flex - who knowsbest to wait and see - but for me this is the 3rd company that say CF is been with - Flex is young and from experience, moving from company to company with apps like these can mean a no longer supported issue... Not

Re: [flexcoders] Adobe aquires Macromedia

2005-04-18 Thread Andrew Muller
Adobe may be a SVG supporter, but they use Flash on their site... On 4/18/05, Dirk Eismann [EMAIL PROTECTED] wrote: After reading and browsing Adobe's site (the first time ever in my life actually :) I understand they've got some big size server solutions in their product portfolio - I hope

Re: [flexcoders] Adobe aquires Macromedia

2005-04-18 Thread Ketan Bengali
Adobe and Macromedia have been competitors for quite some time and now both deciding to join hands it seems they are all set to rule the Internet. With the bset of softwares for the net made by these 2 companies it will be interesting to watch the way the products will shape up in the near

[flexcoders] Re: NuSoap / Flex error

2005-04-18 Thread core_elements
The wdsl file can be found here: http://www.leihitu.nl/soap/soap.php?wsdl --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: I'm not at all familiar with NuSoap. Can you post the whole WSDL? Matt _ From: flexcoders@yahoogroups.com

[flexcoders] Generating dynamic datagrid based on dynamic query result

2005-04-18 Thread Dzafer
Hi all, How generating this one dynamically based on a query with a dynamic number of columns: var zingerManufacturingData = [ {Month: January '03, Widgets:885202, Blinkies: 184454, monthIdx:1 }, {Month: February '03, Widgets:683392, Blinkies: 945385, monthIdx:2 },

Re: [flexcoders] Generating dynamic datagrid based on dynamic query result

2005-04-18 Thread Manish Jethani
On 4/18/05, Dzafer [EMAIL PROTECTED] wrote: How generating this one dynamically based on a query with a dynamic number of columns: [snip] If you simply assign the web service result to the grid's dataProvider property, that'll do it. -- [EMAIL PROTECTED] http://manish.revise.org/

Re: [flexcoders] ComboBox redraw issue

2005-04-18 Thread Manish Jethani
On 4/18/05, JesterXL [EMAIL PROTECTED] wrote: http://dev.jessewarden.com/flash/panels/ViewMaker_source.zip - If you tab to the ComboBox (on the Controls Tab), and choose button by hitting B, the 2nd FormItem doesn't draw it's label, even though the text for it traces out. - If you

RE: [flexcoders] Generating dynamic datagrid based on dynamic query result

2005-04-18 Thread Dzafer
Hi Manish, Ok, but I will select with an action script witch columns I will display my datagrid. I use the Webservice result as a provider for different flex object. For the datagrid I need to retrieve all the column names from the provider to do something like this: If (

[flexcoders] I/O error in SWC component ???

2005-04-18 Thread eerkmans
hi, Does anybody know what this error means? I've got an SWC component that suddenly stopped working 1 Exception found. Exception java.lang.IllegalStateException SWC I/O error when reading \flex\user_components\AdresKaart.swc Yahoo! Groups Links * To visit your group on

[flexcoders] How to populate tree control from web service result (server side java objects)

2005-04-18 Thread Shlomi Cohen
Title: Mercury Email Signature Hi i have a complex object that holds a tree in server side Java objects , i then expose it to the client via a WebService. my question is what is the best way to populate thetree control with thisserver side object ? do i have to return an xml string from

[flexcoders] Cairngorm

2005-04-18 Thread viraf_bankwalla
Hi, Wanted to follow up to see when we can expect the next release of Cairngorm. Thanks. Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use

[flexcoders] Wha kinds of object are in this Array?

2005-04-18 Thread Dzafer
Hi All, What kinds of object are in this Array? var zingerManufacturingData = [ {Month: January '03, Widgets:885202, Blinkies: 184454, monthIdx:1 }, {Month: February '03, Widgets:683392, Blinkies: 945385, monthIdx:2 }, {Month: December '03, Widgets:800254, Blinkies:

RE: [flexcoders] Wha kinds of object are in this Array?

2005-04-18 Thread Mercer, Dustin
This array contains plain objects. You can access any of the properties like this zingerManufacturingData[0].Month, zingerManufacturingData[1].Widget, etc. To change the variable names, do this, var zingerManufacturingData = [ {differentVar: January '03, anotherVar:885202,

Re: [flexcoders] Simple arithmetic - resolved

2005-04-18 Thread Tom Fitzpatrick
Solved - turns out I was applying a currency format to the variable before handing it to the function so it really was NaN. Question - shouldn't this have thrown an error, since I was casting the non-number variable as a number in the parameter statement, as varX:Number? - Tom At 04:43 PM

RE: [flexcoders] Cairngorm

2005-04-18 Thread Steven Webster
Viraf, Wanted to follow up to see when we can expect the next release of Cairngorm. It would be futile to promise a date; this has to fit within consulting committments. We're very close to a release ... all the features for the next release are in place, we're working on improving the

RE: [flexcoders] Re: RemoteObject frustration

2005-04-18 Thread Dan Blackman
You can either name it in your whitelist like Matt mentioned and reference it with the attribute named. Or your can specify the child nodes and attributes in your mxml doc and use an endpoint attribute to specify the remotegateway. Thats my understanding at least. HTH

RE: [flexcoders] I/O error in SWC component ???

2005-04-18 Thread Brian Deitte
Can you try to regenerate the SWC component or have the person who created it do this? It seems there is some basic problem with the component (as this error only occurs when there is an IOException). Another thing you can do is to set -Dtrace.error in the JVM configuration for your appserver

RE: [flexcoders] Wha kinds of object are in this Array?

2005-04-18 Thread Dzafer
Hi there, If you put differentVar and displaying into a datagrid he will display differentVar What I want to do is this one : Var myString:String; myString = FistrName; and put myString has the first label . Tnx! From: flexcoders@yahoogroups.com

[flexcoders] Adobe Flex? What does this mean to us... ?

2005-04-18 Thread Clint Modien
http://us.rd.yahoo.com/finance/external/cbsm/SIG=11g622ocl/*http://www.marketwatch.com/news/yhoo/story.asp?source=blq/yhoositeid=yhoodist=yhooguid=%7B3B04AC26%2DE1ED%2D4FA3%2D8E72%2D9C493CADC469%7D Clint Modien 5by5Software Ventures Ltd. http://bridgewerx.com Suite 355, 138

RE: [flexcoders] Wha kinds of object are in this Array?

2005-04-18 Thread Mercer, Dustin
I am not sure if this is what you are asking but here goes: Var myString:String; myString = FistrName; var zingerManufacturingData = [ {differentVar : myString, anotherVar:885202, Blinkies: 184454, monthIdx:1}, {differentVar : myString, anotherVar:683392, Blinkies: 945385,

[flexcoders] Stupid Question

2005-04-18 Thread [EMAIL PROTECTED]
Sorry, can you help me? how i can do that my tx_bar have the focus when application will be init? Devis ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; themeColor=haloSilver backgroundColor=#FF xmlns=* initialize=initShop();

[flexcoders] Apply Resize Effect to Items in TileList

2005-04-18 Thread superabe
Hello flexcoders, I am trying to appy a resize effect as the mouseover effect to items in a TileList. I am doing this by setting a mouseOverEffect in the cell renderer that is used by the TileList. The effect works fine when resizing to a smaller size that the start size, but what I

[flexcoders] What does this error mess mean

2005-04-18 Thread nostra72
I have started learning flex recently so I am kind of new to this but time to time I get this error message and frankly I hav e no idea what this error message means. Under normal circumstances I would post the code but I think it says the memory is to large so I have no intention of posting

RE: [flexcoders] Stupid Question

2005-04-18 Thread Abdul Qabiz
Hi, Call the initShop() function in creationComplete handler of Application like this... ##changedCode## ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; themeColor=haloSilver backgroundColor=#FF xmlns=* creationComplete=initShop();

RE: [flexcoders] Adobe Flex? What does this mean to us... ?

2005-04-18 Thread David Mendels
Hi Clint, We are not allowed to comment on the details of the merger beyond what is in the public information on our website and until the merger is closed, we are not able to talk directly with Adobe about specific strategies. So I can't say much :) That said, I can say this: I think

RE: [flexcoders] Adobe Flex? What does this mean to us... ?

2005-04-18 Thread Shell Bryson
Could mean several things. Adobe already have a huge investment in SVG, so the worst-case would be Flash and Flex being canned. More likely is that Adobe will work on a tool to replace Flash that compliments their existing suite of applications. Almost definitely means the end of

RE: [flexcoders] Adobe Flex? What does this mean to us... ?

2005-04-18 Thread Shell Bryson
Be realistic though whenever companies merge, product lines are re-examined. Products will be cancelled on both sides of the company. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Mendels Sent: 18 April 2005 16:46 To:

RE: [flexcoders] Adobe Flex? What does this mean to us... ?

2005-04-18 Thread Steven Webster
Clint, http://us.rd.yahoo.com/finance/external/cbsm/SIG=11g622ocl/*http://www.marketwatch.com/news/yhoo/story.asp?source=blq/yhoositeid=yhoodist=yhooguid=%7B3B04AC26%2DE1ED%2D4FA3%2D8E72%2D9C493CADC469%7D To quote someone from another mailing list: "Macromedia employees cannot

Re: [flexcoders] Stupid Question

2005-04-18 Thread [EMAIL PROTECTED]
Hi Abdul, it's very strange i have put creatationComplete as below, but don't work, the TextInput border became bold but if i'm writing the TextInput don't work. Any idea? Devis Abdul Qabiz ha scritto: Hi, Call the initShop() function in creationComplete handler of Application like this...

Re: [flexcoders] Adobe aquires Macromedia

2005-04-18 Thread Tarik Ahmed
Ya totally. Though there's a way to go; MM and Adobe have to get past a shareholders vote, and regulatory approvals, etc... I'm not sure how I feel about this move. I like both companies; they both make excellent products. But almost every company I've worked at got bought by another

[flexcoders] Re: Cairngorm

2005-04-18 Thread jacksodj
is it just me or dont most open source project have more visibility? ie you can see the deve tree, and contribute to it, and the release are just the latest stable version. I think if there were more transparency, then even though the cairngorm folks are busy, I think there are enought

[flexcoders] ABOUT EVALUATING STRINGS INTO COMPONENT IDs

2005-04-18 Thread Jesus Salvador Ramos Cardona
Hello, all. My team is developing a treasury app, and we are in the phase of building the interface. At some point, we have a ViewStack you are supposed to go through with the help of a List Control (we are not using LinkBar because links in it cannot contain image icons, as far as we

RE: [flexcoders] Flex Containers.

2005-04-18 Thread Stephen Gilson
resizeToContent is documentated as part of the Flex API. You can see it here: http://livedocs.macromedia.com/flex/15/asdocs_en/mx/containers/ViewStack .html Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Fitzpatrick Sent:

RE: [flexcoders] Stupid Question

2005-04-18 Thread Abdul Qabiz
Hi Devis, You need to click on Flex app once(anywhere) to set focus on entire Flex app. By default, browser doesn't set focus to Flex/Flash app on load. But in Internet Explorer, you can use some javascript to set focus to Flex/Flash application. But you need to do use some javascript. Calling

RE: [flexcoders] About Evaluating Strings Into Component IDs

2005-04-18 Thread Ronald Kinion
I think you're looking for some thing like this: this["somecomponentid"] ; Which is equivalent to this: this.somecomponentid; What's nice about the first form is you can use changing variables to get properties, here's an example: var total:Number = 0; for (var 1=0; i10; i++) {

[flexcoders] Re: Adobe aquires Macromedia

2005-04-18 Thread choipeter
This is indeed quite worrying as Adobe has desktop publishing and image design tools as primary markets. Developers' products and servers are not fitting in the strengths of Adobe. Unless Adobe wishes to continue investing in RIA market lest it is possible that Flex's future is at stake. ---

[flexcoders] Re: About Evaluating Strings Into Component IDs

2005-04-18 Thread Jesús Ramos
Thanks, Ron. Below is my code for what I am trying to do. mx:List id=userOptionsList dataProvider={mx.utils.ArrayUtil.toArray (userOptionsModel.userOption)} cellRenderer={NavigationCellRenderer} rowHeight=40 styleName=text height={mainViewStack.height}

Re: [flexcoders] Re: Adobe aquires Macromedia

2005-04-18 Thread Joe Berkovitz
One thing I see a lot of this morning is postings which roughly take this position: Uh oh, this acquisition may mean that Flex (doesn't have | has more of | has less of) a future. I guess I'd like to remind all of us developers (including myself) that Flex's future, while extremely promising,

Re: [flexcoders] Re: About Evaluating Strings Into Component IDs

2005-04-18 Thread Manish Jethani
On 4/18/05, Jesús Ramos [EMAIL PROTECTED] wrote: change=mainViewStack.selectedChild = event.target.selectedItem.data/ So it'll be, change=mainViewStack.selectedChild = this[event.target.selectedItem.data]/ -- [EMAIL PROTECTED] http://manish.revise.org/

Re: [flexcoders] What does this error mess mean

2005-04-18 Thread Manish Jethani
On 4/18/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: 2 Errors found. Error /littleprogram.as:1758 Branch between 3394 and 36167 around line 0 exceeds 32K span. If possible, please refactor this component. See this thread:

Re: [flexcoders] Apply Resize Effect to Items in TileList

2005-04-18 Thread Manish Jethani
On 4/18/05, superabe [EMAIL PROTECTED] wrote: The effect works fine when resizing to a smaller size that the start size, but what I really want is to make the item grow out in size, which does not seem to work I'll try to help, but can you post some code that show the problem? (I should be

Re: [flexcoders] Wha kinds of object are in this Array?

2005-04-18 Thread Manish Jethani
On 4/18/05, Mercer, Dustin [EMAIL PROTECTED] wrote: I am not sure if this is what you are asking but here goes: Var myString:String; myString = FistrName; var zingerManufacturingData = [ {differentVar : myString,anotherVar:885202, Blinkies: 184454,

[flexcoders] Re: Adobe aquires Macromedia

2005-04-18 Thread joao_m_fernandes
I'm wondering what will happen to all MMUGs around the world... Will they be: mx:renamed/? mx:maintained/ ? mx:suppressed/ ? --- In flexcoders@yahoogroups.com, Nate Nielsen [EMAIL PROTECTED] wrote: SAN JOSE, Calif.--(BUSINESS WIRE)--April 18, 2005--Adobe Systems Incorporated

Re: [flexcoders] Simple arithmetic - resolved

2005-04-18 Thread Manish Jethani
On 4/18/05, Tom Fitzpatrick [EMAIL PROTECTED] wrote: Solved - turns out I was applying a currency format to the variable before handing it to the function so it really was NaN. Question - shouldn't this have thrown an error, since I was casting the non-number variable as a number in the

[flexcoders] carriage return via web service

2005-04-18 Thread John Daharsh
Well I'm stumped. I am calling a .NET web service that inserts text from a TextArea into the database. When I try the Webservice from a .NET HTML form, if I have carriage returns in the text it saves them to the database just fine. When I call the webservice from FLEX and I have carriage

Re: [flexcoders] How to populate tree control from web service result (server side java objects)

2005-04-18 Thread Manish Jethani
On 4/18/05, Shlomi Cohen [EMAIL PROTECTED] wrote: do i have to return an xml string from the webservice or there is a better way to map the objects from the result into the tree control. The top-level object in your tree can be assigned directly to the Tree's dataProvider property. If every

[flexcoders] Triggering from a button fails first time

2005-04-18 Thread digital_eyezed
I have a button on the first pane of an accordion container, which when clicked runs an actionscript function (getOptions(event);), this script gathers input from this first pane, sends off a remoteObject call, enables a datagrid in a second pane and shows the result of the remoteObject call

Re: [flexcoders] Simple arithmetic - resolved

2005-04-18 Thread JesterXL
A number is not a number? wtf, lol! trace(!isNaN(NaN)); // false ...crud, that means it is... but how can a number that's not a number be a number? I'm confused now... - Original Message - From: Manish Jethani [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, April 18,

Re: [flexcoders] Generating dynamic datagrid based on dynamic query result

2005-04-18 Thread Manish Jethani
On 4/18/05, Dzafer [EMAIL PROTECTED] wrote: For the datagrid I need to retrieve all the column names from the provider to do something like this: If ( column[i] == firstname) {} Ah, sorry about that. I see what you're trying to do now, and here's how I'd do it: if

Re: [flexcoders] Simple arithmetic - resolved

2005-04-18 Thread Manish Jethani
On 4/19/05, JesterXL [EMAIL PROTECTED] wrote: A number is not a number? wtf, lol! trace(!isNaN(NaN)); // false ...crud, that means it is... but how can a number that's not a number be a number? Okay, I'll avoid getting into any language discussion by saying that I really meant that NaN

Re: [flexcoders] carriage return via web service

2005-04-18 Thread Manish Jethani
On 4/19/05, John Daharsh [EMAIL PROTECTED] wrote: The carriage return seems to be getting lost before the SOAP packet reaches the web service. I'm wondering if there is something in the underlying JRun application that is removing the character. It could be a bug if you're running on

RE: [flexcoders] Re: About Evaluating Strings Into Component IDs

2005-04-18 Thread Ronald Kinion
It's not clear to me from the docsif that would work. I'm thinking that this may workbetter : change="mainViewStack.selectedIndex = mainViewStack.getChildIndex(this[event.target.selectedItem.data])" -- Ronald Kinion 253-205-3000 x5162 [EMAIL PROTECTED] From:

Re: [flexcoders] Re: About Evaluating Strings Into Component IDs

2005-04-18 Thread Manish Jethani
On 4/19/05, Ronald Kinion [EMAIL PROTECTED] wrote: It's not clear to me from the docs if that would work. I'm thinking that this may work better : change=mainViewStack.selectedIndex = mainViewStack.getChildIndex(this[event.target.selectedItem.data]) Yes, that's what 'set

[flexcoders] working with dynamic components

2005-04-18 Thread Tom Fitzpatrick
I have a vbox container in which I am dynamically creating multiple instances of a custom component as children. The component is a vbox with an instance of the Coenraets Pod.as (an extension of Panel) inside (and several other Pods nested inside that). I want the user to be able to select

[flexcoders] Puzzled on colSpan databinding

2005-04-18 Thread speedmetalrulez
I have bound data to colSpans in the past on very simple applications using grids in Flex. But on this more extensive application my data isn't binding to the colSpans in the grid. My grid component is called from the main application. When I call the componentI pass the variable

[flexcoders] Flex Development Position at Allurent

2005-04-18 Thread Joe Berkovitz
Allurent has an opening for a UI developer! Our job posting follows. Please send your resume directly to Lucy Chung ([EMAIL PROTECTED]). = Stealth-mode startup seeks UI developer to join us as a core team member in creating

Re: [flexcoders] working with dynamic components

2005-04-18 Thread JesterXL
Have any mouseDown even in your component funnel through a dispatcher; he sets the selected state, whatever that may be, on your component, and then bubbles the event to whoever needs it... or just set the state in every mouseDown event. As far as visuals... dude, this is Flex, whatever you

[flexcoders] Apply affects before and after databinding occurs in TileList

2005-04-18 Thread superabe
Hello flexcoders, I am trying to apply some effects to the items in a TileList before and after the dataprovider updates via databinding i.e the idea being, to have some fade out effect before the new data kicks in and refreshes the TileList and have a fade in affect after the elements in

Re: [flexcoders] working with dynamic components

2005-04-18 Thread Tom Fitzpatrick
Thanks - do you have a simple coded example of how this would work, or pointers to an example? - Tom At 05:04 PM 4/18/2005, you wrote: Have any mouseDown even in your component funnel through a dispatcher; he sets the selected state, whatever that may be, on your component, and then bubbles

RE: [flexcoders] Generating dynamic datagrid based on dynamic que ry result

2005-04-18 Thread Shlomi Cohen
Thanks very much ! I'll surly try this first thing on the morning (its 1AM here :-) Shlomi -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Monday, April 18, 2005 10:58 PM To: flexcoders@yahoogroups.com Subject: Re:

OT: Macromedia User groups (was RE: [flexcoders] Re: Adobe aquires Macromedia)

2005-04-18 Thread David Mendels
Hi, This is not the kind of thing the two companies are allowed to coordinate activities around untill the actual merger closes. That said, user groups, blogs, mailing lists (and the like) are core to how we communicate with customers and we would never want to break that. Will they change

[flexcoders] Re: grid does not occupy all of TabNavigator container ?

2005-04-18 Thread sanjayd
Andrew: yes, it worked. I will pay you the $20. I will contact you via email. Thanks - Sanjay --- In flexcoders@yahoogroups.com, Andrew Spaulding [EMAIL PROTECTED] wrote: Maybe this will help http://www.flexdaddy.info/2005/02/21/sizing-apps-within-the-loader-control/ Andrew

[flexcoders] Re: grid does not occupy all of TabNavigator container ?

2005-04-18 Thread Andrew Spaulding
Hey mate, There's no need to pay me the $20! We're in a community where we help each other out. I'm glad it worked. Good luck, Andrew. -- www.flexdaddy.com andrew.at.base-elements.net --- In flexcoders@yahoogroups.com, sanjayd [EMAIL PROTECTED] wrote: Andrew: yes, it worked. I will

Re: OT: Macromedia User groups (was RE: [flexcoders] Re: Adobe aquires Macromedia)

2005-04-18 Thread Scott Barnes
You better not, i've grown use to my pizza/beer networking sessions...oh and learning about MM news etc.. hehe. Its certaingly getting rampid in terms of what ifs and 'future predictions. Theres now factions preeching that they will now adopt blue dragon to be safe, along with others throwing

Re: OT: Macromedia User groups (was RE: [flexcoders] Re: Adobe aquires Macromedia)

2005-04-18 Thread JesterXL
Whatever dude, it's more bling. If a product makes dough, it's cool, if not, it's toast. Flex make dough? Anyone remember April 1st? The event that ACTUALLY happened that day? - Original Message - From: Scott Barnes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday,

RE: [flexcoders] Re: how to display the HashMap data in flex mx: Data Grid?

2005-04-18 Thread Matt Chotin
Youll need to write a labelFunction Maybe something like this: function mapCdms(item) : String { Return item.accessMap.cdms; } mx:DataGridColumn labelFunction=mapCdms / Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Sent: Sunday,

RE: [flexcoders] Apply Resize Effect to Items in TileList (sample code)

2005-04-18 Thread Matt Chotin
The TileList is not going to let you do this easily because it doesnt support variable sizing like the DataGrid. You may need to have the renderer create a copy of the image (though actually it might need to be the TileList that does the creating for depth purposes) and put it on top and

Re: OT: Macromedia User groups (was RE: [flexcoders] Re: Adobe aquires Macromedia)

2005-04-18 Thread Scott Barnes
Agreed. I won't be here in 2 years (project phase of thine mine completed) so carefactor afterwards heheheh. On 4/19/05, JesterXL [EMAIL PROTECTED] wrote: Whatever dude, it's more bling. If a product makes dough, it's cool, if not, it's toast. Flex make dough? Anyone remember April

RE: [flexcoders] carriage return via web service

2005-04-18 Thread Matt Chotin
I think that the carriage return that we send from a TextArea is just \n and Windows expects it to be \r\n. What if you try iterating through the string and replacing any \n with \r\n and then executing the web service. Var newStr : String = ; Var sourceStr : String =

RE: [flexcoders] Triggering from a button fails first time

2005-04-18 Thread Matt Chotin
You need to assign the dataProviders in the result handler of your RemoteObject. Those calls execute asynchronously so the data isnt there right after you call the RemoteObject. http://livedocs.macromedia.com/flex/15/flex_docs_en/0752.htm is one place that can get you started.

RE: [flexcoders] Puzzled on colSpan databinding

2005-04-18 Thread Matt Chotin
You dont say what c1 and c2 are but Im wondering if they are inside a Repeater as well? Perhaps it should be c1[repradio.currentIndex].colSpan? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Sent: Monday, April 18, 2005 1:55 PM To:

RE: [flexcoders] Re: NuSoap / Flex error

2005-04-18 Thread Matt Chotin
Hmm, Im not sure what your problem might be. I just ran this test and it worked fine: mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml mx:WebService id=ws wsdl=http://www.leihitu.nl/soap/soap.php?wsdl fault=out.text = event.fault.faultstring result=out.text =

RE: [flexcoders] menu bar control- submenu issue

2005-04-18 Thread Matt Chotin
OK, a Menu really cant handle XML formatted the way you have it. Menus need their XML to have attributes, not child tags. However, if you create an object structure instead of relying on raw XML things will work with this structure. ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: does any flex event response closing browser?

2005-04-18 Thread Andrew Spaulding
I'd say you would have to catch this event using some javascript, there should be plenty of javascript examples on how to do this. Not sure how you would go about passing it back to the flash player tho. Andrew -- www.flexdaddy.com --- In flexcoders@yahoogroups.com, zhfbanks [EMAIL

Re: [flexcoders] carriage return via web service

2005-04-18 Thread John Daharsh
Yeah still no dice... Thanks for the suggestion. One minor note is that replacing \n does nothing, but replacing \r at least replaces the line feed with something else. However, replacing \r with either \n or \r\n yields the same result. It seems apparent that the problem lies between FLEX and

Re: [flexcoders] carriage return via web service

2005-04-18 Thread John Daharsh
Caught one error in my previous post: For time's sake I am going with a hack, replacing the \r... (I have to replace \r, not \n) On 4/18/05, John Daharsh [EMAIL PROTECTED] wrote: Yeah still no dice... Thanks for the suggestion. One minor note is that replacing \n does nothing, but