Re: [flexcoders] flex not displaying JPEG images

2008-09-17 Thread Paul Hastings
Alex Harui wrote: Could the higher DPI just be hitting the 2880 pixel limit more easily? perhaps except the 96DPI images i created in FW of the same dimensions (500x375) also croaked flex.

Re: [flexcoders] flex not displaying JPEG images

2008-09-17 Thread Paul Hastings
Doug McCune wrote: You could try reading the raw bytes of the JPEG and actually extracting the thumbnail if it's embedded (depending on what you're doing that yeah somebody already tried reading the raw image bits in, still hung. could actually be a huge performance boost if all you need is

Re: [flexcoders] flex not displaying JPEG images

2008-09-17 Thread Josh McDonald
Have you opened the images in your browser? They may be in CMYK, or in 16 bits per channel. On Tue, Sep 16, 2008 at 6:39 PM, Paul Hastings [EMAIL PROTECTED]wrote: we have an app that manages (among other things) almost 10k images. works a treat but a few days ago we had the app hang after

Re: [flexcoders] flex not displaying JPEG images

2008-09-17 Thread Paul Hastings
Alex Harui wrote: Could the higher DPI just be hitting the 2880 pixel limit more easily? i dug thru the old images w/a finer tooth comb we have many w/300DPI 1600x1200 (from microscopes w/digital cameras lashed on top), many also had embedded thumbnails. this makes me think perhaps another

Re: [flexcoders] flex not displaying JPEG images

2008-09-17 Thread Paul Hastings
Josh McDonald wrote: Have you opened the images in your browser? They may be in CMYK, or in 16 bits per channel. yes we can open the images in FF chrome. somebody also confirmed sRGB 8bits/channel.

Re: [flexcoders] MXMLC voodoo for custom components that take itemRenderer=package.ClassName

2008-09-17 Thread Josh McDonald
Just to confirm for the list, the voodoo is definitely attached to parameters of type IFactory :) -Josh On Wed, Sep 17, 2008 at 2:37 PM, Josh McDonald [EMAIL PROTECTED] wrote: I'll try it out soon and let you know if that's it :) On Wed, Sep 17, 2008 at 2:35 PM, Matt Chotin [EMAIL

[flexcoders] Re: Multiple webservice calls

2008-09-17 Thread florian.salihovic
Thanx for the info, i'll look deeper into the informations rigt after sending this post (i would appreciate if you could post some further informations). @Tracy By it didn't seem to work i meant that the ready property was false after sending a request. By concurrentyl i mean having one Web

Re: [flexcoders] Re: Multiple webservice calls

2008-09-17 Thread Josh McDonald
IIRC, you can only send one request per frame, so queue up your next one with a callLater(), or I think there's an request dispatched event of some sort you can listen for as well. -Josh On Wed, Sep 17, 2008 at 4:55 PM, florian.salihovic [EMAIL PROTECTED] wrote: Thanx for the info, i'll

[flexcoders] Re: Preventing cutpaste in Flex3 application

2008-09-17 Thread Dmitri Girski
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Easy: Sorry Steve, can't be done, it's a browser plugin. You'll have to try *managing* your people. Yeah, this is 100% Apple solution. You don't need it , anyway! :) Cheers, Dmitri.

RE: [flexcoders] IOException on DataService closing

2008-09-17 Thread kcCedrics
Hi Seth, thanks for your answer. The thing I don't understand is that error doesn't appear when I used LCDS 2.5!! it appears just since I use the 2.6 version. So, is there any way to catch this exception?? or maybe there's another way to disconnect a channel from DataService? Cédric -- View

Re: [flexcoders] UI Prototype Tool

2008-09-17 Thread Tom Chiverton
On Tuesday 16 Sep 2008, Rajan Jain wrote: I just wanted to know which tool do you use to prototyping the application before actually start coding in flex? Balsamiq -- Tom Chiverton Helping to seamlessly grow collaborative products This

Re: [flexcoders] Re: Preventing cutpaste in Flex3 application

2008-09-17 Thread Tom Chiverton
On Tuesday 16 Sep 2008, Dmitri Girski wrote: Do you need any more clues? Or use-cases how you call it. Umm, yes ? Cut and paste is one of the great GUI tools, and everyone expects it. Witness the poor UX on (say) the iPhone which inexplicably has no support for that. -- Tom Chiverton Helping

