Re: [flexcoders] Web Services and CF7

2005-05-19 Thread dave buhler
from: http://forta.com/blog/index.cfm?mode=ccatid=11 Using Flash Remoting With CFMX7? Watch Out For This One I mentioned this in a comment on a prior post , but it is important enough to warrant its own mention. If you are using Flash Remoting to access ColdFusion code, you may run

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Hans Omli
I'm having a similar issue. After changing db_path in /WEB-INF/classes/store.cfg to an absolute path, I get: Error: Unresolved compilation problems: The import org.apache.commons cannot be resolved The import org.apache.commons cannot be resolved log cannot be resolved

Re: [flexcoders] Panel hearder-colors restriction or bug

2005-05-19 Thread Manish Jethani
On 5/18/05, Kent Henneuse [EMAIL PROTECTED] wrote: If I specify a single color for the header I get that color no matter the value. If I specify a second color, for the gradient I assume, I get black. See example code below. The code example you posted works fine for me if I run it directly.

Re: [flexcoders] Usting Flex with a database

2005-05-19 Thread Will Sargent
[EMAIL PROTECTED] wrote: I know this is probably a basic question and I hope not a silly one but how good is Flex with Databases? Not very much, directly. The most direct route is going to be to hook up a RemoteObject to a Java object that services as a persistence manager, such as

Re: [flexcoders] binding error - from Flex?

2005-05-19 Thread Will Sargent
michael keirnan wrote: also, if you run mxmlc or compc against your source tree the generated files are placed right in your source tree. (perhaps obvious if one thinks about it, but i did not think about it until it bit me). this can lead to various problems during the typical development

[flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-19 Thread r0main
Hello Dimitrios, I'm looking forward to find a valid MXML editor into eclipse... I've downloaded erverything... I can see the XML editor is here, I've associated MXML file to it... It opens it as an XML file, but says the document is empty, while the source tab shows the mxml file... Any idea ?

Re: [flexcoders] Is there an easy way to do this

2005-05-19 Thread Manish Jethani
On 5/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: [...] mx:Array id=apples mx:Object labelShopper1/label Number5/Number /mx:Object mx:Object labelShopper2/label Number7/Number /mx:Object mx:Object labelShopper3/label Number0/Number /mx:Object [...]

Re: [flexcoders] SynergyFLEX Framework Presentation.

2005-05-19 Thread Will Sargent
Scott Barnes wrote: Q. What is the rationale for SynergyFLEX? ~~ [ massive answer deleted ] Hopefully that will connect the dots some more for folks - its hard to explain the whole framework in a small email, really needs a walk through

[flexcoders] Re: Is there an easy way to do this

2005-05-19 Thread r0main
From documentation on Array class (http://livedocs.macromedia.com/flex/15/flex_docs_en/1201.htm): apples.sortOn(Number, Array.DESCENDING); Ciao, r0main --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: [...]

Re: [flexcoders] Cairngorm 0.99

2005-05-19 Thread dave buhler
I think the quotes needed to be added. From: namespace uri=http://www.iterationtwo.com/cairngorm manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace be: namespace uri=http://www.iterationtwo.com/cairngorm manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest/namespace

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
I have the same issue with the Login example: Error /org/nevis/cairngorm/samples/login/business/Services.mxml:22 Namespace http://www.iterationtwo.com/cairngorm has not been associated with component manifest. On 5/19/05, Hans Omli [EMAIL PROTECTED] wrote: I'm having a similar

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Indy Nagpal
Hi Ted: I agree with Andrew totally. Using remoteobject to invoke the cfc on the server is a much more efficient. I've been using remoteobject to access cfc and it works beautifully. A question for you: Are you going to be running cf7 and flex on the same jrun instance? If you are, keep in mind

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Indy Nagpal
Ted, I just found another reason why I'd prefer remoteobject over webservices. If a cfc extends another component, you cannot access the inherited functions when using webservices. You will have specifically write functions in the cfc you are calling to expsore the inherited functions. However,

[flexcoders] Lineseries and dataproviders?

2005-05-19 Thread svktiilikainen
Hi there, I've been struggling with line charts containing multiple data series. The data presented is linear so that I'm using LinearAxis for both X and Y axis LineSeries to make the data series. Is there ANY way to assign different data providers to LineSeries objects of one LineChart

[flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Alistair McLeod
Hi all, It turns out that the log4j JAR file that ships with the CairngormStore example in Cairngorm conflicts with the one that is pre-installed with the version of JRun that ships with Flex, and stops the application context from starting up successfully. So, to get it running, delete

[flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-19 Thread r0main
Dimitrios, Which editor did you associate to *.mxml files ? I've got a file main.mxml, and tried XML Editor, XML Source Page Editor, Standalone Structured Source Editor, on it: Nothing good happens... But if I rename it main.xml that works perfectly... r0main --- In flexcoders@yahoogroups.com,

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Alex Uhlmann
Hi Dave, have you made sure your config.xml contains namespace uri=http://www.iterationtwo.com/cairngorm; manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest /namespace ,you have a cairngorm-manifest.xml file and most importantly, you've restarted your server? Best, Alex -- Alex

R: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Paolo Bernardini
Thanks Alistair Finally Im able to see the cairngormstore example. However Im noting something strange, if I use the netConnectionDebugger that ship with flex, which I usually use to see the exachange of data between the server and the client, I dont see the data. This is what I

[flexcoders] Fully qualified URL

2005-05-19 Thread Jeroen De Vos
Title: Fully qualified URL Hi all, In ActionScript I need to read the fully qualified URL to the application (http://x/x/). How can I get this URL? Jeroen. Jeroen De Vos Gemeentelijk Havenbedrijf Antwerpen C/ICT - AMARIS

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Abdul Qabiz
Title: Fully qualified URL Hi, I thinks, mx.core.Application.application._url would return the URL of application. For example: mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" creationComplete='alert(mx.core.Application.application._url)' /mx:Application -abdul From:

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Allen Manning
Title: Fully qualified URL Hello Jeroen, Below isan example ofone way of doing it. ?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" mx:Panel title="Get This URL" width="100%" height="100%" mx:Script![CDATA[ private function getPageURL()

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Jeff Tapper
Ugggh. _root -- bad. in the example below, since its running in the core application tag, you can just remove the word _root entirely, and it will still work, or, as Abdul suggested, mx.core.Application.application._url will work from any place in the app. At 06:43 AM 5/19/2005, you

[flexcoders] Flex on the Web

2005-05-19 Thread Michel Jansen
LS, I am looking for Flex application on the Web. Can anynone send me some URL's where i can find them? It looks like most of the RIA's in production on the Web are build with Flash, BackBase and/or Laszlo. Please enlighten me... Michel Yahoo! Groups Links * To visit your group on the

Re: [flexcoders] Flex on the Web

2005-05-19 Thread Jeff Tapper
There are several listed on cflex.net. At 07:06 AM 5/19/2005, you wrote: LS, I am looking for Flex application on the Web. Can anynone send me some URL's where i can find them? It looks like most of the RIA's in production on the Web are build with Flash, BackBase and/or Laszlo. Please

RE: [flexcoders] Flex on the Web

2005-05-19 Thread Allen Manning
Hello Michel, The examples on the Macromedia Flex Development centre is a start: http://www.macromedia.com/devnet/flex/example_apps.html HTH, Allen Allen Manning, Technical Director Prismix

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Jeroen De Vos
Hi, And what doesmx.utils.URLUtil.getFullURL() do then? Jeroen. Van: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Namens Allen ManningVerzonden: donderdag 19 mei 2005 12:56Aan: flexcoders@yahoogroups.comOnderwerp: RE: [flexcoders] Fully qualified URL Jeff, Thanks. ?xml

Re: [flexcoders] Flex on the Web

2005-05-19 Thread Michel Jansen
Allen Manning wrote: Hello Michel, The examples on the Macromedia Flex Development centre is a start: http://www.macromedia.com/devnet/flex/example_apps.html Thanx. But i am looking for the spectaculars! I thought that Flex enabled the next generation WebApplications but what i have

[flexcoders] Event Listeners

2005-05-19 Thread Michael Herron
All, I am having a problem with removing event listeners on a panel. I am adding the event listener like so: pane.addEventListener(contentCreated, Delegate.create(this, handleEvent) ); But trying to remove the event listener using removeEventListener does not seem to work. I

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Allen Manning
Joren, According to the MXML API docs: getFullURLstatic getFullURL( rootURL: String, url: String) : String ' Converts a potentially relative URL to a full qualified URL. If the URL is not relative, it is just returned as is. If the URL starts with a slash, the host and port from the

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Jeroen De Vos
Allen, Yes, I read the doc, but what does it do? How does it work? Jeroen. Van: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Namens Allen ManningVerzonden: donderdag 19 mei 2005 13:22Aan: flexcoders@yahoogroups.comOnderwerp: RE: [flexcoders] Fully qualified URL Joren,

RE: [flexcoders] Event Listeners

2005-05-19 Thread Alistair McLeod
Hi Michael, I imagine its because your event listener is an anonymous function, so the removeEventListener must be passed a reference to the same function. Try this (untested) myHandler : Function = Delegate.create( this, handleEvent ); pane.addEventListener("contentCreated",myHandler

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Theodore E Patrick
Anything goes really, I return numbers, string, bools, arrays, objects and combinations of all the above depending on what is needed. In the use cases we are using this data service for: Search Directory Articles Ecommerce Personalization The requests and responses are all different but we want

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Theodore E Patrick
Dave, Awesome, thanks for these! I completely forgot to check Bens blog. These are invaluable. 10 Points to Dave! Thanks, Ted ;) From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of dave buhler Sent: Thursday, May 19, 2005 2:20 AM To:

[flexcoders] how can i stop my date-time timezone data from being adjusted

2005-05-19 Thread bhaq1972
Is there a quick way to stop flash player from manipulating my date- time data before its rendered. In my oracle db i have a column of data held as a date eg. '18-04-05 15:40' but when i render this data in a datagrid/list etc, it shows up as '18-04-05 16:40'. I want this date time to be

RE: [flexcoders] Event Listeners

2005-05-19 Thread Michael Herron
Hi Alistair, That worked perfectly, cheers! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alistair McLeod Sent: 19 May 2005 12:31 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Event Listeners Hi Michael, I imagine its because

RE: [flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-19 Thread Dimitrios Gianninas
Hi r0main, Here is what I did in Eclipse 3.1M7: Schema setup: Goto Preferences Web XML XML Catalog. From there I created a "User Specified Entry" pointing to the MXML schema file with Flex 1.5. Association: Goto Preferences Editors Content Types. Under "XML" add "*.mxml". Apply

RE: [flexcoders] Cairngorm 0.99

2005-05-19 Thread Dimitrios Gianninas
Yes correct... copy 'n' past error :) Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: dave buhler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 19, 2005 4:05 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Cairngorm 0.99 I think the quotes needed to be

[flexcoders] Check against certain values in a

2005-05-19 Thread Reto M. Kiefer
Hi, I have a datagrid which contains some data from email headers like read, from, subject etc. The dataprovider is a webservice: mx:dataProvider {mail_Manager.listInbox.result} /mx:dataProvider mx:columns mx:Array mx:DataGridColumn columnName=id headerText=Id width=50/ mx:DataGridColumn

[flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-19 Thread r0main
Thanks a lot... It works that way... Now, for 100% free, I can edit MXML files and also can edit flex .as files with MTASC::: ByeBye flexBuilder :-) Ciao, r0main --- In flexcoders@yahoogroups.com, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Hi r0main, Here is what I did in Eclipse

RE: [flexcoders] Announcing Flex Style Explorer

2005-05-19 Thread Craig Newroth
with the exception that CSS style selectors are not supported in components...would have to load a .css file I am assuming... --- Jeff Beeman [EMAIL PROTECTED] wrote: This tool is absolutely fantastic! I've got a bug report that one of our developers noticed, though, and since I can't make a

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Peter Farland
Some more detailed information on this - the issue is that the IIS connector doesn't handle the ;jsessionid token in URLs unless it appears after the query string.The J2EEservlet spec does not specify that this token has to appear after the ?symbol and thus manyother app servers handle it

RE: [flexcoders] Controlling Pie Chart Colors

2005-05-19 Thread Battershall, Jeff
Ely, Thanks. So how do you drill down to the correct style object? If try to give my PieSeries an id, the compiler says, Nested object properties cannot have IDs. Setting the fills style for the PieChart.series object seems to have no effect whatsoever. Jeff Code Sample: mx:PieChart

RE: [flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6?

2005-05-19 Thread Dimitrios Gianninas
My thoughts exactly. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: r0main [mailto:[EMAIL PROTECTED] Sent: Thursday, May 19, 2005 8:38 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: How to configure MXML schema in Eclipse + OxygenXML 6? Thanks a lot...

RE: [flexcoders] Flex on the Web

2005-05-19 Thread Battershall, Jeff
Dow Jones is using embedded Flex in public facing contexts, and more to come. http://www.djindexes.com/mdsidx/portfolio/index.cfm?event=showPortfolioG lobalRelativeRisk Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED] (609) 520-5637 (p) (484) 477-9900 (c) -Original

[flexcoders] Re: Check against certain values in a

2005-05-19 Thread derrickgrigg
Your condition statement should be something like this: if (grid1.dataProvider.getItemAt(j).read == 'u'){ grid1.rows[j].setStyle('fontWeight', 'bold'); } else { //do nothing } You might also want to change the line: for( var j:Number=0; j grid1.rows.length; j++){ to something like

Re: [flexcoders] Re: Check against certain values in a

2005-05-19 Thread Reto M. Kiefer
Hi Derrick, Your condition statement should be something like this: if (grid1.dataProvider.getItemAt(j).read == 'u'){ Thanks a lot that works like a charm. I had this solution before but got confused with the order of the webservice call which is the dataprovide so I couldn't see an

RE: [flexcoders] Flex on the Web

2005-05-19 Thread Kent Henneuse
There is also OFoto which shows a more public consumer app. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Thursday, May 19, 2005 7:40 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex on the Web Dow Jones

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
Hi Alex, Let me try again when I get home from the office. I'm confused about the purpose behind the SWC. As I understand it, and stop me if I'm wrong, the SWC is the compiled Cairngorm framework. The following code... !-- run this task to move cairngorm to you webapp -- target

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
Samples*, not sames :)On 5/19/05, dave buhler [EMAIL PROTECTED] wrote: Hi Alex, Let me try again when I get home from the office. I'm confused about the purpose behind the SWC. As I understand it, and stop me if I'm wrong, the SWC is the compiled Cairngorm framework. The following code...

RE: [flexcoders] Panel hearder-colors restriction or bug

2005-05-19 Thread Kent Henneuse
Thanks Manish. I can safely say that there are two bugs. One in the StyleExplorer, which makes some sense, and one in FlexBuilder itself. When you view the design in FlexBuilder you get a funky look for the same gradient. It drove me nuts. -Kent -Original Message- From:

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Thijs Triemstra | Collab
thanks for that updater link, dave. That .jar updater in the cfmx admin is very nice but cannot be installed with firefox (osx 10.4.1), I can't select select the updater from the java filebrowser thing, safari works fine though :-/is there a way to get a notification when there is an macromedia

[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread reubenbrown13
While that is nice and all, I have these errors now: 5 Errors found. Error H:\Inetpub\wwwroot\flex\cairngormlogin\org\nevis\cairngorm\samples\login\business\Services.mxml:28 Invalid value for 'named' - does not match any object name from the configuration file. Error

RE: [flexcoders] how can i stop my date-time timezone data from b eing adjusted

2005-05-19 Thread Matt Chotin
You may need to create a new Date that eliminates the timezone aspect. var minsOff = oldDate.getTimezoneOffset(); var noTimezoneDate = new Date(oldDate.getTime(); noTimezoneDate.setMinutes(oldDate.getMinutes() + minsOff); I havent tried this but see if you can run with it.

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Dave Carabetta
On 5/19/05, Thijs Triemstra | Collab [EMAIL PROTECTED] wrote: thanks for that updater link, dave. That .jar updater in the cfmx admin is very nice but cannot be installed with firefox (osx 10.4.1), I can't select select the updater from the java filebrowser thing, safari works fine though :-/

RE: [flexcoders] Lineseries and dataproviders?

2005-05-19 Thread Ely Greenfield
Satu -- You can, of course, always write a small routine to combine the datasets into a single dataprovider. But yes, you should be able to assign dataproviders to the individual series, rather than the chart: LineChart series LineSeries dataProvider={dp1} / LineSeries

[flexcoders] Flash Drawing API in Flex

2005-05-19 Thread Dennis Baldwin
Hi, I'm wondering if it's possible to utilize the Flash drawing API in Flex. Our current Flash application has a tree with drag/drop functionality. Items are dragged from the tree and then dropped onto a floor plan. In Flash we trigger an event that draws a box and other shapes on the canvas. We

[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread reubenbrown13
That fixed it. Thanks. It might be good to have some manual installation instructions in the documentation for putting cairngorm into an existing flex server. --- In flexcoders@yahoogroups.com, Steven Webster [EMAIL PROTECTED] wrote: -Original Message- From:

[flexcoders] MXML Schema

2005-05-19 Thread Reto M. Kiefer
Dear all, not a direct question but I'd like to discuss this issue with you. I'm using Eclipse for Developing Flex with the oXygen-Plugin (XML), ASDT (ActionScript Plugin) and Sysdeo (Tomcat monitoring SOAP-Debugging!). It works like a charm and i prefer it instead of using Flexbuilder.

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Steven Webster
Reuben, That fixed it. Thanks. It might be good to have some manual installation instructions in the documentation for putting cairngorm into an existing flex server. http://www.iterationtwo.com/nevis/InstallationGuide.pdf On page 6, we instruct: To copy over the store sample files, you

RE: [flexcoders] Controlling Pie Chart Colors

2005-05-19 Thread Ely Greenfield
Yes, ids are not supported on faceless objects in Flex 1.5. Try: assetPieChart.series[0].setStyle(...); Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Battershall, Jeff Sent: Thursday, May 19, 2005 6:53 AM To:

RE: [flexcoders] Controlling Pie Chart Colors

2005-05-19 Thread Battershall, Jeff
Ely, THAT WORKS, thank you! This needs some better documentation! Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely Greenfield Sent: Thursday, May 19, 2005 12:28 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Controlling

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
Whoa! I missed the PDF. :SOn 5/19/05, Steven Webster [EMAIL PROTECTED] wrote: Reuben, That fixed it.Thanks.It might be good to have some manual installation instructions in the documentation for putting cairngorm into an existing flex

RE: [flexcoders] Flash Drawing API in Flex

2005-05-19 Thread Abdul Qabiz
Hi, You can use drawing API in flex also. Yes you can do this with Canvas because it's only container that supports absolute layouting. Following is simple example: ##DrawingOnCanvas.mxml## mx:Application width=800 height=600 xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Script

Re: [flexcoders] Available Backend Frameworks

2005-05-19 Thread Brett Palmer
Open for Business (www.ofbiz.org) is another backend framework that we use with Flex. It is a nice framework for creating enterprise applications because it includes what I call a full application stack. This stack includes an entity engine, workflow engine, service engine, and presentation

[flexcoders] can I bind more that one checkbox to a send request?

2005-05-19 Thread cnewroth55
I have a form that has several different checkboxes and need to pass any of their respected labels (or data) to a webservice cfc..what i what to do is be able to pass any of the below up to my webservice call. the code for the web service call is below this...; mx:VBox

[flexcoders] using the Style control tag

2005-05-19 Thread cnewroth55
not sure if anyone else knows this, but I tried to use the mx:Style tag to set a style in one of my components, and when I did i got an error that said CSS type selectors are not supported in components, here is what I had: mx:Style LinkBar {some style stuf } /mx:Style however this is wrong

RE: [flexcoders] using the Style control tag

2005-05-19 Thread Abdul Qabiz
Hi, You can use style tag as shown below, not sure why you got errors. Which version of Flex you are using? You can see into flex docs under section Using Styles and Fonts: http://livedocs.macromedia.com/flex/15/flex_docs_en/0532.htm ##StyleTagExample.mxml## mx:Application width=800

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Peter Farland
Remoting is great but it has a core limitation of one request at a time due the way AMF was implemented in the player. [Pete] You can simply create a new connection for each RemoteObject by either re-connecting by calling connect on the connection property of the RO or by using a distinct

Re: [flexcoders] Flex on the Web

2005-05-19 Thread John Dowdell
Michel Jansen wrote: I am looking for Flex application on the Web. Can anynone send me some URL's where i can find them? As David noted, the bulk of Flex sales are made for intranet applications, and the open World Wide Web is a slightly different audience. Allen had that good link to the

Re: [flexcoders] Flex on the Web

2005-05-19 Thread John Dowdell
One more recent gallery is in this quarter's Macromedia financial call, on slide 34 of the following Breeze presentation: http://www.macromedia.com/macromedia/ir/macr/web_pres/earnings/q405/ jd -- John Dowdell . Macromedia Developer Support . San Francisco CA USA Weblog:

[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Paolo Bernardini
Hi Steven Could you explain the reason this new way of passing the command string in the addCommand in the ShopController: addCommand( ShopController.EVENT_GET_PRODUCTS, new GetProductsCommand () ); public static var EVENT_GET_PRODUCTS = getProducts; compare to the old cairngorm 0.95

[flexcoders] Help with node indentation after drag/drop

2005-05-19 Thread Rick Schmitty
Hi all, was wondering if there is some kind of function to 'correct' (?) the indentation after doing a drag/drop with a tree For example root -A --1 --2 -B --3 --4 Now if I drag A into B, the B folder will appear correctly root -B --A --3 --4 But when I expand/close A its chilrend don't

Re: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Hans Omli
I'm running Tomcat. I see two log4j warnings when launching Tomcat through Eclipse: log4j:WARN No appenders could be found for logger (org.apache.catalina.session.ManagerBase). log4j:WARN Please initialize the log4j system properly. Then I get the following error when I run Main.mxml:

Re: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Hans Omli
I resolved the log4j warnings. I had imported log4j.properties into the wrong webapp. :-( However, I still get the unresolved compilation problems. Any ideas? On 5/19/05, Hans Omli [EMAIL PROTECTED] wrote: I'm running Tomcat. I see two log4j warnings when launching Tomcat through Eclipse:

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Jose Lora
Is it to avoid typo issues and later error debugging craziness? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paolo Bernardini Sent: Thursday, May 19, 2005 2:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm 0.99

Re: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Hans Omli
Resolved the compilation problems. I needed to add the libraries to the Tomcat project I'm using in Eclipse, not just import the libraries into the lib folder. On 5/19/05, Hans Omli [EMAIL PROTECTED] wrote: I resolved the log4j warnings. I had imported log4j.properties into the wrong webapp.

Re: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread dave buhler
Wooo-H! I'm in! *** insert spy theme music here My thoughts: I ran into the same errors as reuben and Sean above with the exact same errors. I have never heard of ANT until today. I'm a client-side developer. Just like Berardini. Server configuration is foreign to me. Lead my

RE: [flexcoders] Controlling Pie Chart Colors

2005-05-19 Thread Battershall, Jeff
As a contribution to the group knowledge as to one way to address this matter - create an array of hex colors and bind the fills property of your PieSeries to this, then programmatically alter this array depending on data provider contents - that way you don't need to worry about drilling into the

[flexcoders] HTML form replacement

2005-05-19 Thread pixelcowboys
This is probably a basic question for most of you, but I'll ask anyway. What is the best method for simply replacing an existing HTML login form with a Flex one? I'm currently trying getURL on the submit action (but with no luck): function submitLogin():Void { var username:String = ;

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Andrew Muller
Ted, although you do mention search you don't specifically mention CF query result sets. One thing that I'd like to mention for the benefit of others using Flex and ColdFusion is that while CF can return query result sets via Remoting and Web Services this is not a native object/data type in the

[flexcoders] Default Chart Colors

2005-05-19 Thread Dave
How do I change the default colors used by Flex for multiple charts? As charts are added, the Legend and the Chart itself follow a pattern of predetermined colors. Where is that defined? I need to change site wide. Thanks much, -Dave Yahoo! Groups Links * To visit your group on the

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Steven Webster
Hi Paolo, Could you explain the reason this new way of passing the command string in the addCommand in the ShopController: addCommand( ShopController.EVENT_GET_PRODUCTS, new GetProductsCommand () ); public static var EVENT_GET_PRODUCTS = getProducts; compare to the old cairngorm

RE: [flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread Steven Webster
Hi Dave, I ran into the same errors as reuben and Sean above with the exact same errors. I have never heard of ANT until today. I'm a client-side developer. Just like Berardini. Server configuration is foreign to me. Lead my people to the Red Sea of Server

Re: [flexcoders] Announcing Flex Style Explorer

2005-05-19 Thread Rick Schmitty
how are they changing everything 'on the fly' so to say? I'm assuming they are accessing the styles directly, but how do you get it to update? For example mx:Script ![CDATA[ function changecolor(){ p.inheritingStyles.headerColors[0]=; p.inheritingStyles.headerColors[1]=;

RE: [flexcoders] MXML Schema

2005-05-19 Thread Blake Kadatz
But some featrues are missing, so I have a hunch that the Scheme is not complete. For example while beeing in a mx:operation within a mx:Webservice no hinting for result or concurenncy is provided. Checking the Schema with a Schema-Browser results in that attributes or sub-tags for

RE: [flexcoders] Announcing Flex Style Explorer

2005-05-19 Thread Gordon Smith
Title: Message Using setStyle(), I hope. Is the inheritingStyles property even documented? - Gordon -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick SchmittySent: Thursday, May 19, 2005 2:47 PMTo:

Re: [flexcoders] MXML Schema

2005-05-19 Thread Reto M. Kiefer
Hi Blake, As I learned earlier (see ColumnChart thread), the lower-case tags aren't objects but shortcuts for defining properties of the parent tag. So, as in that ColumnChart thread, this code: Thnaks for your replay, I didn't studied the thread ColumnChart intensivly because right now I'm

RE: [flexcoders] Flash Drawing API in Flex

2005-05-19 Thread Dennis Baldwin
Excellent Abdul! I see that I was missing my reference to square_mc. Thanks for the help. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of Abdul Qabiz Sent: Thursday, May 19, 2005 12:25 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders]

RE: [flexcoders] Default Chart Colors

2005-05-19 Thread Ely Greenfield
Hi Dave. The answer is a teeny bit complex. Each Series (except the pieSeries) has a style property called 'fill' that it pulls its fill from. So what you're wondering is: how do I specify the fill style for each series that appears in my chart? Each chart type, when it displays its series,

[flexcoders] Scale the size of a whole application

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

[flexcoders] passing variables using getURL?

2005-05-19 Thread sbyrne_dorado
I'm having problems figuring out how to pass variables using getURL. The documentation that I can find seems to indicate that any random variable that you declare that's in some (unspecified) scope, will be appended (for GET) or passed (for POST) as parameters along with the URL. So I have

[flexcoders] Re: Flex on the Web

2005-05-19 Thread jacksodj
Also, last I saw posted to this group, there were only about 200 licenses sold to date. --- In flexcoders@yahoogroups.com, John Dowdell [EMAIL PROTECTED] wrote: Michel Jansen wrote: I am looking for Flex application on the Web. Can anynone send me some URL's where i can find them? As

Re: [flexcoders] Re: Flex on the Web

2005-05-19 Thread John Dowdell
jacksodj wrote: Also, last I saw posted to this group, there were only about 200 licenses sold to date. I saw that you quoted my whole message in reply. If you had instead checked the links provided, you would have seen that number of licensees (not just licenses) increased over 50% since

Re: [flexcoders] passing variables using getURL?

2005-05-19 Thread John Dowdell
sbyrne_dorado wrote: I'm having problems figuring out how to pass variables using getURL. Pass info from where, to where...? jd -- John Dowdell . Macromedia Developer Support . San Francisco CA USA Weblog: http://www.macromedia.com/go/blog_jd Aggregator:

RE: [flexcoders] using the Style control tag

2005-05-19 Thread Stephen Gilson
In an MXML component, one that does not contain the mx:Application tag, you cannot define a type selector, only a class selector. Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent: Thursday, May 19, 2005 2:06 PM To:

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

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

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Matt Chotin
Generally you specify a full URL as the rootURL (perhaps the path to your SWF which is Application.application._url). Say for example http://www.somewhere.com/dir/file.swf. The urls would be computed as follows: sub/bar.swf : http://www.somewhere.com/dir/sub/bar.swf /sub/bar.swf:

RE: [flexcoders] can I bind more that one checkbox to a send requ est?

2005-05-19 Thread Matt Chotin
Are you trying to pass a list of the ones that are checked or just one? Your changeThrusts method can simply store which checkboxes are selected and then you can build an array to pass to your web service for the query. If only one of those checkboxes is meant to be checked maybe you

RE: [flexcoders] passing variables using getURL?

2005-05-19 Thread Abdul Qabiz
Hi, You can pass variable to external script using getURL(...), getURL(..) sends all variable declared in current scope. Infact getURL(..) sends all variable declared, that means it sends unwanted stuff also. But I think, you can use LoadVars object for such kind of work. LoadVars gives more

RE: [flexcoders] HTML form replacement

2005-05-19 Thread Matt Chotin
Have you checked out HTTPService? Thatd probably be easiest. mx:HTTPService id=hs url=""> mx:request username{username.text}/username password{password.text}/password /mx:request /mx:HTTPService mx:TextInput id=username / mx:TextInput id=password / mx:Button

  1   2   >