Re: [flexcoders] Flex 2 Books

2006-06-27 Thread Chris Velevitch
And then there's EAS3 (http://www.moock.org/blog/archives/000177.html) Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au Yahoo! Groups Sponsor ~-- Yahoo! Groups gets a make over. See the new email

Re: [flexcoders] Flex2B3 Sample Technique Question

2006-06-27 Thread Jeremy Lu
hey, so you are the one visiting today ... :-) Susan and I (and two other engineers) work together on this project, she's the graphic designer doing all front/back end user interface design. The red errorMessage shown on startup is indeed just a toolTip property on new doc button, but I

RE: [flexcoders] Garbage collection and removeChild [Flex 2 beta 3]?

2006-06-27 Thread Jason Hawryluk
b has an instance of c, a way to get to c's events could be done easy enough. I suppose the question is do I need to do that. If b is the only object holding a reference to c, and b is removed, would c be removed as well without further intervention on my part? c in this case not being

[flexcoders] Re: Flex2B3 Sample Technique Question

2006-06-27 Thread Tim Hoff
All of that makes sense. Thank you for the explanation, -TH --- In flexcoders@yahoogroups.com, Jeremy Lu [EMAIL PROTECTED] wrote: hey, so you are the one visiting today ... :-) Susan and I (and two other engineers) work together on this project, she's the graphic designer doing all

RE: [flexcoders] Re: About dates sent to a webservice. Is this correct?

2006-06-27 Thread Daniel Tuppeny
Yep, it seems if you do DateTime.Now, it includes timezone info. If you do new Date(x, y, z), it doesn't (but you can probably add it). This is how Flex should work - if no timezone is specified, it should ignore timezones!! :-( -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] Difference between two dates

2006-06-27 Thread Daniel Tuppeny
I tried that, and it just didn't work. Returned completely wrong numbers! I tried stepping through it, but didn't really understand all the magic numbers (like subtracing 1 from the month if one date is lower than the other). I got it working with the code I posted, it's just annoying

[flexcoders] Integrated JRun Axis Deployment..

2006-06-27 Thread Tolulope Olonade
Has anybody deployed the Apache axis 2 into the Flex 2 Beta 3 Integrated Jrun server? Deploys well but when I call up the happyaxis.jsp test page it throws exception. Thanks for any help. Regards __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Popup deletion and memory issue in 1.5

2006-06-27 Thread digital_eyezed
Ok, I think I have narrowed the issue down to the components within the TitleWindow. I have a TabNavigator within the popup and when there is more than one tab this issue is seen. If I remove all but one tabs from the tabnavigator the popup deletes without issue. However, I can't work out why!

Re: [flexcoders] Setting row focus when user clicks in a column using ItemRenderers

2006-06-27 Thread Tom Chiverton
On Tuesday 27 June 2006 00:36, csherwood999 wrote: I have noticed that I can click into any of my item Renderers without actually selecting the entire row. How can I force the row to be highlighted when the user clicks into an itemRenderer? I guess you'll need to do something in the click

RE: [flexcoders] Re: Repost of bug issue over weekend

2006-06-27 Thread Daniel Tuppeny
This is crazy! I'd say this is *definitely* a bug. so it has no way to differentiate between them Yes it does - with the index. Change the list to this: mx:List id=myList dataProvider={selectedChannels} width=100 click=mx.controls.Alert.show(String(myList.selectedIndex)); / And then click on

[flexcoders] Flex2: setFocus() + javascript injection

2006-06-27 Thread Tim Hoff
Undoubtably, The setFocus()question willbe asked here again. ThesetBrowserFocusSample, shows a new (to me)approachfor setting focus (IE only) using Abdul Qabiz's _javascript_ MXML component.Best Wishes,Tim Hoff __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Popup deletion and memory issue in 1.5

2006-06-27 Thread Ralf Bokelberg
Hi Iain What if you remove items from the tabnavigator just before closing? Cheers, Ralf. On 6/27/06, digital_eyezed [EMAIL PROTECTED] wrote: Ok, I think I have narrowed the issue down to the components within the TitleWindow. I have a TabNavigator within the popup and when there is more

[flexcoders] dynamic method attachment to SharedObject