[flexcoders] Re: LCDS data serialization frozen

2008-09-17 Thread jardillier
I'm using RTMP. I turned the log like : ... filters pattern*/pattern /filters ... if the problem occurs again i hope that it will be catch. I will come back for results

[flexcoders] Datagrid itemEditorInstance problem

2008-09-17 Thread bhaq1972
When I click between cells on my datagrid (btw this doesn't always happen), the value of the existing cell moves to the next cell's itemEditorInstance I click on. eg if I click on column1, row2 value='A', i then click on column4 row2 the itemeditorInstance shows 'A' but what it should show

[flexcoders] Disabled javascript + flash player detection

2008-09-17 Thread kanu kukreja
what would happen if a user had Javascript disabled, and a version of Flash too early for Flex to work? -Kanu Unlimited freedom, unlimited storage. Get it now, on http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

[flexcoders] Re: Preventing cutpaste in Flex3 application

2008-09-17 Thread Dmitri Girski
Well, sometimes you have to restrict users from doing something. Besides all possible greatest technologies available. And yes, managing people is great as well (as per Josh's comment). I wonder how it is going to be enforced. KGB? Cheers, Dmitri. --- In flexcoders@yahoogroups.com, Tom

[flexcoders] Using property placeholders in services-config.xml

2008-09-17 Thread Sebastien ARBOGAST
My Flex application uses AMF remoting to connect to my PHP server. The URI of the AMF endpoint is hardcoded in services-config.xml and I would like to change that.Is it possible to use property placeholders with Flex Builder compiler so that those placeholders are replaced by compilation

Re: [flexcoders] Re: Preventing cutpaste in Flex3 application

2008-09-17 Thread Paul Andrews
- Original Message - From: Dmitri Girski [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, September 17, 2008 12:47 PM Subject: [flexcoders] Re: Preventing cutpaste in Flex3 application Well, sometimes you have to restrict users from doing something. Besides all

[flexcoders] Re: RadioButtonGroup id not settable using repeater index...

2008-09-17 Thread Amy
--- In flexcoders@yahoogroups.com, Maciek Sakrejda [EMAIL PROTECTED] wrote: No, I mean it should be in the library reference: http://livedocs.adobe.com/flex/2/langref/mx/core/Repeater.html The behavior is black magic enough that it should really be referenced there, since it's more

[flexcoders] Re: Trying to underline datagrid header text. How???

2008-09-17 Thread cjcuccaro
Ok. I'll post any results here once I get'em. Thanks so much for your input Alex, you've helped me understand a little more about the renderers. Thanks again, CJ --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: When someone clicks the header, a HEADER_RELEASE event is

[flexcoders] Multiple datagrid printing with multiple pages

2008-09-17 Thread sachin sharma
Hello,   I am working on report module in my project and facing an issue with datagrid printing. My query is: What If I have to Print dynamically generated Multiple datagrids where some datagrid has multiple page and some expands to single page? Flex Printing function fails to do this. Please

[flexcoders] Inspection and debug tool for Flex

2008-09-17 Thread Kohinoor Revel
There is a new Flex developer toy on the market, it is called KapInspect Just embed it into your Flex App, with either SWC or Module, and you will be able to : - browse the display list - log all framework events - inspect any object, with hierarchical inspection of classes, arrays,... - and much

Re: [flexcoders] Re: Preventing cutpaste in Flex3 application

2008-09-17 Thread Tom Chiverton
On Wednesday 17 Sep 2008, Dmitri Girski wrote: Well, sometimes you have to restrict users from doing something. Crippled products are often not received well by end users. -- Tom Chiverton Helping to confidentially reintermediate professional channels

[flexcoders] Reg-How to get tre structure in flex.-the values should come from Database

2008-09-17 Thread Duke Duke
Hi I want to make a tree structure in flex and which should contain 4 levels.see the attachment for the how the o/p will be.i dont know how to gt values in flex.anyone help me in this issue. Thx in Advance Duke Unlimited freedom, unlimited storage. Get it now, on

Re: [flexcoders] MXMLC voodoo for custom components that take itemRenderer=package.ClassName

2008-09-17 Thread Tom Chiverton
On Wednesday 17 Sep 2008, Josh McDonald wrote: What triggers this, and how can I use it for my own components? Is it only for IListItemRenderers? Create an explicit setter for the string property, then use ClassFactory to create an actual implementation of that class. -- Tom Chiverton

[flexcoders] Re: Datagrid itemEditorInstance problem

2008-09-17 Thread bhaq1972
ignore. problem solved. it was a bug. --- In flexcoders@yahoogroups.com, bhaq1972 [EMAIL PROTECTED] wrote: When I click between cells on my datagrid (btw this doesn't always happen), the value of the existing cell moves to the next cell's itemEditorInstance I click on. eg if I click on

[flexcoders] Multiple requests to load module do weird behaviors in app

2008-09-17 Thread Guilherme Blanco
Hi, I'm currently working in an extremely big application written in Flex + PHP + Oracle. It's entirely controlled by modules and events dispatching and listenings to reduce memory overhead. Each app piece is a module which is loaded when requested to be viewed and unloaded when closed. To

[flexcoders] Re: Flex Enhancement, TabIndex

2008-09-17 Thread aceoohay
Alex: While I have never worked in a large environment such as the one you are in, I believe I understand the issues. I have filed/refiled bug requests on the two issues mentioned below. Hopefully I am not spittin' in the wind. What we are trying to do with Flex is to create an environment

[flexcoders] External Assets Library Best Practice

2008-09-17 Thread flexaustin
I was wondering if anyone can recommend the best strategy for including external swf and png assets in multiple projects? Currently, we have an assets folder with 200 icons some swf's (created in Flash some with animations some without) and some png's that we use in our current Flex app. We

[flexcoders] is anyone using a CryptGuard digital certificate

2008-09-17 Thread Andrew Wetmore
I see CryptGuard offers a free digital certificate for use by new non-profits. This is a much better price than Thawte's $300 a year! Is anyone now using a CryptGuard certificate to sign their AIR app? Does it seem to work ok? Thanks in advance. a

[flexcoders] Re: Multiple webservice calls

2008-09-17 Thread app.developer
(NOTE: I wrote this with the ability of italics so it may be a wee bit confusing reading this.) Assumptions: You are calling the same WS method with different parameters. Possible situation: You have a Zoo application in your Flex / AIR application. Lets say a zoo visitor is at the base

Re: [flexcoders] Re: Overriding parent's style in custom component

2008-09-17 Thread Tom Chiverton
On Tuesday 16 Sep 2008, aaronius9er9er wrote: I think that'll do! I'd be interested in hearing if there's a better alternative though. Pan's setStyle() suggestion should work. -- Tom Chiverton Helping to widespreadedly entrench supply-chains

[flexcoders] Print Selected Area of Image

2008-09-17 Thread wwwpl
We need to create a control that will allow the user to rubber band an area of an image and then print it. Does anyone know of a blog or example code that has a rubber banding control or a control or code to print a selected area of an image?

[flexcoders] Did 3.1 fix a bug with copypaste with keyboard shortcuts in textInputs?

2008-09-17 Thread djhatrick
We had really inconsistent behavior with keyboard shortcuts, Ctrl-C Cmd-C, Ctrl-V and Cmd-V until recently, now these seem to be working better and we've been using the 3.1 compiler lately too? Does anyone else notice this behavior too? Why were there issues with this before? Thanks, Patrick

Re: [flexcoders] Flex Project Struture

2008-09-17 Thread Howard Fore
Ryan, I'm curious about how you separate the Flex Builder project files from the source code (and asset files) in your projects so that the former doesn't get into SVN with the later. I've tried various ways of setting up links etc and FB doesn't seem to like any of them. On Tue, Sep 16, 2008 at

[flexcoders] languages

2008-09-17 Thread info.ruicruz
Hi! Some one is Italian here? or Greek? Thanks, Rui

RE: [flexcoders] languages

2008-09-17 Thread Dimitrios Gianninas
got your Greek herewhats the question? Dimitrios Gianninas RIA Developer Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of info.ruicruz Sent: Wednesday, September 17, 2008 11:46 AM To:

[flexcoders] Re: Print Selected Area of Image

2008-09-17 Thread app.developer
Did something like this a while back...there are many ways to approach the solution. ~ Use Flex to give the user an interface to draw a box or lasso an image spot to print. So first you need a box (with a border and without fill)

Re: [flexcoders] Simple question - custom labels and data fields in ComboBox - [RESOLVED]

2008-09-17 Thread dnk
From: Tracy Spratt [EMAIL PROTECTED] Reply-To: Flexcoder List flexcoders@yahoogroups.com Date: Tue, 16 Sep 2008 20:48:19 -0400 To: Flexcoder List flexcoders@yahoogroups.com Subject: RE: [flexcoders] Simple question - custom labels and data fields in ComboBox No, the data property is just for

Re: [flexcoders] Flex Project Struture

2008-09-17 Thread Michael Schmalle
but it may be worth noting that you may want to stay away from including any flex builder specific files in the SVN, He's talking about the . dot files that are hidden; .flexProperties .actionScriptProperties .project .settings .flexLibSettings etc. Mike On Wed, Sep 17, 2008 at 11:44 AM,

Re: [flexcoders] Inspection and debug tool for Flex

2008-09-17 Thread Alan
Looks cool, thanks for sharing. Alan On Sep 17, 2008, at 4:22 AM, Kohinoor Revel wrote: There is a new Flex developer toy on the market, it is called KapInspect

Re: [flexcoders] baselinePosition meaning?

2008-09-17 Thread Sherif Abdou
Ok let me answer my question, after playing around and changing it up, is it basically an Imaginary Line where It is used to align control like have the label in the formItem be centered to the TextInput control? -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com

[flexcoders] Is there nightly drop of datavisualization component

2008-09-17 Thread kumar_raj
Someone in adobe's flexforum suggested I post my questions here for flex release related quetions :) Hence cross posting -- Is there a nightly drop of data visualization component somehwere. I wanted to see if some of the glaring mem leak issues are fixed on 3.2 but couldn't locate it. I

[flexcoders] Data Visualization bugs

2008-09-17 Thread George
Anyone have any idea what this means? TypeError: Error #1009: Cannot access a property or method of a null object reference. at mx.charts.series::PieSeries/updateDisplayList()[C:\work\flex\dmv_automation\projects\datavisualisation\src\mx\charts\series\PieSeries.as:1164] at

RE: [flexcoders] baselinePosition meaning?

2008-09-17 Thread Ryan Graham
The baselinePosition is basically the y position of the bottom of the first line of text in a text-displaying component. I find this property useful when drawing assets on screen at run time. The baselinePosition can also be interpreted as the line height for the block of text. For example, if

Re: [flexcoders] Data Visualization bugs

2008-09-17 Thread Tom Chiverton
On Wednesday 17 Sep 2008, George wrote: Do we get the DataVizualization source code with the Professional version? Yes. Flex Builder should unpack and set it up for you when you enter the serial. -- Tom Chiverton Helping to evangelistically target total best-of-breed meta-services

RE: [flexcoders] Re: Flex Project Struture

2008-09-17 Thread Ryan Graham
If you are using Subclipse in Flex Builder, it does a pretty good job of automatically leaving out said files. Here are some for example in a standard Flex Project folder: * .settings folder * .actionScriptProperties * .flexProperties *

[flexcoders] Get rid of a resource

2008-09-17 Thread markgoldin_2000
Somehow a resource got into my project that I dont want to have in my project. If I remove it from the project will it be deleted from the hard drive? Thanks

Re: [flexcoders] MXMLC voodoo for custom components that take itemRenderer=package.ClassName

2008-09-17 Thread Matt Chotin
I think the key here is that we make sure that if the type is Ifactory we'll generate the ClassReference which in turn will make sure the class in linked in. if you just pass the string and we don't do our magic you run the risk of the class not being linked. This is only sometimes a prob

Re: [flexcoders] Is there nightly drop of datavisualization component

2008-09-17 Thread Matt Chotin
Sorry, we don't have nightly drops of datatviz right now. 3.2 is hopefully around MAX (so mid November). Matt On 9/17/08 9:09 AM, kumar_raj [EMAIL PROTECTED] wrote: Someone in adobe's flexforum suggested I post my questions here for flex release related quetions :) Hence cross posting --

[flexcoders] Please share your experiences with Flex 3 charting (visualization component)

2008-09-17 Thread kumar_raj
I wanted to start a thread on user experience on Flex3 charting or visualization component. I had been pusing back hard the last 2 years on moving out realtime charting from current serverside image generation to flex charting. Finally with flex 3 prof , I caved in. Hight cpu usage on servers

[flexcoders] LCDS 2.5.1 DSprevMessageId Error?

2008-09-17 Thread foobone9
Has anyone seen the following message using LCDS 2.5.1: [Flex] Unable to find message for DSprevMessageId header in batch: xxx It happens when I'm creating new items and then modifying them via the Hibernate assembler. It doesn't seem to cause any problems locally; but when I deploy the app I

RE: [flexcoders] Re: Multiple webservice calls

2008-09-17 Thread Tracy Spratt
Josh, I do not think that is so, certainly it is not necessary to code around some frame limitation. Florian, I use a single WebService instance, a single result handler and a single fault handler. I am invoking send() as many as 8 times in a single function, each to a different operation. I

[flexcoders] Formatting number in dataGrid column

2008-09-17 Thread Joshua Partogi
Dear all, I want to format a number inside a dataGrid column, how do I do this? I tried using labelFunction as such, but it still doesnt work. Does anyone here have any clue on how to do it? private function basePriceLabel(item:Object):String{ return

Re: [flexcoders] baselinePosition meaning?

2008-09-17 Thread Jon Bradley
On Sep 17, 2008, at 12:13 PM, Sherif Abdou wrote: Ok let me answer my question, after playing around and changing it up, is it basically an Imaginary Line where It is used to align control like have the label in the formItem be centered to the TextInput control? Ryan added some useful

RE: [flexcoders] Re: Multiple webservice calls

2008-09-17 Thread Tracy Spratt
Ok, all that may have some value, but is it way more complicated than it needs to be. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of app.developer Sent: Wednesday, September 17, 2008 10:51 AM To: flexcoders@yahoogroups.com

[flexcoders] Flex Charting DateTimeAxis is not showing more than two months data in days

2008-09-17 Thread kumar_vytla
I have a problem in the Flex Charting with the DateTimeAxis. I have requirement to show more than 60 days data in days using the line chart. When I tried that, chart showing x-axis data point in months instead of days even though dataUnits mentioned in days. When I observed Chart show data

[flexcoders] Re: Formatting number in dataGrid column

2008-09-17 Thread Tim Hoff
Hi Joshua, Not tested, but you can try this: private function basePriceLabel(item:Object):Number{ return Number(fBasePriceEntry.format(item.basePrice)); } -TH --- In flexcoders@yahoogroups.com, Joshua Partogi [EMAIL PROTECTED] wrote: Dear all, I want to format a number inside a dataGrid

RE: [flexcoders] baselinePosition meaning?

2008-09-17 Thread Ryan Graham
The baselinePosition and line heights in Flash are wrong, when compared to how it's handled by Photoshop, Illustrator and InDesign. Ascent and descent are supposed to be used to calculate a proper baseline position, and Flash does not properly calculate ascent/descent metrics. I

[flexcoders] Re: Formatting number in dataGrid column

2008-09-17 Thread Tim Hoff
Shoot, strike that. You had it right; except for the second parameter for the labelFunction: private function basePriceLabel(item:Object, column:DataGridColumn):String { return fBasePriceEntry.format(item.basePrice); } -TH --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote:

RE: [flexcoders] LCDS 2.5.1 DSprevMessageId Error?

2008-09-17 Thread Jeff Vroom
Yeah, this is an errant error that would happen in 2.5.1 when you: create an item, commit, then modify that item before the create result comes back again. It should not cause any problems. That header is only supposed to be set when the create and update are in the same batch but was just

Re: [flexcoders] Please share your experiences with Flex 3 charting (visualization component)

2008-09-17 Thread Maciek Sakrejda
We use Flex for a real-time dashboard at Truviso, and we haven't run into any major with charts so far. For what it's worth, we're still on Flex 2, but with FB3, which the bug report states *should* reproduce the problem (which is odd--FB itself should have nothing to do with this if the SDK

[flexcoders] VideoDisplay and virtual keys

2008-09-17 Thread [p e r c e p t i c o n]
Hello Coders, I'm wondering if anyone has experience with using the VideoDisplay object to connect to an FMS server. The problem i'm facing is that i'm using virutal keys and thus need to be able to connect to an app on the server and not simply the media. Hope this makes sense... cheers percy

[flexcoders] Re: chatroom on flex and red5

2008-09-17 Thread sniperbe
--- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: - Original Message - From: sniperbe [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, September 10, 2008 11:08 PM Subject: [flexcoders] chatroom on flex and red5 i would like to make a chat

Re: [flexcoders] Please share your experiences with Flex 3 charting (visualization component)

2008-09-17 Thread Matt Chotin
The bug is prioritized to be addressed in 3.2. Matt On 9/17/08 9:44 AM, kumar_raj [EMAIL PROTECTED] wrote: I wanted to start a thread on user experience on Flex3 charting or visualization component. I had been pusing back hard the last 2 years on moving out realtime charting from current

RE: [flexcoders] IOException on DataService closing

2008-09-17 Thread Seth Hodgson
Cedric, Our NIO subsystem in LCDS was refactored for the 2.6 release to allow us to support multiple higher level protocols in addition to RTMP so some things, including some logging output have changed from 2.5.x to 2.6. When a client shuts down, or manually disconnects an RTMPChannel, the

[flexcoders] List DataEffects - best way to handle animations...

2008-09-17 Thread djhatrick
One of the things that list animations are cool, however there's something that I've noticed about list animations that doesn't seem optimized, for my use case anyway. For instance, when I have an effect play on removing an item from an arrayCollection, i don't necessarily want animations to play

[flexcoders] Re: showDataTips on AdvancedDataGrid column gives tooltip to column header

2008-09-17 Thread whatabrain
I'm already using a custom header renderer. What can I do to prevent the behavior? I tried all of these things, but none of them made the tooltip go away: override protected function toolTipShowHandler (event:ToolTipEvent):void { event.preventDefault();

RE: [flexcoders] Flex Project Struture

2008-09-17 Thread Ryan Graham
Usually this is setup through the Project Properties. I add another top-level folder for anything the app needs to consume at runtime (like an etc folder) and perhaps another that the app needs to consume at compile time like embedded assets (like an includes folder -- it's up to you): Project

[flexcoders] Re: HTTPService conversion to ArrayCollection problem

2008-09-17 Thread netdeep
Yeah, you are right that when there are two or more items in the list, the problem does not show up. I'm not sure how to process the results in e4x or with XMLListCollection, however. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: This is probably the Object vs

[flexcoders] Re: Styling AdvancedDataGrid's header

2008-09-17 Thread whatabrain
I mean sortExpertMode=true. :) False is the default. --- In flexcoders@yahoogroups.com, whatabrain [EMAIL PROTECTED] wrote: Another detail -- putting the skin on the first subclass of ADG fixes the problem with verticalGridLines and alternatingItemColors, but it still breaks

[flexcoders] DataGrid in custom component not updating

2008-09-17 Thread netdeep
I have a custom component with a DataGrid in it. The dataprovider is an actionscript object (the variable name for this object is axis) with an ArrayCollection called seriesList. When I do axis.seriesList.addItem(), the DataGrid updates properly, but when I simply assign a new axis object

[flexcoders] Re: Styling AdvancedDataGrid's header

2008-09-17 Thread whatabrain
Oh, never mind that sortExpertMode bit. It looks like it was working fine. I just didn't realize that the only visual difference between true and false is the horizontal line before the 1. --- In flexcoders@yahoogroups.com, whatabrain [EMAIL PROTECTED] wrote: Another detail -- putting the

Re: [flexcoders] Bizarre XML data transformation

2008-09-17 Thread Ralf Bokelberg
That's crazy :) Can you post a small piece of the xml? Cheers Ralf. On Wed, Sep 17, 2008 at 9:09 PM, cjsutherland [EMAIL PROTECTED] wrote: Once again, I've hit a roadblock with Flex for something that should be easy as pie. Here's the problem: I'm loading in an XML feed from Flickr, a list

[flexcoders] filterFunction Tilelist effects

2008-09-17 Thread mjharvey1979
Hi, I have created a tilelist component, displaying a grid of products. This is then filtered by the user, using a combobox or typing a search string into a text input box. All works fine up 2 now :) Can anybody give me any tips on how the fade out and re-ordering of the tilelist is achieved

RE: [flexcoders] Bizarre XML data transformation

2008-09-17 Thread Peter Farland
How are you loading the XML? HTTPService? If so, have you set resultFormat=e4x?

Re: [flexcoders] filterFunction Tilelist effect

2008-09-17 Thread Haykel BEN JEMIA
Didn't test this, but try setting the show and hide effects for the items. -- Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On Wed, Sep 17, 2008 at 9:27 PM, mjharvey1979 [EMAIL PROTECTED]wrote: Hi, I have created a tilelist component, displaying a grid of products.

[flexcoders] Re: Flex Project Struture

2008-09-17 Thread flexaustin
What about sharing components. For instance, we have a project just completed with several as components. We want to use some of those same AS components, but don't want to copy them to our new projects directory since when changes are made in the AS components for the old project we need them to

Re: [flexcoders] Bizarre XML data transformation

2008-09-17 Thread Maciek Sakrejda
Flex sees something that looks like a number in the XML and treats it as a floating point Number type (since the number in the XML is too big to fit in an int). Because of the way IEEE floating point works (take a look if you're interested: http://en.wikipedia.org/wiki/IEEE_754 -- it's neat), very

[flexcoders] ASDoc under Flex 3 failing for SWC libraries?

2008-09-17 Thread luislejter
Has anyone successfully generated asdocs for Flex 3 SWC libraries? I am consistently running into an error for both Flex 3.0.0 and 3.1. The same commandline commands or build scripts work correctly under Flex 2.0.1 so it seems like a bug but I don't see it listed in the Adobe bug tracker.

RE: [flexcoders] Bizarre XML data transformation

2008-09-17 Thread Tracy Spratt
As Pete suggests, this is almost always because resultFormat is the default object. Set resultFormat=e4x and process the result yourself, either using XML or XMLListCollection directly, or by looping through the XMLList and building your own ArrayCollection. Tracy

RE: [flexcoders] DataGrid in custom component not updating

2008-09-17 Thread Tracy Spratt
Call collection.itemUpdated(item) after updating the item. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of netdeep Sent: Wednesday, September 17, 2008 3:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid in

Re: [flexcoders] Re: Flex Project Struture

2008-09-17 Thread Howard Fore
Have you tried making a linked folder in the src directory? File New Folder Advanced Link to Folder in file system. This creates an alias in your project to that folder. Haven't tried it myself, not sure how the compiler is going to like it. The other option would be to put the alias in the

Re: [flexcoders] DataGrid in custom component not updating

2008-09-17 Thread Haykel BEN JEMIA
The problem here is that the assignment of the axis object will not copy the properties, but will make your variable reference the new object. The dataProvider of the DataGrid will still be bound to the seriesList of the old object. To make this more clear: suppose during application startup, your

RE: [flexcoders] Re: HTTPService conversion to ArrayCollection problem

2008-09-17 Thread Tracy Spratt
Simplest is XMLListCollection. Declare a var to hold the dataProvider at instance scope: private var _xlcData:XMLListCollection; Then. in your result handler (you are using a result handler, right?), do: private function onResult(event:ResultEvent):void var xmlResult:XML =

[flexcoders] Load html page

2008-09-17 Thread markgoldin_2000
How would it be possible to load an html page? I want to load SQL reports into a Flex container. I am working on a report portal and I want create a menu system for reports in flex. Thanks for any advice.

[flexcoders] isolating mx.logging

2008-09-17 Thread Brent Smith
Hey all, I like the mx.logging classes, however I'm trying to keep my swf lean and mx.logging is the only package I'm using but when I compile my project it is including a bunch of other mx packages. If I copy just the logging classes into my project I can use them fine so it doesn't appear to be

RE: [flexcoders] Re: Flex Enhancement, TabIndex

2008-09-17 Thread Alex Harui
Probably not subclass, but maybe replace it. It will be a bunch of work though. In theory the tabloop (if you don't use tabIndex) should be hierarchical and go through one container then the next. But it won't loop within a container if there are other tabbable entities. Besides the

RE: [flexcoders] Multiple datagrid printing with multiple pages

2008-09-17 Thread Alex Harui
I guess I don’t understand why you wouldn’t print one then the other. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sachin sharma Sent: Wednesday, September 17, 2008 3:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Multiple datagrid printing with multiple

RE: [flexcoders] Using property placeholders in services-config.xml

2008-09-17 Thread Alex Harui
Yes. Check the examples. They should have placeholders in them From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sebastien ARBOGAST Sent: Wednesday, September 17, 2008 5:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using property placeholders in

RE: [flexcoders] baselinePosition meaning?

2008-09-17 Thread Gordon Smith
If you're looking at ASDoc comments in source code, it would make more sense to first look at the public comment for this property where it is originally defined in the UIComponent base class, rather than at the private comment in the Container subclass. The comment in UIComponent (which

RE: [flexcoders] Multiple requests to load module do weird behaviors in app

2008-09-17 Thread Alex Harui
I would try to build some way so you only request a module once From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guilherme Blanco Sent: Wednesday, September 17, 2008 7:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Multiple requests to load module do weird

[flexcoders] Re: Combobox does not hold selected item

2008-09-17 Thread markgoldin_2000
Not sure what you mean. Here is my combobox's dataChange handle: public function handleDataChanged (event:ListEvent):void { var colName:String = DataGrid (listData.owner).columns[listData.columnIndex].dataField;

RE: [flexcoders] MXMLC voodoo for custom components that take itemRenderer=package.ClassName

2008-09-17 Thread Gordon Smith
I think the MXML compiler may be smart about properties of type IFactory. Gordon Smith Adobe Flex SDK TEam From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Tuesday, September 16, 2008 4:50 PM To: flexcoders@yahoogroups.com; [EMAIL PROTECTED] Subject:

[flexcoders] TextField with embedded font not displaying font

2008-09-17 Thread Jayson
Hello, I'm trying to create a TextField that uses an embedded font. Please see my code below. The font displays properly when I use it in MXML, but not when I try to create the text display object in AS. Has anyone had success with something similar to this? CSS: @font-face{

[flexcoders] Re: TextField with embedded font not displaying font

2008-09-17 Thread Jayson
So I just realized this... !--mx:Style source=font.css/-- Would help if I uncommented the css include. Fixed. --- In flexcoders@yahoogroups.com, Jayson [EMAIL PROTECTED] wrote: Hello, I'm trying to create a TextField that uses an embedded font. Please see my code below. The font

Re: [flexcoders] Bizarre XML data transformation

2008-09-17 Thread Dan Blackman
Sent from my Verizon Wireless BlackBerry -Original Message- From: Tracy Spratt [EMAIL PROTECTED] Date: Wed, 17 Sep 2008 16:16:06 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Bizarre XML data transformation As Pete suggests, this is almost always because resultFormat is

RE: [flexcoders] Load html page

2008-09-17 Thread Tracy Spratt
You can't directly, since the Flash Player does not include a full html parser. One solution is to use an IFrame that is positioned to appear that it is part of the Flex app. Google this to find examples and even components. Tracy From:

[flexcoders] Re: Load html page

2008-09-17 Thread markgoldin_2000
I did google it. I have found this link: http://raghuonflex.wordpress.com/2006/12/07/flex-i-frame/#comment-4542 I have copied all the files into my project. But when I run it and click on a node the IFrame does not show any page. Is just shows some large placeholder. --- In

[flexcoders] Difficulty updating Grouping in Advanced DataGrid

2008-09-17 Thread Tom McNeer
Hi, I am aware of the need to refresh the GroupingCollection within an AdvancedDataGrid in order to display the data from the dataprovider. But I'm having trouble firing the refresh at the right time. In my application, an event is fired when a navigation choice is made. The event switches the

  1   2   >