[flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-06 Thread fb6668
I use a little ole' MacBook for most of my development. All my .NET stuff runs on my Windows partition using Parallels and Virtue Desktops, faster than my fully-fledged PC lappy, and then enerything else is done on OSX. I was a little dubious at first when this configuration was advised to me, but

[flexcoders] LCDS: java.util.Date is not a supported type

2008-06-06 Thread benjidudu
I have a strange error with LCDS 2.5.1 I am using Microsoft Sql Server 2005 Express with Microsoft SQL Server 2005 JDBC Driver 1.2 When I do an update with the SQL assembler, I have the following error: 06/06 07:35:08 user [Flex] SQL Assembler jdbc exception on operation=update-item

Re: [flexcoders] know if .browse() was executed or not

2008-06-06 Thread David Pariente
I really think i didnt explain the real problem properly. i did what u said without any problem. studied all documentation about fileReference too. The point is that, IN ANOTHER POINT OF THE CODE, i wanna send the files. the on_select is not useful for me. i will not send anything on_select,

Re: [flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-06 Thread David Pariente
select name from OS order by QUALITY desc; name linux macOS ... ... Vista, XP SP3...etc... now, i think best option for working on media and have no hardware problems would be macOS, so i recommend u to make the switch. Of course, u will miss many things from MS world, but also will get many

Re: [flexcoders] hiding a cell within a datagrid dynamically

2008-06-06 Thread Manu Dhanda
Here it is: mx:DataGrid id=mygrid dataProvider={initDG} mx:columns mx:DataGridColumn id=grant_year dataField=grant_year/ mx:DataGridColumn id=cashoutshares dataField=cashoutshares itemRenderer=mx.controls.CheckBox visible={!grant_year=='somevalue' implement ur logic here}/

Re: [flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-06 Thread David Pariente
About that, i used to read an article about price comparing between DELL and MACS... They took the most powerfull Mac, and looked for an equal DELL. Equal i mean the same type of data bus speed, same ammount and memory speeds, same processor models (4 processors actually), etc. So, exactly the

[flexcoders] Re: Itemrenderer combo's dataprovider from ModelLocator???

2008-06-06 Thread Tim Hoff
Hey Jerry, No, referencing the model from anywhere in your application is the power of MVC. Most times you can get what you need from data or listData in an itemRenderer. But, there's nothing keeping you from using the model any way that you need. -TH --- In flexcoders@yahoogroups.com,

[flexcoders] initialize a fileReference object

2008-06-06 Thread David Pariente
Hello, my project is almost finished, but i'm new to flex and found a problem i don't know how to solve... I need to initialize a fileReference object. This object is on a form, and everytime i get inside the form i need the object like new, with no content at all. i tried: var

[flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-06 Thread Tim Hoff
I don't knoow Anotole, but you probably have blinders on. I'm as successful, if not more than you, and a Vaio works just fine. I'm sure if power builder was on the block there would be different comments. Please all, stay on the Flex thread. -TH --- In flexcoders@yahoogroups.com, Anatole

[flexcoders] DND, change default effect, registering custom DragProxy in DragManager. How?

2008-06-06 Thread ndkamp
I need to change the default Zoom/Move effect at the end of a drag operation. I traced into the DND-Classes and found that the effects are hardcoded right into the mouseUpHandler of the DragProxy-Class - a internal helper class for the DragManager. Overwriting the handler would be a way to go but

[flexcoders] PDF into Flex

2008-06-06 Thread Dels
Hi. I'm very new to Flex. Trying to play around with it at the moment. I'm not so good with my ActionScript. But i'm well conversed with html :). I have a HDividedBox. on the left is the space for me to embed a pdf file. on the right I have an Accordion. The accordion is filled with text

Re: [flexcoders] Re: Flex and CFC issues

2008-06-06 Thread Paul L. Cathcart III
Thanks for the heads up Don. It looks like my issue was in my application.cfm file. It seems there was a redirect if you didn't have a Session.ID set and that is why it wasn't getting to my CFC. Now when I log into the server apps, it's working perfectly. Definitely won't forget that in the

[flexcoders] Display datatips from lookup field

2008-06-06 Thread kirilminevgroups
I have a feature build in to my Flex Plots chart that searches my data points by given value and than it select the points on chart. This part works fine, but also need to display the datatips associated with this data point and let them remain opened. Any help!!! will very much appreciated.

[flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-06 Thread stephen.smithstone
I would say take the plunge and get a decent mac either a Macbook pro or PowerMac , then run VMWare Fusion as a virtual machine and do you .net dev in that environment you can run it as a guest inside of your OS X env and either do unity view which basically makes you windows app native on the os

[flexcoders] Scale up and down Y axis

2008-06-06 Thread kirilminevgroups
I have a chart on which I am plotting numerous points and in some cases I need to be able to zoom in and out the y-axis to spread out the values if they are too close and too many on the same region. Any suggestion, direction on that manner? Any input will greatly appreciated. Thanks.

Re: [flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-06 Thread Ralf Bokelberg
If you want to use Windows on Macbooks you also need an external keyboard and a mouse maybe. Not the most convenient package, if you need to travel. Cheers Ralf.

Re: [flexcoders] know if .browse() was executed or not

2008-06-06 Thread Jon Bradley
On Jun 6, 2008, at 4:26 AM, David Pariente wrote: The point is that, IN ANOTHER POINT OF THE CODE, i wanna send the files. the on_select is not useful for me. i will not send anything on_select, just put a pair of lines of code there. My opinion is that you are thinking about this too

RE: [flexcoders] initialize a fileReference object

2008-06-06 Thread Rick Winscot
You really should take a look at the livedocs for FileReferenceList for the recommended path for acquiring file references. http://livedocs.adobe.com/flex/3/langref/flash/net/FileReferenceList.html#includeExamplesSummary Also… you have something interesting going on with your variable

Re: [flexcoders] PDF into Flex

2008-06-06 Thread Jon Bradley
On Jun 5, 2008, at 10:17 PM, Dels wrote: My question is, can I embed the PDF into the first half of the HDividedBox? if it's a yes, how do I do it? Embed a PDF file? You can't put PDF files in Flex (Flash) - unless I'm missing something. You can use Flash Paper though... -jon

[flexcoders] Re: hiding a cell within a datagrid dynamically

2008-06-06 Thread anthony_morsey
Thanks, but this technique seems to work for all values in the column, not just the value in each individual row. It seems that if one of the values for grant_year in a column meets the condition, then all checkboxes are either hidden or visible. I want to do this row by row and turn visible on

[flexcoders] Reflect column sorting in AdvancedDataGrid

2008-06-06 Thread Dennis van Nooij
I'm using an AdvancedDatagrid where my sorting is done on the server (total result set is bigger than the list shown at client). So when I click a header, sort info is added to the request and result comes back sorted correctly. My question is: How can I provide feedback on how the results are

[flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-06 Thread valdhor
Something that I have always noted is that the resale value of used Mac's tends to be a lot higher than a PC. After two years you can generally get 50% of what you paid back when you sell a Mac. With a PC, that value drops to 30% or less.

OT RE: [flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-06 Thread David Kramer
Uh, this is Major OT. (And I can't get one decent answer, or even non-vague guidance, to slightly OT code design patterns for localization/globalization/skinning?) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Friday, June 06, 2008 6:02 AM To:

[flexcoders] Re: PDF into Flex

2008-06-06 Thread valdhor
You can if you are using AIR. From the manual... AIR applications can render not only SWF and HTML content but also PDF content. AIR applications render PDF content using the HTMLLoader class, the WebKit engine, and the Adobe Reader browser plug-in. --- In flexcoders@yahoogroups.com, Jon

[flexcoders] Flex for desktop application

2008-06-06 Thread p.prasha
Hi Friendns, Is it possible to use flex for desktop application. If i have a java application(desktop application not web application) can i use flex as front end for it. I mean to say can i replace applet with flex. I have worked on flex for web application and as you know it uses HttpService to

[flexcoders] Re: VerifyError: Error #1063: Argument count mismatch on ... ResourceBundle().

2008-06-06 Thread Dan
Gordon, Thanks for your reply. Could you please help me understand how this might be happening? Are there for instance some settings within Eclipse/Flexbuilder that I could verify? --Dan --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: The constructor for the

Re: [flexcoders] Re: PDF into Flex

2008-06-06 Thread Jon Bradley
On Jun 6, 2008, at 9:17 AM, valdhor wrote: You can if you are using AIR. From the manual... AIR applications can render not only SWF and HTML content but also PDF content. AIR applications render PDF content using the HTMLLoader class, the WebKit engine, and the Adobe Reader browser plug-in.

[flexcoders] How should we access our Flex apps from the browser?

2008-06-06 Thread Dan
Hello, It's not clear to me how we should access our Flex apps from the browser. It appears that accessing them using .swf, .mxml and .html all work but each with slightly different effects. For example, I can access a Flex application helloWorld using the following URLs. They all work (to

[flexcoders] Problems with showDataEffect trigger looping on Chart Seris in Flex 3

2008-06-06 Thread mgrayfmr
Has anyone run into this issue in Flex 3? The showDataEffect is looping endlessly, causing a transtion to run over and over again. I have two charts, one a LineChart and one a ColumnChart. On the series of each, I have set the showDataEffect={nameOfEffectHere} For the LineChart, the effect is

[flexcoders] Object name from a mouse click

2008-06-06 Thread markgoldin_2000
I am overriding mouseDoubleClickHandler event for a custom dataGrid. How can I get the actual object name (not a class name) when I dblclick? Thanks

[flexcoders] Re: Getting PropertyChangeEvent to work properly

2008-06-06 Thread superbokbok
Hi Amy, I created the bindable event as suggested but still nothing :( Is there a sample usage of the PropertyChange class that I could look over to get a good sense of how to use this correctly? Again, I can get the event to work when I create a custom event and dispatch that to one of the

Re: [flexcoders] How should we access our Flex apps from the browser?

2008-06-06 Thread Paul Andrews
The swf file is what is run by the flash player plugin, it's not usual to run this directly in the browser. The mxm file is the source used within your application - it won't be usefull to look at this in a browser. The html file checks the users environment for the flash player and calls your

Re: [flexcoders] How should we access our Flex apps from the browser?

2008-06-06 Thread Nikunj Shroff
you must deploy your application on some server. then you can access your access your html on url. moreover your url must have a port as well. for ex: localhost:8080 Regards, Nikunj --- On Fri, 6/6/08, Dan lt;[EMAIL PROTECTED]gt; wrote: From: Dan lt;[EMAIL PROTECTED]gt; Subject: [flexcoders]

[flexcoders] Re: How should we access our Flex apps from the browser?

2008-06-06 Thread Dan
Paul, Thanks for your reply. When I access the .mxml file through my browser, it doesn't serve up the source. Instead, it serves up a functioning Flex application. Per your advice however, I'll focus on accessing the application via it's HTML wrapper. --Dan --- In flexcoders@yahoogroups.com,

Re: [flexcoders] How should we access our Flex apps from the browser?

2008-06-06 Thread Fidel Viegas
On Fri, Jun 6, 2008 at 4:02 PM, Nikunj Shroff [EMAIL PROTECTED] wrote: you must deploy your application on some server. then you can access your access your html on url. moreover your url must have a port as well. for ex: localhost:8080 You only use a port if it isn't the default port 80.

Re: [flexcoders] Flex for desktop application

2008-06-06 Thread Fidel Viegas
On Fri, Jun 6, 2008 at 2:30 PM, p.prasha [EMAIL PROTECTED] wrote: Hi Friendns, Is it possible to use flex for desktop application. If i have a java application(desktop application not web application) can i use flex as front end for it. I mean to say can i replace applet with flex. I have

Re: [flexcoders] Re: How should we access our Flex apps from the browser?

2008-06-06 Thread Paul Andrews
It's not Flex 1.5 is it? Paul - Original Message - From: Dan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, June 06, 2008 3:39 PM Subject: [flexcoders] Re: How should we access our Flex apps from the browser? Paul, Thanks for your reply. When I access the .mxml

[flexcoders] Math.abs() Limitation?

2008-06-06 Thread Daniel Freiman
According to my code the following statement returns true. Math.abs(int.MAX_VALUE - 1290) == Math.abs(int.MAX_VALUE - 1284) I tried converting everything to type Number that didn't help. Getting ride of the abs() makes the calculation work correctly but then I don't have the absolute value.

[flexcoders] Re: Unable to Display Hindi

2008-06-06 Thread tanarijay
I deleted the original file, created a new one using WinXP notepad, saving it as UTF-8. I then opened the file and added my name/value pairs using Hindi for the value's. Notepad displayed the Hindi characters as squares as well. Perhaps this is a Windows XP environment issue, rather then a

[flexcoders] Re: How should we access our Flex apps from the browser?

2008-06-06 Thread Dan
Actually it is running on port 7001 (Weblogic default). I simply chose to omit it from the example URLs because I didn't think it was pertinent. --- In flexcoders@yahoogroups.com, Fidel Viegas [EMAIL PROTECTED] wrote: On Fri, Jun 6, 2008 at 4:02 PM, Nikunj Shroff [EMAIL PROTECTED] wrote:

[flexcoders] Re: How should we access our Flex apps from the browser?

2008-06-06 Thread Dan
Nope, Flex 3. --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: It's not Flex 1.5 is it? Paul - Original Message - From: Dan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, June 06, 2008 3:39 PM Subject: [flexcoders] Re: How should we

[flexcoders] Re: Unable to Display Hindi

2008-06-06 Thread tanarijay
I embedded the Microsoft San Serif (True Type) font in to my app changed my controls to use it using the font family attribute. The font did change when I ran the app, but Hindi glyphs still showed up as squares. English French still display correctly. --- In flexcoders@yahoogroups.com,

[flexcoders] feedback on RIA social networking site

2008-06-06 Thread John Moore
I just launched http://www.riaspot.com as a social networking site. It's totally non-commercial, just a way to connect to people in the RIA world. It's still beta - no content, but I'd love any feedback from fellow flexperts. It also doesn't cost anything to sign up, if you so choose. Thanks

[flexcoders] Re: Using AdvancedDataGridRendererProvider for AdvancedDatagrid

2008-06-06 Thread Adrian Gillette
Tom, Thanks for replying. I think found a workable solution to my problem, which was the need to have the itemrenderer know its position it was in relation to the hierarchicalCollectionView that is used by an advancedDataGrid. I was trying to use an itemrenderer that would hide a remove button

[flexcoders] Flash player vs Vista: security issues?

2008-06-06 Thread Lorenzo Benvenuti
Hi, has someone experienced issues using FileReference.download on Vista? A customer is unable to download files from our app. Actually he can't open the browser window that allows to choose the destination of the file: it's like the OS is denying the access to the file system. Everything

Re: [flexcoders] Re: How to expose Hibernate 'non' conventional beans into flex apps via remoting

2008-06-06 Thread Jens Halm
Robert, I am going to try out the DTO/Assembler approach (Something tells me it is worth the initial investment). Any pointers, samples, whatever will be great. If you dont have anything, no worries, will figure it out. Thank you. And again, great Blog...! Will be adding my experience

[flexcoders] Re: JAXB for actionscript

2008-06-06 Thread gianlucavatinno
cool i'm finding for a solution like this. can you send me the project please. thanks a lot --- In flexcoders@yahoogroups.com, Everson Alves [EMAIL PROTECTED] wrote: Hello, I haven´t seen any but i´ve written a air application that gets Java code generated with JAXB and creates the

[flexcoders] How to change the Width and Height of drawHighlightIndicator function?

2008-06-06 Thread flexawesome
Hey, I was working on the customize renderer for the TileList. I would like override the drawHighlightIndicator function to change the size of highlighting. For example: my pic size was 40x60 and the renderer size was 50x80, I was going to change the highlighting size to 45 x 65 ( adding 5pix

RE: [flexcoders] Math.abs() Limitation?

2008-06-06 Thread Alex Harui
What if you use temporary variables? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Freiman Sent: Friday, June 06, 2008 9:09 AM To: flexcoders Subject: [flexcoders] Math.abs() Limitation? According to my code the following

RE: [flexcoders] How to change the Width and Height of drawHighlightIndicator function?

2008-06-06 Thread Alex Harui
What is pic? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Friday, June 06, 2008 9:48 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to change the Width and Height of drawHighlightIndicator function?

RE: [flexcoders] Re: VerifyError: Error #1063: Argument count mismatch on ... ResourceBundle().

2008-06-06 Thread Gordon Smith
Where are your resources coming from? Are you compiling them from .properties files? Or linking against resource bundle SWCs? Where did the SWCs come from? Were they compiled with Flex 2? Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com

RE: [flexcoders] Object name from a mouse click

2008-06-06 Thread Gordon Smith
What do you mean by the actual object name? The 'id' that you specified in MXML? And what object are you talking about? A component inside your item renderer? Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE: [flexcoders] Math.abs() Limitation?

2008-06-06 Thread Gordon Smith
What do you get when you trace out the folllowing values? int.MAX_VALUE - 1290 Math.abs(int.MAX_VALUE - 1290) int.MAX_VALUE - 1284 Math.abs(int.MAX_VALUE - 1284) Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: How to change the Width and Height of drawHighlightIndicator function?

2008-06-06 Thread flexawesome
pic is the picture in my itemRenderer, here is my itemRenderer for the tilelist, this renderer will be used for other tilelist. So, I would like to get the image size dynamically in my customize TileList, uses drawHighlightIndicator function to set the highlighting 5 more pix height and width.

[flexcoders] Re: Object name from a mouse click

2008-06-06 Thread markgoldin_2000
objDG = new myDG(); I want to know objDG. I have a number of GDs based on the same class. Based on objDG I need to run different parts of my code. --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: What do you mean by the actual object name? The 'id' that you specified

[flexcoders] adding images to a panel

2008-06-06 Thread sudha_bsb
Hi, I have a long horizontal panel. I want to add images to it at a particular position for each image. Say I have a panel of width 250 and height 50, with x as 0 and y as 0 I want to add images at (0,0) (50,0), (150,0), (200,0) Setting the x and y for images is not helping. for(var i:int

Re: [flexcoders] Re: How should we access our Flex apps from the browser?

2008-06-06 Thread Paul Andrews
So, if you provide a url where the file is an .mxml file to the browser, it runs your application - you don't see the source file? Paul - Original Message - From: Dan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, June 06, 2008 5:33 PM Subject: [flexcoders] Re: How

[flexcoders] Re: adding images to a panel

2008-06-06 Thread Tim Hoff
Hi Sudha, A Panel container uses relative positioning. For absolute positioning, use a Canvas. -TH --- In flexcoders@yahoogroups.com, sudha_bsb [EMAIL PROTECTED] wrote: Hi, I have a long horizontal panel. I want to add images to it at a particular position for each image. Say I have a

RE: RES: [flexcoders] Using CSS with custom item renderers

2008-06-06 Thread Stephen Gilson
One more note on this one: Renderers have their TypeSelectors blocked for the styles: backgroundColor borderStyle borderStyle is blocked because DataGrid/List has a borderStyle and if you put a container in as your renderer, it would pick up that borderStyle by default. Similarly,

[flexcoders] Re: adding images to a panel

2008-06-06 Thread Tim Hoff
Sorry Sudha, I've never done this, but you can also set layout=absolute on a Panel. oops. -TH --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Hi Sudha, A Panel container uses relative positioning. For absolute positioning, use a Canvas. -TH --- In

[flexcoders] DataGrid Item Editor Question

2008-06-06 Thread Dan Vega
I have this data grid that holds a list of files. These files are fileReferences that are selected by a user browsing the system. After the select a file the data shows the name/ext/size. What I want is a 4th column for the user to select a value from the drop down. I get an error with the code

Re: [flexcoders] Re: #2038: File I/O Error only in firefox

2008-06-06 Thread Dennis Falling
I finally got around to implementing the fix and am having issues on the server... It basically is thinking that the ;jsessionid... is part of the command name being called: UnsupportedCommandException: cmd 'uploadfile;jsessionid=4913B7A92119CA91D683D8F884829475' is not supported. Anyone know a

[flexcoders] Re: adding images to a panel

2008-06-06 Thread sudha_bsb
Thanks a lot Tim Sudha. --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Sorry Sudha, I've never done this, but you can also set layout=absolute on a Panel. oops. -TH --- In flexcoders@yahoogroups.com, Tim Hoff TimHoff@ wrote: Hi Sudha, A Panel

[flexcoders] setting fillcolor with actionscript and stylename

2008-06-06 Thread netdeep
I have a panel component: mx:Panel id=panel styleName=gradientBgrd mx:Style .gradientBgrd { borderStyle: applicationControlBar; } /mx:Style And I want to update the fillColors in actionscript: panel.setStyle(fillColors, [0xFF, 0x00]); but this

[flexcoders] Re: setting fillcolor with actionscript and stylename

2008-06-06 Thread Tim Hoff
Hi, fillColors is not a supported property (style) for a Panel. Unless you draw your own gradiant background with a programatic skin (borderSkin) or use a background image, you're going to be stuck with a solid backgroundColor on a container; except the Application tag. -TH --- In

RE: [flexcoders] DataGrid Item Editor Question

2008-06-06 Thread Alex Harui
The answer depends on what you plan to do with the rating? Are you storing the rating somewhere? Sending it to the server? Normally, you will need to keep track of that field somewhere on the client and the best place is in your data, so adding a field to FileReference via subclassing or

RE: [flexcoders] Re: How should we access our Flex apps from the browser?

2008-06-06 Thread Tracy Spratt
Dan, unless you are using the LCDS web tier compiler, or the Apache equivalent, what you are describing is pretty much impossible. The browser cannot interpret mxml. But calling the html wrapper is the normal way to access a flex app through a browser. Tracy

Re: [flexcoders] Math.abs() Limitation?

2008-06-06 Thread Daniel Freiman
I figured it out. The trace made it obvious (as opposed the debugger which is what I was previously using). I was using Number.MAX_VALUE, not int.MAX_VALUE. Number.MAX_VALUE doesn't have enough precision to handle what I was trying to do. Thanks, - Daniel Freiman On Fri, Jun 6, 2008 at 2:29

Re: [flexcoders] DataGrid Item Editor Question

2008-06-06 Thread Dan Vega
In the end I want to post the data to a form. I already have a working model that uploads file to ColdFusion but I want to be able to pass additional data as well. If I understand you correctly I should create a new data type that extends FileReference and just add to it what i need? Dan On Fri,

[flexcoders] Flex 2 Development on Flex 3

2008-06-06 Thread Varun Shetty
Hi, I want to use some flex 3 builder IDE features and my current project is developed in Flex 2. Can I port my application (Without any changes) and use Flex 3 IDE. I believe I will have to use backward compatibility flags to do this.

RE: [flexcoders] DataGrid Item Editor Question

2008-06-06 Thread Alex Harui
Yes, or aggregate. It is more or less up to you. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan Vega Sent: Friday, June 06, 2008 2:51 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] DataGrid Item Editor Question In

[flexcoders] Crossdomain Policy Problems

2008-06-06 Thread Erin Wentworth
Hiyas, Per updating to the new flash player; my server admin and I have been having a heck of a time trying to get the new crossdomain policy working. Right now we don't need any security on the policy, since it's being called from two internal domains. The file itself is residing in the

[flexcoders] Crossdomain Policy Problems

2008-06-06 Thread Erin
Hello, Per updating to the new flash player; my server admin and I have been having a heck of a time trying to get the new crossdomain policy working. Right now we don't need any security on the policy, since it's being called from two internal domains. The file itself is residing in the root

[flexcoders] Flex Unload SWFLoader issues

2008-06-06 Thread Ben Reed
Hi guys, I have just today signed up with this mailing list after stumbling across an issue I cannot resolve! Seems to be a flaw with the SWFLoader in Flex 3. Basically my problem is this, I have to create a youtube player for a client and am using the wrapper classes from martin legris to aid

[flexcoders] Re: How can i customize grouping row renderer in AdvancedDataGrid ?

2008-06-06 Thread gregolux
Brilliant! But I had to specify a depth so that the renderer only affects the group items but not the leaf nodes: mx:rendererProviders mx:AdvancedDataGridRendererProvider columnIndex=0 columnSpan=0 depth=1

Re: [flexcoders] know if .browse() was executed or not

2008-06-06 Thread Alberto Brealey-Guzmán
On Fri, Jun 6, 2008 at 2:26 AM, David Pariente [EMAIL PROTECTED] wrote: i tried this, but crashes when file is not selected: if (myFileReference.name.length0) { myFileReference.upload() } It raises a runtime error because if you haven't selected a file fileReference.name is null. you should

[flexcoders] Loading arial.ttf style at run time

2008-06-06 Thread pratikshah83
Hi , I would like to know what would be the best way to include the arial.ttf font at runtime. As currently its embedded which increases the swf size by 100Kb. I have found out a way but would like to know if there is any other better way of doing it, or this one is appropriate.

[flexcoders] webservice e4x-result can not be filtered??

2008-06-06 Thread mariovandeneynde
Greetings! I have the following situation: [Application] ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=this.croplifedata.getBronnen.send () mx:Script ![CDATA[ import

Re: [flexcoders] Re: Unable to Display Hindi

2008-06-06 Thread Paul Hastings
tanarijay wrote: I embedded the Microsoft San Serif (True Type) font in to my app changed my controls to use it using the font family attribute. The font did change when I ran the app, but Hindi glyphs still showed up as squares. English French still display correctly. it might help if you

Re: [flexcoders] hiding a cell within a datagrid dynamically

2008-06-06 Thread Manu Dhanda
Ok, one more idea, but not sure about it's performance. Just use a viewstack with your custom itemrenderer and use a text component to implement your blank box logic, keeping the text=. Here is my idea: mx:DataGrid id=mygrid dataProvider={initDG} mx:columns mx:DataGridColumn

Re: [flexcoders] webservice e4x-result can not be filtered??

2008-06-06 Thread Douglas Knudsen
why? use e4x, eh? have a look at http://livedocs.adobe.com/flex/3/langref/XML.html there are examples at this URL of searching/matching using e4x DK On Fri, Jun 6, 2008 at 3:57 PM, mariovandeneynde [EMAIL PROTECTED] wrote: Greetings! I have the following situation: [Application] ?xml

[flexcoders] Call component for String name

2008-06-06 Thread Fernando Lobos
hi, i try to call a component titlewindows with you name but in string example var object1:Object Object.name = frm_titlewindows_sales puWin = PopUpManager.createPopUp(this, Object, true);

RE: [flexcoders] webservice e4x-result can not be filtered??

2008-06-06 Thread Tracy Spratt
I always advise working up complex expressions slowly, tracing toXMLString() at each step to be sure you are still going correctly. private function photoDataHandler(event:ResultEvent):void{ var xmlResult:XML =XML(event.result) trace(xmlResult.toXMLString()); var xlTemp:XMLList =

RE: [flexcoders] Crossdomain Policy Problems

2008-06-06 Thread Tracy Spratt
I think you will need that new thingy, hold on...yeah, site-control permitted-cross-domain-policies=master-only/ And maybe: allow-http-request-headers-from domain=* headers=* / I'm clucking fooless about what they mean, and you probably don't want so many * in a production environment, so

[flexcoders] Re: How to change the Width and Height of drawHighlightIndicator function?

2008-06-06 Thread flexawesome
is it possible to retrieve the content information( width, height, x, y) inside of renderer? Cheers --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: pic is the picture in my itemRenderer, here is my itemRenderer for the tilelist, this renderer will be used for

[flexcoders] Re: hiding a cell within a datagrid dynamically

2008-06-06 Thread Tim Hoff
Here's another way: mx:DataGrid id=mygrid dataProvider={initDG} mx:columns mx:DataGridColumn id=grant_year dataField=grant_year/ mx:DataGridColumn id=cashoutshares dataField=cashoutshares mx:itemRenderer mx:Component

Re: [flexcoders] DataGrid Item Editor Question

2008-06-06 Thread Dan Vega
Alex, That worked out great! Thanks for the tip.. Dan On Fri, Jun 6, 2008 at 7:05 PM, Alex Harui [EMAIL PROTECTED] wrote: Yes, or aggregate. It is more or less up to you. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Dan

Re: RES: [flexcoders] Using CSS with custom item renderers

2008-06-06 Thread Amy
--- In flexcoders@yahoogroups.com, Stephen Gilson [EMAIL PROTECTED] wrote: One more note on this one: Renderers have their TypeSelectors blocked for the styles: backgroundColor borderStyle borderStyle is blocked because DataGrid/List has a borderStyle and if you put a container

[flexcoders] Back-button Help

2008-06-06 Thread Laila Towailib
I need to create a back button in my Application, but I don't know how !! any help with that ? My application contains 3 custom components. All of them are dataGrids. Each components is inside a state !