Re: [flexcoders] Flex on Mac

2007-05-12 Thread Brett
Definitely, I switched from Windows to Macs for about 5 years and have been extremely happy(although I do have to use windows everyday at work still). I think Macs basically make a perfect development platform, OS X is very solid and secure and runs well, a Flex, Apollo, Flash all run gre

[flexcoders] XMLRPC Web Service

2007-05-12 Thread Zeb
Can anyone give me an example of using an XMLRPC webservice with Flex 2? I need to be able to use methods like 'user.login', etc. Does Flex not support XMLRPC out of the box?? :(

[flexcoders] embeding swf file in java application

2007-05-12 Thread manas143_123
hi people i want to learn flex but i am not an web developer so how is it possibe to embed d swf file in java application i am using netbeans...actually i am working on some kind of network application..

Re: [flexcoders] XMLHTTPRequest in Flex instead of Javascript

2007-05-12 Thread James Ward
You can also use the HTTPService and integrate with JAAS pretty easily. We do this in the Meldware Flex based email client. Here are a few code snippets: >From Services.mxml: >From LoginDelegate.as: public function login(user:UserVO):void { var params:Object = new Object(); p

[flexcoders] Weird scrolling bug!

2007-05-12 Thread Abhishek Sil
Hi Guys, I'm working on a moderated chat app. in flex. I'm using an itemRenderer within a List to display a series of questions which the "expert" can choose to reply. Now this itemRendered consists of: "text" to display the question, "textInput" to allow the expert to reply to it and a "button"

[flexcoders] Where are the templates for the class files? I want to change the bracket placement

2007-05-12 Thread Manuel Saint-Victor
Good evening everyone. I'm looking for the templates that Flex Builder uses to create the class files? Can anyone advise me as to where that would be. I've Googled myself into oblivion about this. Mani

[flexcoders] Re: Flex crashes if no sound card present

2007-05-12 Thread Danko Kozar
Thanks, Doug! Btw I have been using a debug version of Flash player on this computer, so I can't say that error isn't supressed on the ordinary one.. --- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > Have you seen this thread? > > http://tech.groups.yahoo.com/grou

[flexcoders] Re: Error Handling on Computers with No Sound Hardware

2007-05-12 Thread Danko Kozar
--- In flexcoders@yahoogroups.com, "jpc14_99" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, "Paul DeCoursey" wrote: > > > > Maybe I'm a little naive, but wouldn't you just use a try/catch to > > suppress the error. > > > 1) I think that if Flash player handles issues such as

[flexcoders] Re: Font Size Issue in Rich Text Editor Component

2007-05-12 Thread iko_knyphausen
Thanks for clarifying. Yes I did note the tag, and that does not matter, as most browsers are "tolerant" towards unrecognized tags. The font size issue is sad though, because any other target platform than Flash, will interpret point sizes. Maybe a solution would be to have an optional property, s

Re: [flexcoders] Font Size Issue in Rich Text Editor Component

2007-05-12 Thread Daniel Freiman
This isn't a bug, it's by design. In flash, 1pt is rendered as 1px so there's not much of a point of making the distinction in the htmltext. Additionally, the HTML that flash outputs isn't true html. If you look through your output you'll probably see other tags that don't look right either (li

RE: [flexcoders] Flex Component Kit for Flash CS3

2007-05-12 Thread Lincoln Mitchell
I think this is related to me updating Eclipse 3.2. Because I created a new mxml file and got all the errors listed in post #60878 I will try to resolve this 1st and then see if the other errors still appear. Linc

Flash Player Security Forum (was Re: [flexcoders] Re: Load & Display Image from FileReference)

2007-05-12 Thread John Robinson
Initially I had a whole post asking questions about why this was the case (can't reference user-selected file without uploading/ downloading first) but I felt it was pretty OT for the flexcoders list (or probably flashcoders list for that matter). Does anyone know of a venue for discussing F

[flexcoders] binding chart data to getters

2007-05-12 Thread simonjpalmer
I have a bubble chart with a custom renderer which is a pie chart. I bind the chart to data which is an array of complex objects which themselves contain references to other data objects in my application. The data displayed on the chart does not come from the bound object but from the object t

Re: [flexcoders] output formats (excel/word)

2007-05-12 Thread John Robinson
Flex doesn't have any output formats or any of this functionality built in. I'd say build your front end in Flex, but continue to use CF for your file output. Simply send your data to a CFC that does the conversion and then allow the user to download (or whatever) the outputted file. John

Re: [flexcoders] uploading file flex -> servlet

2007-05-12 Thread Luis Eduardo
Sry, never mind. after searching with some more "faith" :) i discover the o'reilly servlet multipart API on http://servlets.com/cos/ that, with some black magic, did the trick! Luis Eduardo escreveu: > Hello, can some one send me just a bit of code regard of how to make a > servlet

Re: [flexcoders] toolTip type behavior for DataGridColumns?

2007-05-12 Thread Igor Costa
DJBrown The DataGrid Classes has three properties ( showDataTips,dataTipField and DataTipFunction) Here's an example of them using it. http://www.igorcosta.org/flex2/AdvancedToolTip_Package.zip Regards -- Igor Costa On 6/23/06, djbrown_rotonews <[EMAIL PROTECTED]> wrote: I'm wanting to

Re: [flexcoders] DataGrid dataTipFunction

2007-05-12 Thread Igor Costa
Why do you want another argument into the DatatipFunction? That's an thing on my concern you dont' have to use it, because the you already pass an Object wich can contain lot's of things. Regards -- Igor Costa On 1/2/07, graysonpierce <[EMAIL PROTECTED]> wrote: Hello, I was wondering i

Re: [flexcoders] setting toolTip of Tree Node

2007-05-12 Thread Igor Costa
Try to setup showDatatips="true" in your Tree component Best -- Igor Costa On 2/5/07, Greg Morphis <[EMAIL PROTECTED]> wrote: [related to the tree node rollOver message I started the other day..] I'm trying to set the toolTip of a tree node and running into problems. I'm not sure if it's a

Re: [flexcoders] DataTip on DataGrid doesn't support html?

2007-05-12 Thread Igor Costa
Actually Datagrid supports HTML, because the DataTips showed are derivated from toolTip of our core. Check this package I extended into the url bellow Maybe this will help you to find out how to use it. http://www.igorcosta.org/flex2/AdvancedToolTip_Package.zip This could be the end of Spide

[flexcoders] uploading file flex -> servlet

2007-05-12 Thread Luis Eduardo
Hello, can some one send me just a bit of code regard of how to make a servlet handle a fileupload coming from flex? To flex send the file appear to be ok... but my servlet simple appear to not know how to get the data of the image being uploaded. i already search and read a lot but unf

Re: [flexcoders] DataGrid Tooltips

2007-05-12 Thread Igor Costa
Steve If you're creating a custom toolTip you can't start using the property toolTip="" in blank You have to just add createToolTip But in your case I'd better advice you to using instead of toolTip use DataTip there's a property called DataTipFunction where you can put only the name of your m

Re: [flexcoders] Re: DataGridColumn showDataTips problem

2007-05-12 Thread Igor Costa
Robert here's an example http://www.adobe.com/2006/mxml";> --- Igor Costa On 2/23/07, Robert Chyko <[EMAIL PROTECTED]> wrote: Nope, no dataTipFunction is declared anywhere. -Original Message- *From:* fl

Re: [flexcoders] show data tips not working for datagrid

2007-05-12 Thread Igor Costa
Cashorali Here's an example http://www.adobe.com/2006/mxml";> Regards -- Igor Costa On 2/23/07, Cashorali, Tanya M. <[EMAIL PROTECTED]> wrote: I'm trying to get a certain field to show up because it is clipped

[flexcoders] How to make text to flow around image component?

2007-05-12 Thread aibo747
I want to make some text to flow (wrap) around image component. Please help.

Re: [flexcoders] dataTipFunction on DataGridColumn with custom itemRenderer?

2007-05-12 Thread Igor Costa
Todd Presuming on what Alex Harui said, here's how to procedure: And my function is defined like this: public function showDaysToolTip(obj:Object): String { trace("in showDaysToolTip"); return "testing"; } Regards. On 2/13/07, Todd Breiholz <[EMAIL PROTECTED]> wrote: I

[flexcoders] Accessing SWF file from a URL

2007-05-12 Thread gaurav . jain
Hi, I have a flex application and I am trying to set the source of SWFLoader as a URL of a SWF file. But while doing so I am getting following error: Error: SecurityError: Error #2047: Security sandbox violation. I had tried the same through Loader class as well. But the result is same. P

[flexcoders] Accessing SWF file from a URL

2007-05-12 Thread Gaurav Jain
Hi, I have a flex application and I am trying to set the source of SWFLoader as a URL of a SWF file. But while doing so I am getting following error: Error: SecurityError: Error #2047: Security sandbox violation:. I had tried the same through Loader class as well. But the result is

[flexcoders] Re: Can I debug a flex app running in the browser?

2007-05-12 Thread Cosma
--- In flexcoders@yahoogroups.com, "meteatamel" <[EMAIL PROTECTED]> wrote: > > Did you see James Ward's "Debug Flex and Java together" blog? > That post is about setting up a FDS project, I suppose that things are a little different with plain client-only flex project.. anyway I'll give it a try,

[flexcoders] Accessing SWF file from a URL

2007-05-12 Thread Gaurav Jain
Hi, I have a flex application and I am trying to set the source of SWFLoader as a URL of a SWF file. But while doing so I am getting following error: Error: SecurityError: Error #2047: Security sandbox violation:. I had tried the same through Loader class as well. But the result is

[flexcoders] Re: Support movie format other than flv?

2007-05-12 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, "ad9798" <[EMAIL PROTECTED]> wrote: > > Is there way to make Apollo to play movie files other than flv format? > Thinking about creating a simple media player with Apollo and I would > love to make that player support avi or other format. Can we use > DirectShow w