2006-06-27 Thread Mick Robin
Hi,I am working on a one to one chat application. I am using flex builder 2.0Beta 3 Flash Media Server 2.0. While working with sharedObject, I have comeacross a problem. I just wanted to attach a dynamic method to SharedObject the wayI used to do in AS2.0, AS1.0. The main issue is

[flexcoders] Re: Popup deletion and memory issue in 1.5

2006-06-27 Thread digital_eyezed
Hi Ralf, Thanks for the help, I tried to call destroyAllChildren() on the TabNavigator, but this did not help. Is that what you mean? Cheers, Iain --- In flexcoders@yahoogroups.com, Ralf Bokelberg [EMAIL PROTECTED] wrote: Hi Iain What if you remove items from the tabnavigator just before

[flexcoders] Flex2B3 - flex and url variables

2006-06-27 Thread bhaq1972
i was looking in the archives. the issue was raised a few months ago. however i wasn't able to make Matt Horn or Abdul's code work. my problem - i want to pass request data using query string to the html wrapper. eg http://myserver/myflexapp.html?foo=bar it would be nice if it was easy like

RE: [flexcoders] Integrated JRun Axis Deployment..

2006-06-27 Thread Carson Hager
What exception are you getting? Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Release Pricing

2006-06-27 Thread Antoine Malpel
ok but where is exactly the limitation ? can I run freeely any coporate business services etc ... as soon as I use only one cpu per Application (what about Bi-Core ?) ? Nick Collins a crit: No, it means you can run it free on a one CPU server with one application using it. For

Re: [flexcoders] Re: Repost of bug issue over weekend

2006-06-27 Thread hank williams
Thanks Daniel.I was thinking something similar after I wrote my last email, but didnt have the energy to write it up. Basically, if it can draw and scroll separate items (even if they are the same) then it can identify them for the purpose of highlighting and selection. If it couldnt tell the

Re: [flexcoders] Re: Popup deletion and memory issue in 1.5

2006-06-27 Thread Ralf Bokelberg
Yep, but it was just a shot in the dark. I'm not sure what really happens in your app. Maybe you can create a minmal version of your source to reproduce your problem. Cheers, Ralf. On 6/27/06, digital_eyezed [EMAIL PROTECTED] wrote: Hi Ralf, Thanks for the help, I tried to call

[flexcoders] Embed(source,symbol) results in internal build error

2006-06-27 Thread martin schioeth
Hi, Im trying to embed an exported symbol from a swf I get An internal build error has occurred. Please check the Error Log. I have absolutely no idea how to fix this, and im going slighty mad. I should think my syntax is exactly the same as the documentation specifies. //

Re: [flexcoders] Unsubscribe

2006-06-27 Thread Krishna
Ah, Thank you !- Original Message From: Steven Webster [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Monday, June 26, 2006 7:24:09 PMSubject: RE: [flexcoders] Unsubscribe Click on the unsubscibe link that appears at the foot of every email ;)

[flexcoders] Keeping DataGrid from scrolling to top on update to dataProvider

2006-06-27 Thread Jordan Snyder
Hello All, I am working on an app in which I poll the server quite frequently to get new information. The information comes to me in an XML format that I simply assign as the dataProvider for a DataGrid component. I have to keep in consideration the fact that the user may have selected a

Re: [flexcoders] Need Urgent Help

2006-06-27 Thread Andriy Panas
Hello Meenakshi, You can port MeasureMap's Data slider from AS2 to AS3, for example: http://www.measuremap.com/developer/slider/ -- Best regards, Andriymailto:[EMAIL PROTECTED] Yahoo! Groups Sponsor ~-- Great things

[flexcoders] Re: Remote object invocation failure

2006-06-27 Thread Mike_Robinson_98
Mistake found. I inadvertently removed the servlet mapping for the MessageBrokerServlet in the web.xml file. Sorry, but I'm just getting used to all the configuration files. Thanks, Mike --- In flexcoders@yahoogroups.com, Mike_Robinson_98 [EMAIL PROTECTED] wrote: I'm trying to call a method

Re: [flexcoders] dynamic method attachment to SharedObject

2006-06-27 Thread Dominick Accattato
I think it has a client property which can point to a customclass with those methods. On 6/27/06, Mick Robin [EMAIL PROTECTED] wrote: Hi, I am working on a one to one chat application. I am using flex builder 2.0Beta 3 Flash Media Server 2.0. While working with sharedObject, I have

