[flexcoders] Bug? image (html) in textarea

2005-05-19 Thread rockmoyosa
I'm using An image tag in a textarea. an horizontal line, because is not supported. When I resize the textarea to a smaller height, The images are still visible below my textarea and if i'm scrolling u see the images also scrolling. It hust like text area is still the same size for images but not

[flexcoders] who have the experience of print preview in flex page

2005-05-19 Thread loveewind
hi: I know flex page can be printed, but don't know how to use the printjob actionscript to print preview page, who have such experience? thanks, Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this gr

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

2005-05-19 Thread Sreejith Unnikrishnan
Jexter, I did play around with that for a while ... could not make sense of what was happening ... especially the zoom scale ... Code below for u to try out! "http://www.macromedia.com/2003/mxml" width="100%" height="100%">                                                 Regards

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

2005-05-19 Thread JesterXL
...this sounds like turning stage scaling on.  For a test, try this in your main app:   Stage.scaleMode = "showAll".   I believe Flex has it set to "noScale", and thus uses the Flex containers to draw the change in size rather than have the SWF scale.  Try that, see if it works for you.   -

[flexcoders] Re: Lineseries and dataproviders?

2005-05-19 Thread svktiilikainen
Thank you, Ely!! Since the dataProvider property of the LineSeries object is not mentioned in the API docs I assumed it did not exist, which is of course my mistake. Sometimes the solution is too near.. As for the second part of my question, say I have a two-dimensional array : var array:Array

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

2005-05-19 Thread Matthew Shirey
Actually, I am working down a path that uses a canvas and dynamically adjusts the ScaleX and ScaleY properties based on the size of the application in the browser using the applications onResize event.  So far, the effect is exactly what I'm looking for.  Even the fonts are getting scaled correc

RE: [flexcoders] HTML form replacement

2005-05-19 Thread Matt Chotin
Have you checked out HTTPService?  That’d probably be easiest.         {username.text}     {password.text}         HTH, Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pixelcowboys Sent: Thursday, May 19, 2005 2:09 P

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 cont

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 sh

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

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 explained

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

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: http://www.macromedia.com/go/weblog

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 t

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

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

2005-05-19 Thread Matthew Shirey
I was afraid I hadn't explained the problem right... Setting to those just takes up the space, it doesn't actually scale the content larger.  It resizes the layout managers larger which results in a lot of unused white space for my application.  I need the contents to scale so if you make the w

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

2005-05-19 Thread JesterXL
Make the width and height of your application tag 100%...?  That's what I do to get full screen real-estate usage.  Decreasing margins on things helps a lot too.   - Original Message - From: Matthew Shirey To: flexcoders@yahoogroups.com Sent: Thursday, May 19, 2005 6:31 PM Subjec

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

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

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,

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

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

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: flexcoders@yahoogroup

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 within a > no hinting for "result" or "concurenncy" is provided. > Checking the Schema with a Schema-Browser results in that attributes > or sub-tags for are not provided. As I

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 On 5/17/05, Jae Hess <[EMAIL PROTECTED]> wrote: Not sure if you have heard the news:Announcing Flex Style Explorerhttp://www.markme.c

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 Configu

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

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

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 F

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

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 pe

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

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 Eclip

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

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

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

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: http://www.macromedi

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

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## http://www.macromedia.com/

[flexcoders] using the Style control tag

2005-05-19 Thread cnewroth55
not sure if anyone else knows this, but I tried to use the 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: LinkBar {some style stuf } however this is wrong and the error message was

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

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 tie

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## http://www.macromedia.com/2003/mxml";> Above code looks too low leve

RE: [flexcoders] E4X in Flex 2.0, part 1: Reading XML

2005-05-19 Thread Sho Kuwamoto
Ha ha.. :-) I was wondering why you were being so open about this stuff!   No harm done, and it's only a taste of some of the great stuff we're thinking about, guys! ;-)   -Sho From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon SmithSent: Tuesday, May 17, 2005

[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread hecubus_eh
I noticed that line in the documentation, but we wouldn't know what effect that would have on our existing application if we proceeded with the instructions. Without wanting to get into a heavy discussion about this, but I couldn't find any caveat in the install instructions or the release n

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 server.http://www.iterationtwo.com/nevis/Installati

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 Pie

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: flexcoders@yahoogroups.c

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,

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

[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@yah

[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

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: Regarding your second question...it would be easier to answer if

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] Re: Cairngorm 0.99

2005-05-19 Thread Steven Webster
> -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of reubenbrown13 > Sent: 19 May 2005 16:47 > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Cairngorm 0.99 > > While that is nice and all, I have these errors now: > > 5 Errors foun

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 haven’t tried this but see if you can run with it.  

[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 H:\Inetpub\wwwroot\flex\ca

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 u

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

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

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

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

[flexcoders] creating row in datagrid at runtime

2005-05-19 Thread shettyaditsathish
i need to create a row in an existing datagrid on an event and show the the 1st column of the newly created row in editable mode. 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 t

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

RE: [flexcoders] Flex on the Web

2005-05-19 Thread David Mendels
Hi, A) Many Flex apps are behind the Firewall B) Many Flex apps are not yet public (the product has only been on the market for a year, and it takes a while to build great things) C) Some examples: Go to http://www.sherwin.com/do_it_yourself/ and click on Color Visualizer. Go to Intelligent Finan

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

2005-05-19 Thread Dimitrios Gianninas
My thoughts exactly.   Dimitrios "Jimmy" Gianninas RIA Developer 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] 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:

Re: [flexcoders] Web Services and CF7

2005-05-19 Thread Dave Carabetta
On 5/19/05, dave buhler <[EMAIL PROTECTED]> wrote: > from: http://forta.com/blog/index.cfm?mode=c&catid=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 Fla

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 J2EE servlet spec does not specify that this token has to appear after the ? symbol and thus many other app servers handl

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

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

[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: {mail_Manager.listInbox.result} I want to check if a row has a cetain value in a cell. So iterate over the datagrid with: for( var j:Number=0; j < gr

RE: [flexcoders] Cairngorm 0.99

2005-05-19 Thread Dimitrios Gianninas
Yes correct... copy 'n' past error :)   Dimitrios "Jimmy" Gianninas RIA Developer 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

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

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

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

RE: [flexcoders] Web Services and CF7

2005-05-19 Thread Theodore E Patrick
Dave,   Awesome, thanks for these! I completely forgot to check Ben’s 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 A

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 a

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", myHand

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,   Acc

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

[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

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 hav

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Jeroen De Vos
Hi,   And what does mx.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.   http:

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 Prism

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 en

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

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Allen Manning
Jeff,   Thanks.   http://www.macromedia.com/2003/mxml">                      http://{getPageDomain()}/"/>        Allen   Allen Manning, Technical Director Prismix

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 wrote

RE: [flexcoders] Fully qualified URL

2005-05-19 Thread Allen Manning
Title: Fully qualified URL Hello Jeroen,   Below is an example of one way of doing it.   http://www.macromedia.com/2003/mxml">                      http://{getPageDomain()}/"/>          HTH, Allen  

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:   http://www.macromedia.com/2003/mxml" creationComplete='alert(mx.core.Application.application._url)'>     -abdul   From: flexcoders@yahoogroups.com [ma

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

R: [flexcoders] Cairngorm 0.99, JRun and Log4J

2005-05-19 Thread Paolo Bernardini
Thanks Alistair   Finally I’m able to see the cairngormstore example.   However I’m 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 don’t see the data.   This is w

RE: [flexcoders] Re: Cairngorm 0.99

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

[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@yahoogrou

  1   2   >