[flexcoders] Re: Popup deletion and memory issue in 1.5

2006-06-27 Thread digital_eyezed
I tried to make a simple version but can't recreate the issue. I put all the contents of the tabs into the first tab and removed the others tabs but the issue was not fixed so it has nothing to do with the other tabs. The TitleWindow has 7(seven) remote object calls, all of which return without

[flexcoders] FB2 :: Switchig Workspaces

2006-06-27 Thread Michael Schmalle
Hello, Could anyone shed some light on this for me? When you start Flex builder and have you default workspace located in MyDocuments, what is the difference between just creating a new project and setting the folder location in the Project Contents field and actually using File - Switch

[flexcoders] Re: Developing RIA book

2006-06-27 Thread klumikaze
http://www.amazon.co.uk/exec/obidos/ASIN/059652689X/qid=1151415448/sr=1-2/ref=sr_1_1_2/203-7642234-7931963 I'm actually talking about that one. Thanks, Brian --- In flexcoders@yahoogroups.com, Andriy Panas [EMAIL PROTECTED] wrote: Hello klumikaze, There's a new Flex 2 book coming out

[flexcoders] Re: FB2 :: Switchig Workspaces

2006-06-27 Thread Michael Schmalle
Well, Maybe I will answer my own question now that I have got it out of my head. Switching workspaces allows you to create specific folder roots for independent projects. This way there is no 'noise' from other unrelated 'project areas'. For example, If I have a set of components that go

Re: [flexcoders] FB2 :: Switchig Workspaces

2006-06-27 Thread Douglas Knudsen
a workspace is more of a saved setup, a collection of project metadata, has nothing to do with where your project files are actually stored. You may for instance have a workspace dedicated to Client 1 and one dedicated to Client 2, etc. Now for each workspace, your project files can be stored

Re: [flexcoders] Re: Popup deletion and memory issue in 1.5

2006-06-27 Thread Tom Chiverton
On Tuesday 27 June 2006 14:24, digital_eyezed wrote: I cannot understand why when you delete a popup suddenly the Busy Cursor is shown and the the whole app comes to a grinding halt! Maybe you are firing some event during the hide/close event in a handler somewhere, and this is causing a blow

[flexcoders] Re: Popup deletion and memory issue in 1.5

2006-06-27 Thread digital_eyezed
I tried to make a simple version but can't recreate the issue. I put all the contents of the tabs into the first tab and removed the others tabs but the issue was not fixed so it has nothing to do with the other tabs. The TitleWindow has 7(seven) remote object calls, all of which return without

[flexcoders] Re: Setting row focus when user clicks in a column using ItemRenderers

2006-06-27 Thread csherwood999
Well, that's what I'm currently doing, the problem is I haven't found an attribute/property that tells me what row the current cell is in...if you have any ideas, that would be welcome :) Chad --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 27 June 2006

Re: [flexcoders] Flex2B3 - flex and url variables

2006-06-27 Thread Luís Gustavo Sanabio
Hi... I'm using php file instead html wrapper. So, I get the querystrings.. look: AC_FL_RunContent(src, legume,width, 100%,height, 100%,align, middle,id, legume, quality, high,bgcolor, #869ca7,name, legume,flashvars,'myID=?=$_GET['myID']?date=?=$_GET['date']?',

Re: [flexcoders] FB2 :: Switchig Workspaces

2006-06-27 Thread Michael Schmalle
See this is the thing; I'm not using the plugin, never used Eclipse for Java and haven't used Ant. Just swallowing to many things at once. I have Eclipse installed and used the plugin for beta2 but, since I mainly use FB2 for component development I didn't see a need for the full meal deal.

[flexcoders] XML with namespaces HTTPService

2006-06-27 Thread iloirdnam
Hello, I'm trying to navigate the following XML source ins AS3: ?xml version=1.0 encoding=UTF-8? config book xmlns=http://anamespace.com; titleHello/title /book with the following code : { ... hs = new HTTPService(); hs.concurrency = last; hs.resultFormat = e4x;

RE: [flexcoders] Can Flex record audio locally?

2006-06-27 Thread Andrew Trice
You can definitely show the sound wave in flex without any 3rd party tools. Take a look at this: http://blog.benstucki.net/?id=18 Getting access to the raw sound data is a different story. _ Andrew Trice Cynergy Systems, Inc.

[flexcoders] Re: FB2 :: Switchig Workspaces

2006-06-27 Thread ben.clinkinbeard
Michael, you can also use the Go into link on the context menu when you right click on a project name. That will effectively hide everything outside that project from view. While we're on the subject though, can anyone point me to a decent Eclipse basics reference? Book, web site, whatever, I

[flexcoders] Flash Player 9 and old scripts

2006-06-27 Thread Derek Vadneau
Is ExternalInterface the only way to communicate with the SWF from/to JavaScript? Does SetVariable/GetVariable and other commands work with Flash Player 9? Will old scripts bail with updated content? -- Derek Vadneau Yahoo! Groups Sponsor ~--

[flexcoders] ClassUtil.Find Class and _global - Flex 2

2006-06-27 Thread karthikeyanik
Hi, 1) In Flex 1.5, ClassUtil.findClass(className) returns the constructor Function of the given className. What is the equivalent function in Flex2.0. 2) _global has been removed in Flex2.0. What is the alternative? Thanks in Advance, Karthi Yahoo!

RE: [flexcoders] Integrated JRun Axis Deployment..

2006-06-27 Thread Cathy Reilly
Before adding Flex to the mix, recommend that you get Apache Axis 2 running in a web app on the JRun server. Once that's running successfully, add Flex 2 to the mix. Some settings in /WEB-INF/jrun-web.xml, which you may find useful -

[flexcoders] Re: Flex2 B3 - Scroll Bar problems

2006-06-27 Thread thunderstumpgesatwork
I still think something is going on here... the static size on the text area is irrelevant (and in my real property sheets, doesn't even exist). The actual property sheet is a canvas full of quite a few controls. You say that minHeight and minWidth are used with percentage sizes. That's exactly

[flexcoders] Re: Popup deletion and memory issue in 1.5

2006-06-27 Thread digital_eyezed
Hi, the only events are fired on creation (go get the remote objects etc). I do have a change on the tab navigator which refreshes the data for the corresponding tab though, I will look into that. It seems to be linked to the firing of multiple different remote objects. i.e. if I go to

Re: [flexcoders] Skinning Flex2 Tree Controls to an Expandable Menu

2006-06-27 Thread Michael van Leest
Cool... Thanks. That might come in handy sometime... Michael Yahoo! Groups Sponsor ~-- Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/nhFolB/TM

[flexcoders] Re: XML with namespaces HTTPService

2006-06-27 Thread ben.clinkinbeard
This link may be helpful http://groups.yahoo.com/group/flexcoders/message/39090?threaded=1var=1p=24 I have gone through fits using default namespaces in AS3. If you can avoid them I would. If not, hopefully that thread will help; I found QName objects to be the most convenient in most instances.

Re: [flexcoders] Re: FB2 :: Switchig Workspaces

2006-06-27 Thread Michael Schmalle
Go into I didn't even realize that. Until I prove myself wrong, a new workspace for a component set seems to work pretty good for me. I need someone form Adobe to tell me this is wrong and the reasons. Specifically component sets seem to fit good in this ... repeat, I have no idea. I'm sure

RE: [flexcoders] Using JMS Adapter: 'javax.naming.NamingException unknown protocol : joram.

2006-06-27 Thread Cathy Reilly
I testes my JMS destination by coding MessageDrivenBean that subscribe to the topic and it works fine. Could you include the 'message-driven' definition in ejb-jar.xml as well as any application specific configuration file that may map resource-ref or resource-env-refs to actual jndi names?

Re: [flexcoders] Re: Setting row focus when user clicks in a column using ItemRenderers

2006-06-27 Thread Tom Chiverton
On Tuesday 27 June 2006 13:14, csherwood999 wrote: Well, that's what I'm currently doing, the problem is I haven't found an attribute/property that tells me what row the current cell It's something like event.currentTarget.selectedRow Check the docs. -- Tom Chiverton

[flexcoders] Re: div like behaviour?

2006-06-27 Thread klumikaze
Finally got it to work, thought I would offer the code to anybody who wants this in Flex 2. I changed it a little bit, I made a custom component that extends Box (called FBox... F for Flow). Anyway, not sure how flexible it is, but it should be a good start for somebody looking to do something

[flexcoders] Set up FlexUnit with Flex Builder Eclipse plugin

2006-06-27 Thread ssundke
Hi, I just downloaded FlexUnit (from http://www.iterationtwo.com/open_source_flexunit.html) to see if i could get started with it. Im using Flex 2.0 Flex Builder plugin for Eclipse. How do I get it to work in this Eclipse? I tried to add the FlexUnit.swc to the Project - Properties - Flex

[flexcoders] Event mask issue for charts

2006-06-27 Thread dave_bonnell_bmc
We have an application in which we create multiple pods within a VDividedBox container. Each pod is essentially a HBox with two charts (mx:BarChart and mx:PieChart) for arguments sake. When a pod is deleted from the container the vertical area of charts in the remaining child pods that

[flexcoders] Re: Setting row focus when user clicks in a column using ItemRenderers

2006-06-27 Thread Doug Lowder
Your item renderer should have a listData property, which is an instance of the BaseListData class. There are rowIndex and owner properties of BaseListData that you can use to manipulate the selectedIndex or selectedIndices property of your dataGrid to select a row. --- In

[flexcoders] Properly binding an object to a custom component.

2006-06-27 Thread Ian Skinner
I am apparently not doing this. What am I missing to properly bind an object from a repeater looping over an array of object to the custom component called in the repeater? mx:Repeater id=dayCells dataProvider={days} startingIndex={weekRows.currentItem} count=7

RE: [flexcoders] Flash Player 9 and old scripts

2006-06-27 Thread Matt Horn
I think fscommand() still works (googling for it will yield plenty of info). setVariable() and getVariable() only worked with one of the major browsers, IIRC. There's also the Flex-AJAX bridge (http://labs.adobe.com/wiki/index.php/Flex_Framework:FABridge). hth, matt horn flex docs

[flexcoders] Re: Customized Loading File

2006-06-27 Thread parksch2
Perfect, thanks Tracy! --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Search the livedocs for preloader. http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/js/ht ml /wwhelp.htm Tracy From:

RE: [flexcoders] Embed(source,symbol) results in internal build error

2006-06-27 Thread Roger Gonzalez
Flex is unhappy about the SWF you're trying to embed. Your Embed syntax looks fine, but it appears that your SWF contains a button (built in Flash?) that is either corrupted, or else our decoder is getting out of sync for some other reason. Since Flex doesn't really support Flash buttons

[flexcoders] Re: company branding in flex??

2006-06-27 Thread dandiodati
Has any one had to do company branding? Is there not a way to change the external style sheet dynamically? --- In flexcoders@yahoogroups.com, Dan Diodati [EMAIL PROTECTED] wrote: I need to dynamically change the loaded external css script in within a flex application. It appears that the

[flexcoders] Binding to Dynamic Object

2006-06-27 Thread Brendan Meutzner
Hi All,Wondering if anyone can clear up the issue surrounding binding to dynamic objects for me. I've got a data structure which I'm refactoring on the client side before using as a dataProvider instance. Because of the nature of the data, I dont' know exactly what properties the structure will

Re: [flexcoders] Binding to Dynamic Object

2006-06-27 Thread Tom Bray
You can use an ObjectProxy to wrap your objects and make them bindable.-TomOn 6/27/06, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi All,Wondering if anyone can clear up the issue surrounding binding to dynamic objects for me. I've got a data structure which I'm

[flexcoders] Custom Validator woes....

2006-06-27 Thread Suzy Lawson
I'm building an e-mail client where the To: field can have a comma delimited array of e-mail addresses: [EMAIL PROTECTED], [EMAIL PROTECTED] I have the validation occuring in the focusOut event, where I split the To: field so I get an Array of e-mail addresses. var emails : Array =

Re: [flexcoders] Re: company branding in flex??

2006-06-27 Thread Clint Modien
Ya there isn't a runtime styling framework. Would be very worth it to write one though...http://groups.yahoo.com/group/flexcoders/msearch?query=runtime+stylingsubmit=Searchcharset=ISO-8859-1 On 6/27/06, dandiodati [EMAIL PROTECTED] wrote: Has any one had to do

[flexcoders] PAIN - Debugging ColdFusion CFC Flex service call

2006-06-27 Thread Erich Cervantez
Yesterday I was debugging a situation where a Flex service call to a ColdFusion CFC wasnt returning any records. Using netConnection Debugger and ServiceCapture yielded the same information. The particular query in question (within the CFC) being returned was undefined. In actuality,

RE: [flexcoders] Keeping DataGrid from scrolling to top on update to dataProvider

2006-06-27 Thread Deepa Subramaniam
Hi Jordan You can keep track of the verticalScrollPosition property in your DataGrid and upon receving UPDATES, re-set the verticalScrollPosition to the previous value and the DataGrid will jump to the last scroll position and show the correct content. -deepa From:

[flexcoders] Flex 1.5. / DataGrid / change color of sortArrow

2006-06-27 Thread websectorde
How can I change the color of DataGrids sortArrow? I tried it over the headerRelease event, but I can't hold the new color value... Has anybody a solution??xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" mx:Script ![CDATA[ private function

Re: [flexcoders] Can Flex record audio locally?

2006-06-27 Thread Jeremy Lu
Well, what I want exactly is getting the raw sound data for processing and displaying inside Flash/Flex...Red 5 might not help here neither.On 6/27/06, Andrew Trice [EMAIL PROTECTED] wrote: You can definitely show the sound wave in flex without any 3rd

[flexcoders] Re: XML with namespaces HTTPService

2006-06-27 Thread klumikaze
http://www.darronschall.com/weblog/archives/000223.cfm That will solve all of your issues. I just had the same problem. :) Hope it helps... Brian --- In flexcoders@yahoogroups.com, iloirdnam [EMAIL PROTECTED] wrote: Hello, I'm trying to navigate the following XML source ins AS3: ?xml

[flexcoders] Variable number of columns in ColumnChart

2006-06-27 Thread ben.clinkinbeard
Hello, I have a ColumnChart whose columns are based on selections in another part of the app. So there can be anywhere between 1 and 4 column sets. Unfortunately, I can't figure out how to add the ColumnSeries items dynamically, so my legend always has 4 items, regardless of the actual data. Here

Re: [flexcoders] Binding to Dynamic Object

2006-06-27 Thread Brendan Meutzner
Tom,Excellent... thank you.BrendanOn 6/27/06, Tom Bray [EMAIL PROTECTED] wrote: You can use an ObjectProxy to wrap your objects and make them bindable.-TomOn 6/27/06, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi All,Wondering if

Re: [flexcoders] Re: company branding in flex??

2006-06-27 Thread Jim Cheng
dandiodati wrote: Has any one had to do company branding? Is there not a way to change the external style sheet dynamically? As you've already noted, the CSS styles are compiled into the SWF at compile-time, so there isn't a quick way to together a SWF that'll be can load and apply external

Re: [flexcoders] Flash Player 9 and old scripts

2006-06-27 Thread Derek Vadneau
Thanks Matt. I probably should have been more specific - my needs are IE-only so that's why I asked about SetVariable/GetVariable. I thought they worked in Netscape/Mozilla as well, but I could be wrong. The FABridge looks really good. I'm thinking that's the way to go. Seems like a lot of

[flexcoders] Re: coloring an entire cell in a DataGrid?

2006-06-27 Thread djbrown_rotonews
Is the beginFill/drawRect/endFill the only way to do it inside of set data() as well, or is there an alternate way? --- In flexcoders@yahoogroups.com, Jeremy Lu [EMAIL PROTECTED] wrote: Got it, thanks :-) On 6/27/06, Joan Tan [EMAIL PROTECTED] wrote: I believe that this was

Re: [flexcoders] Flex 2 released tomorrow

2006-06-27 Thread Pan Troglodytes
Not only have we seen rumors, we've seen posts by Adobe people. :Dhttp://www.mail-archive.com/flexcoders@yahoogroups.com/msg30570.html On 6/27/06, Jeremy Rottman [EMAIL PROTECTED] wrote: I was carousing the interweb and I found a post on g-unix. Has anyone else

[flexcoders] Re: Question about putting a flex page up as a yahoo page

2006-06-27 Thread Jeremy Rottman
--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: I have a friend who recently brought a domain name. He has yahoo web space and ask asked me to make him a page using Flex. I was wondering is it possible to put a Flex page up on a yahoo server? I mean if you have the code and

RE: [flexcoders] Flex 2 released tomorrow

2006-06-27 Thread João Fernandes
Jeremy, As you say, rumors. Adobe hasn't denied or confirm it but the end of the first half of 2006 is just around the corner so it might be true. João Fernandes -Original Message- From: flexcoders@yahoogroups.com on behalf of Jeremy Rottman Sent: Tue 27-Jun-06 8:01 PM To:

Re: [flexcoders] Question about putting a flex page up as a yahoo page

2006-06-27 Thread Nick Collins
with flex2 you can because it compiles to standalone SWFs, but they require player 9. With Flex 1-1.5 I don't believe you can because yahoo does not provide FES to their usersOn 6/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a friend who recently

Re: [flexcoders] Re: company branding in flex??

2006-06-27 Thread mail
There is an open source runtime styling framework in development and word that Adobe may be working toward runtime CSS for a future release (perhaps version 2.5 or 3). Please feel free to use the components that I have so far and provide feedback on your specific requirements for run-time

[flexcoders] IFrame, wmode, Firefox, and tabbing....

2006-06-27 Thread Scott Romer
So, recently, we were exploring options of including an IFrame on our application to display some external content. In doing so, one solution that we found was to include the wmode=opaque on the Object/Embed tag, and display an absolutely positioned IFrame that is updated during the moving of a

Re: [flexcoders] Release Pricing

2006-06-27 Thread Nick Collins
as it was explained to me... CPUs refers to physical CPUs, so a dual core processor is one CPU. regarding the rest, I think someone from Adobe would better address it accuratelyOn 6/27/06, Antoine Malpel [EMAIL PROTECTED] wrote: ok but where is exactly the

[flexcoders] Re: Keeping DataGrid from scrolling to top on update to dataProvider

2006-06-27 Thread djbrown_rotonews
I actually tried this (my dataProvider for the grid is an XMLListCollection being populated by a jsp. The grid has custom item renderers if that's relevant). anyhow, I have an update button which will call the jsp and get new results when clicked. I've set it up so the click() method

Re: [flexcoders] ClassUtil.Find Class and _global - Flex 2

2006-06-27 Thread Ralf Bokelberg
Hi Karthi, take a look at the flash.utils package. There you can find replacements for findClass. Regarding _global - i have not tried it, since _global isn't good practice anyway, but in principle you should be able to place arbitrary declarations in the empty package. Cheers, Ralf. On

[flexcoders] noob question on webservices and del.icio.us

2006-06-27 Thread bhati001
hi, i am trying to get the bookmarks at del.icio.us as https://api.del.icio.us/v1/posts/get?tag=red and i get a security error as [RPC Fault faultString=Security error accessing url faultCode=Channel.Security.Error faultDetail=Destination: DefaultHTTP] i do not know whether this is because of

Re: [flexcoders] Custom Validator woes....

2006-06-27 Thread Ralf Bokelberg
Hello Suzy, Did you try the static validateEmail method of the EmailValidator? Cheers, Ralf. On 6/27/06, Suzy Lawson [EMAIL PROTECTED] wrote: I'm building an e-mail client where the To: field can have a comma delimited array of e-mail addresses: [EMAIL PROTECTED], [EMAIL PROTECTED] I have

RE: [flexcoders] ClassUtil.Find Class and _global - Flex 2

2006-06-27 Thread Gordon Smith
1. If you know the fully-qualified name of a class that is linked into your SWF, you can create an instance of it as follows: import flash.utils.getDefinitionByName; ... var buttonClass:Class = Class(getDefinitionByName(mx.controls.Button)); var b:Button = new buttonClass(); 2.

[flexcoders] expanding Tree Nodes

2006-06-27 Thread Mike Wertheim
According to http://livedocs.macromedia.com/labs/1/flex20beta3/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0611.html , the following code used to work in Flex Beta 2 but stopped working in Beta 3. : ![CDATA[function initTree(){

[flexcoders] How to change the Datagrid column header length

2006-06-27 Thread Subba Chalamalasetty
Hi, I want to change the height of the header in the column i.e I want it to be double the size of row size and add a label below the header text So the column header will be in 2 lines and double the size of the present size. Can somebody help me how to increase the height in

[flexcoders] Re: How to change the Datagrid column header length

2006-06-27 Thread Tim Hoff
You can change the height like this: -THpackage { import mx.controls.*; import mx.core.*; public class HeaderRenderer extends Text { public function HeaderRenderer() { height = 34: } override public function set data(value:Object):void

[flexcoders] RE: [flex2dev] Properly binding an object to a custom component.

2006-06-27 Thread Ian Skinner
I have struggled with this all day and made no headway. The only strange thing I get is with this line: mx:Label text={dayCells.currentItem.toString()} / outputs [object Object] Not the expected string from this drawDay.as function. // toString() public function toString():String { return

RE: [flexcoders] Re: Flex 2 released tomorrow

2006-06-27 Thread Matt Chotin
What is your timezone, 4pm is probably wrong J We are on track for releasing very very very soon. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bobchyko Sent: Tuesday, June 27, 2006 12:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

Re: [flexcoders] Flex 2 released tomorrow

2006-06-27 Thread Weyert de Boer
Hopefully the mac version too! Yahoo! Groups Sponsor ~-- See what's inside the new Yahoo! Groups email. http://us.click.yahoo.com/2pRQfA/bOaOAA/yQLSAA/nhFolB/TM ~- -- Flexcoders

RE: [flexcoders] expanding Tree Nodes

2006-06-27 Thread Deepa Subramaniam
You now want to use Tree.expandItem() to open or close a branch node. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mike Wertheim Sent: Tuesday, June 27, 2006 1:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] expanding Tree Nodes

RE: [flexcoders] Re: help getting xml attribute names

2006-06-27 Thread Gordon Smith
x.attributes()[i].name()) will give you the name of the ith attribute. Another syntax for this is [EMAIL PROTECTED]() - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Sent: Monday, June 26, 2006 3:02 PM To:

RE: [flexcoders] Custom Validator woes....

2006-06-27 Thread Jason Szeto
Suzy, The listener, source and trigger are all optional properties of Validators. You can just call the validate() function. Pass in the string you want to validate and it will return the ValidationResult. The validate() function is on the base class, Validator. Jason

[flexcoders] Error on Creating a New Flex Data Service Project

2006-06-27 Thread nag.flex
Hi am trying to create a Flex Data Service Project. When i tried to validate the server root location it poped up with an error Invalid server root Flex-config.xml, flex-enterprise-status.xml must exist in the WEB-INF/flex folder within the server root But am able to locate these files under

[flexcoders] cell renderers

2006-06-27 Thread Clint Tredway
Is there an example of doing cell renderers in 2.0 or is it the same as doing them in 1.5?Thanks-- diabetic? http://www.diabetesforums.comBill Cosby - A word to the wise ain't necessary - it's the stupid ones that need the advice. __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] F2B3: Array within a complex object from a WebService result

2006-06-27 Thread ilia_papas
Has anyone been able to successfully parse an array of complex objects within a complex object returned from a web service? Basically, I have a collection of items, and I'd like to include some information about the items in a complex object, which also contains the collection. ie:

[flexcoders] F2B3: Internal build error

2006-06-27 Thread Joshua Garnett
I'm running the Flex 2 plugin inside of Eclipse. I made a few changes to the code and ended up hitting an Internal build error. I'm not sure what the actual cause is since I've tried to back out of the code changes I had recently made. Here is the message from the .log file:!ENTRY

[flexcoders] Object type Coercion error.

2006-06-27 Thread Ian Skinner
I am receiving this error: TypeError: Error #1034: Type Coercion failed: cannot convert [EMAIL PROTECTED] to drawDay. When I run this code: mx:Repeater id=dayCells dataProvider={days} startingIndex={weekRows.currentItem} count=7 ian:dayFormat2

[flexcoders] RE: [flex2dev] Object type Coercion error.

2006-06-27 Thread Ian Skinner
//Define public variables [Bindable] public var drawData:Object; Ok, changing the data type of the drawData variable to Object which is what a repeater currentItem returns worked! But is this the way I want this to work? Just use a generic Object type not my nice custom Object I create with

RE: [flexcoders] cell renderers

2006-06-27 Thread Joan Tan
CellRenderers in 2.0 are totally different from 1.5. There is an entire chapter in the docs about cellRenderers and you should find enough examples to get you started. Joan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Clint Tredway Sent:

[flexcoders] Re: expanding Tree Nodes

2006-06-27 Thread mikewertheim
I've been struggling trying to figure out how to get Tree.expandItem() to work. For example, I have this mxml: mx:Tree id=tree1 showRoot=true width=180 height=100% verticalScrollPolicy=off mx:dataProvider mx:XML format=e4x

  1   2   >