[flexcoders] Re: Multiple popups in flex application

2008-02-19 Thread simonjpalmer
there's a flag to control modality on both createPopUp and addPopUp in the PopUpManager --- In flexcoders@yahoogroups.com, Danish Tehseen [EMAIL PROTECTED] wrote: Is it possible to open multiple popups from different modules, without bluring the background? i.e. non-modal popups. Danish

RE: [flexcoders] Localized library

2008-02-19 Thread Gordon Smith
Are you getting a compilation error or a runtime error? What exactly does it say? Did you use the copylocale script to create ar_SA framework resources? Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: Menu direction: layout submenus to the left instead of right ?

2008-02-19 Thread Ryan Frishberg
There's a bug on this. Unfortunately, this didn't make it for Flex 3. Voting on bugs is always helpful to let us know what's useful btw. https://bugs.adobe.com/jira/browse/SDK-12409 The bug also includes some ideas on how to implement a workaround to get it to work. -Ryan --- In

[flexcoders] Re: Extending Tree component

2008-02-19 Thread Ryan Frishberg
Per your original question with the drop lines, there's a method called showDropFeedback() you can override. In the Flex Tree implementation, most of the work is done in a private function, updateDropData, so check that out for what you want to do. I'm not too familiar with the dragComplete

[flexcoders] Re: Tree Branch???

2008-02-19 Thread Ryan Frishberg
Check out dataDescriptor. You should be able to google (or search these forums) for it and get something on how to use this feature. If not, post back. -Ryan --- In flexcoders@yahoogroups.com, xmwang1982 [EMAIL PROTECTED] wrote: Thanks Raf, However, what I need is something called

[flexcoders] How to apply resize effect to children

2008-02-19 Thread YOGESH JADHAV
Hi all, I am trying to get some sliding canvas. I am using canvas and resize effects to change it's width. It look ok , but if i put something ( textInput , button etc) on it, those things obviously don't get resize, and give scroll bars while resizing. How to resize including

[flexcoders] Re: Tree Branch???

2008-02-19 Thread xmwang1982
Hi Ryan, Thanks. It seems data decriptor is only for reading properties, not changing. Actually I think my problem is common, for example: Folder lable=1 file name=file1.txt/ Folder lable = 1.1/ /Floder In the xml above, node named Folder should be always displayed as a branch.

Re: [flexcoders] How to apply resize effect to children

2008-02-19 Thread Peeyush Tuli
I did some work earlier on switching between two fixed resolutions. I may not be totally correct but based on my observations, If you change the scaleX property of the parent layout component, it more or less resizes the child component accurately. (although I had to resize down and up on a button

Re: [flexcoders] Re: Extending DateField...

2008-02-19 Thread Tom Chiverton
On Monday 18 Feb 2008, aceoohay wrote: Is there a way of changing the TextInput component that the DateField component uses to my own TextInput type component? Yes, subclass DateField and override the creation. -- Tom Chiverton Helping to confidentially transition essential m-commerce on:

RE: [flexcoders] Re: Tree Branch???

2008-02-19 Thread Jim Hayes
set an attribute of 'isBranch=true' on the xml node that you wish to display as a branch ( ie [EMAIL PROTECTED] = true ) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of xmwang1982 Sent: 19 February 2008 08:58 To: flexcoders@yahoogroups.com

Re: [flexcoders] Fixed Price Contract in Flex with a DataGrid - I never would!

2008-02-19 Thread Tom Chiverton
On Monday 18 Feb 2008, mr_j_harris wrote: application: infinite-type UI loops 'and the like' by, say, merely clicking on an empty row below the row that I added via drag-drop. It's like, I don't ever want to take my dog and pony show to the abattoir... I've not seen this particular error. If

RE: [flexcoders] Localized library

2008-02-19 Thread M.Javed
No compilation error, yes I have run copylocale command to generate the resources, it runs successfully, but in case when when i run the application and set its locale chain property to ar_SA from a combo, it doesnt read from the resource bundle in the following piece of code, mx:DataGrid

Re: [flexcoders] Problem with function, Incorrect number of arguments...

2008-02-19 Thread Tom Chiverton
On Monday 18 Feb 2008, Eric Cobb wrote: Sorry, I guess I should have specified, that's the exact line that the error refers to. Ahh right. You appear to be calling your own constructor. You don't need to do this. What are you trying to achieve ? -- Tom Chiverton Helping to interactively

Re: [flexcoders] How to apply resize effect to children

2008-02-19 Thread YOGESH JADHAV
thnx peeyush , i'll try that. On Feb 19, 2008 3:00 PM, Peeyush Tuli [EMAIL PROTECTED] wrote: I did some work earlier on switching between two fixed resolutions. I may not be totally correct but based on my observations, If you change the scaleX property of the parent layout component, it

[flexcoders] cache issue with 'cacheResponse'

2008-02-19 Thread shiv . . ah
Hi all, I am currently working on an AIR product. I am facing the cache issue on images. We are loading around hundreds of images as thumbnails and i am using the below mentioned code : var myLoader:Loader = new Loader(); myLoader.name = loaderObj; var

[flexcoders] Re: Grouping Data - need some help

2008-02-19 Thread reflexactions
Thanks for the response, In the end the solution was to manually build the hierarchical structure on the client from the flat array and then set it into the ADG using a HierarchichalData object. This was further complicated because initially I was setting an empty structure into the ADG and

Re: [flexcoders] Re: Any way to version a swf with major and minor

2008-02-19 Thread Tom Chiverton
On Tuesday 19 Feb 2008, essuark wrote: The purpose of a version? Well to find out what version of the product the customer has for one... Right, so embedding the SVN revision number for the top level directory (or better, the SVN tag/branch name) would do ? This has problems, even using

Re: [flexcoders] How to apply resize effect to children

2008-02-19 Thread YOGESH JADHAV
Hi Peeyush, Actually I was not restricting expansions and contracting , so it was looking too wierd. I'll go for simple resize whith scroll policies off and and % size of child component. That looks good if the duration is not too large. On Feb 19, 2008 5:52 PM, Peeyush Tuli [EMAIL PROTECTED]

Re: [flexcoders] How to apply resize effect to children

2008-02-19 Thread Peeyush Tuli
I havent tride anything else because it worked well for my case. What exactly goes wrong in your app? do components go totally out of their normal size ratio?(can you post a screen shot ) There is a post on application level resizing here http://blogs.adobe.com/aharui/ On Feb 19, 2008 4:57

Re: [flexcoders] Grouping Data - need some help

2008-02-19 Thread Christophe Jolif
Hi, If all children that pertain to a given group already share the same parent (parentKey) that means the group is kind of already here, it is just that it is not exposed to Flex in manner that please it. Indeed HierarchicalData does not work out its hierarchy from parent relationship

Re: [flexcoders] How to apply resize effect to children

2008-02-19 Thread YOGESH JADHAV
HI Peeyush I tried that, it works , but doesn't look good. Most irritating is that everything, including blue border which appears on selection is also enlarged. Is there some other way to achieve cool n smooth sliding ? On Feb 19, 2008 3:00 PM, Peeyush Tuli [EMAIL PROTECTED] wrote: I did

Re: [flexcoders] Fixed Price Contract in Flex with a DataGrid - I never would!

2008-02-19 Thread Paul Andrews
- Original Message - From: mr_j_harris [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 18, 2008 10:47 PM Subject: [flexcoders] Fixed Price Contract in Flex with a DataGrid - I never would! You may have seen some of my postings here, concerning my troubles

[flexcoders] Re: grouping using XMLListCollection in AdvancedDataGrid

2008-02-19 Thread sreeni_r
If you set GroupingCollection.source to the XMLListCollection and setup the Grouping and GroupingField properties and call GroupingCollection.refresh it should just work. --- In flexcoders@yahoogroups.com, nikscares4u [EMAIL PROTECTED] wrote: Hi, I am using an XMLListCollection as a

[flexcoders] Re: Grouping Data - need some help

2008-02-19 Thread reflexactions
Thanks for that, Although our data wasnt xmlbased the concept of what you have done is interesting and useful. tks --- In flexcoders@yahoogroups.com, sreeni_r [EMAIL PROTECTED] wrote: Hi, I had posted a implementation of IHierarchicalData called FlatXMLHD which coverts the kind of flat

[flexcoders] Re: Grouping Data - need some help

2008-02-19 Thread sreeni_r
Hi, I had posted a implementation of IHierarchicalData called FlatXMLHD which coverts the kind of flat data (XML) you have mentioned into hierarhcical format. The code and sample is available here http://flexpearls.blogspot.com/2007/12/hierarchicaldata-from-flat- xmllist-data.html -Sreenivas

[flexcoders] showDataTips are not working for the Datagrid columns having itemRenderers

2008-02-19 Thread satyakishore
Hi Flex Friends, Datagrid column having itemRenderer, This itemRenderer class with display one icon and label. showDataTips are not working for the Columns having ItemRenderers. Is there any solution where we can use both showDataTips and ITemRenderer for DataGridColumn Sample code:

[flexcoders] The width change works in Flash CS3 but not in Flex

2008-02-19 Thread dsds99
// ActionScript file package{ import mx.core.UIComponent; public class Tint extends UIComponent{ public function Tint():void{ graphics.beginFill(0x9fe9c9,1); graphics.drawRect(0,0,100,100);

[flexcoders] BubbleChart bubble selection

2008-02-19 Thread linko27
Hello! I've got a DataGrid and a BubbleChart using the same dataProvider. What I would like to do is when a row is selected in the grid, visually bring attention to the corresponding bubble - however I can't find a way to get at a particular bubble to make changes on it. Please help me!

Re: [flexcoders] Implementing Office 2007 menus

2008-02-19 Thread Samuel Neff
Tom, I'm pretty sure the 120+ page instructions on how to implement the Ribbon go into a lot more detail than a button inside a TileList inside a TabNavigator. And no, not kidding, if you actually copy the UI then you have to license it from MS. Sam On Feb 18, 2008 5:45 AM, Tom Chiverton

Re: [flexcoders] Re: Any way to version a swf with major and minor

2008-02-19 Thread Samuel Neff
Here's a C# class we use to parse out SVN info from the working copy .svn folders. Once we have this a simple regex replace is used on the version.asfile within our build script. Some build toold like cruse control.net provide version stamping built in. Ant might do it as well, not sure. HTH,

RE: [flexcoders] Prohibiting Old Chart from Displaying while new Chart renders

2008-02-19 Thread Brad Bueche
Actually, there was another component in my program doing essentially the same thing (i.e. allowing users to go up and down from year to month) and not having the problem. I realized that for that component I was only loading the xml once. In this one that I was recently having problems with,

[flexcoders] Re: grouping using XMLListCollection in AdvancedDataGrid

2008-02-19 Thread nikscares4u
I have already done that but it still gives the same error. Here the dataProvider is an XMLListCollection. Here is the code mygroup.source = XMLListCollection(datagrid.dataProvider); var group:Grouping = new Grouping(); var gf:GroupingField = new GroupingField(PRICE); mygroup.grouping = group;

[flexcoders] Re: Complex chart application - general performance issues.

2008-02-19 Thread imjackson84
Thanks for the advice Jim, you've given me plenty of ideas for things to try! Iain --- In flexcoders@yahoogroups.com, Jim Cheng [EMAIL PROTECTED] wrote: Hi Iain, I've been working a project quite similar to yours for a while now have encountered the same issues, particularly when

[flexcoders] BlazeDS mailing list?

2008-02-19 Thread Daniel Freiman
Is there a (pseudo)official developer mailing list for BlazeDS? Having a list with for Blaze with similar involvement by Adove as with the flexcoders list would be very helpful. I imagine the Blaze team is very busy right now so maybe someone thought of this and it's just not a high priority. -

Re: [flexcoders] Implementing Office 2007 menus

2008-02-19 Thread Tom Chiverton
On Tuesday 19 Feb 2008, Jeffry Houser wrote: I was thinking of creating a Ribbon Component for Flex, but on the surface it is unclear how this would be different than a TabNavigator. I guess I'd have to read those 120+ pages. It looks like it has some logic where by if the width isn't enough

Re: [flexcoders] Re: Any way to version a swf with major and minor

2008-02-19 Thread Tom Chiverton
On Tuesday 19 Feb 2008, simonjpalmer wrote: I would use a unique and incrementing build number rather than the latest svn rev unless your build process locks the repository, labels it and uses the rev of the label for the build number. SVN can roll forward/back by date, so build time would

[flexcoders] Immediate Requirement in Testing

2008-02-19 Thread p_shedikare
Designation: Testing consultant] Location: Calcutta Job Type: Contract Experience: 3Years Salary : Attractive Skills Required: 1. Person must have good knowledge on rad-view web load product, 2. Person must have 3yrs of exp, and can take up a training and handhold a team 3. Good

Re: [flexcoders] how do I get displayobjects under mouse

2008-02-19 Thread Daniel Freiman
displayObjectContainer.getObjectsUnderPoint() - Dan Freiman On Feb 19, 2008 2:11 AM, dsds99 [EMAIL PROTECTED] wrote: Was wondering if there is a function available in as3 Like Mouse.getObjects or something that will return a list of displayobjects that is currently under the mouse..hmmm

[flexcoders] Re: Any way to version a swf with major and minor

2008-02-19 Thread simonjpalmer
...that's what CruiseControl is for. Updating versions by hand is not reliable enough and there's nothing worse than not knowing which version of code is in which build. This goes for testing just as much as for customers logging issues. If you have appropriate separation between your

Re: [flexcoders] Tabbing to links in htmlText

2008-02-19 Thread Daniel Freiman
I don't think links in text can get focus (someone correct me if I'm wrong here). If that is true than your only other option would be to highlight the text programatically, which wouldn't give you any extra functionality beyond the highlighting itself. Is that a functionality you want? - Dan

[flexcoders] Fwd: functional tooltips on TextRange objects

2008-02-19 Thread Derrick Anderson
just bumping this up, anyone have any ideas on how to add tooltips to non uicomponent objects like TextRange? -- Forwarded message -- From: Derrick Anderson [EMAIL PROTECTED] Date: Feb 14, 2008 2:15 PM Subject: functional tooltips on TextRange objects To:

[flexcoders] How to Use Flex's Default Icons

2008-02-19 Thread YOGESH JADHAV
Hi all, I would like to know how to use flex's default / internal icons/gifs in my custom components. ( irrespective of imports). thanx in advance -- Regards, Yogesh

[flexcoders] Re: BubbleChart bubble selection

2008-02-19 Thread simonjpalmer
here's an idea if you have a strongly typed domain model... 1) create yourself a bubble item renderer 2) override set data() 3) add a transient variable to the objects in your domain model which are in the data provider 4) in the set data() override get the bubble renderer to put itself onto the

Re: [flexcoders] Tabbing to links in htmlText

2008-02-19 Thread Giles Roadnight
I was worried that would be the case. It's for accessibility - we need to be able to tab to everything and activate it with the space bar. On Feb 19, 2008 3:00 PM, Daniel Freiman [EMAIL PROTECTED] wrote: I don't think links in text can get focus (someone correct me if I'm wrong here). If

[flexcoders] Stage Quality of Flex App automatically changes zu LOW

2008-02-19 Thread ckerwer
Hi there. I have an issue with setting the stage quality of the flashplayer to high which is default. I set the quality in my HTML-Container to HIGH and in my flex application with stage.quality = StageQuality.HIGH; But after a couple of seconds the quality automatically changes to low. Is this

[flexcoders] flash.net.socket : lost messages

2008-02-19 Thread christophe.sauve
Hi, Using class flash.net.socket connected to a python stackless TCP server, i'm experiencing the following problem: when tcp server send multiple messages to the client, the first message is handle correctly but the following are lost. I have no trace of the lost messages on the client. The

[waran] 税务代理

2008-02-19 Thread ��ͨ��˾
__._,_.___ Your email settings: Individual Email|Traditional Change settings via the Web (Yahoo! ID required) Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured Visit Your Group

Re: [flexcoders] Re: Menu direction: layout submenus to the left instead of right ?

2008-02-19 Thread Arpit Mathur
Thanks. Voted. On Feb 19, 2008 3:18 AM, Ryan Frishberg [EMAIL PROTECTED] wrote: There's a bug on this. Unfortunately, this didn't make it for Flex 3. Voting on bugs is always helpful to let us know what's useful btw. https://bugs.adobe.com/jira/browse/SDK-12409 The bug also includes some

[flexcoders] Default Application background color during intialization

2008-02-19 Thread Jerry DuVal
When my flex application initializes it ignores the background color I have set on my application tag. I get the default gray/green color with a initializing progress bar. Why does it not use my application background colors during load? ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: Problem with focus in secondary popups

2008-02-19 Thread Dmitri Girski
Hi guys, it's me again. Still with my boring focus problem. Ralf reflexactions - I've learnt how to place focus in the control in the popup. But bloody hell - the TAB focus is still in the parent popup. So, if I subscribe for ESC key in the third popup - everything is OK, everybody is happy.

RE: [flexcoders] Default Application background color during intialization

2008-02-19 Thread Jerry DuVal
On Tuesday 19 Feb 2008, Jerry DuVal wrote: initializing progress bar. Why does it not use my application background colors during load? Could your HTML wrapper be setting this ? -- Tom Chiverton Yep, that was it! Thanks

Re: [flexcoders] Datagrid headers without separators

2008-02-19 Thread Tom Chiverton
On Tuesday 19 Feb 2008, Aasim wrote: I need to create a Datagrid without the separators in the datagrid headers. I have seen that there is a protected function clearSeparators() Can this be used? If it's protected, you can only call it from a subclass. So create a sub class with a public

[flexcoders] Tabbing to links in htmlText

2008-02-19 Thread Giles Roadnight
Hi All We have to be able to tab to all buttons / links ect in the flex application. We have am html text field with a Privacy Policy link in it. At the moment you can't tab to it. Is there a way to do this? Thanks Giles

Re: [flexcoders] Implementing Office 2007 menus

2008-02-19 Thread Jeffry Houser
I was thinking of creating a Ribbon Component for Flex, but on the surface it is unclear how this would be different than a TabNavigator. I guess I'd have to read those 120+ pages. Samuel Neff wrote: Tom, I'm pretty sure the 120+ page instructions on how to implement the Ribbon go

Re: [flexcoders] why is measureHeight in ApplicationBackground 8?

2008-02-19 Thread Sherif Abdou
anyone? - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 12:00:26 AM Subject: [flexcoders] why is measureHeight in ApplicationBackground 8? in import mx.skins.halo. ApplicationBackg round; /** * @private */

[flexcoders] Re: Flex Ant with external assets

2008-02-19 Thread kp_gem
Thanks Gaurav, Here is my directory structure for multiple projects. --- include - assets - img | |- test | |- test1 | |- test2 test, test1, and test2 are flex projects and sharing assets in the 'include' folder. And, the ant task is ?xml version=1.0 encoding=utf-8? project

[flexcoders] Terminating a function

2008-02-19 Thread ghus32
How do you terminate or stop a function in Flex 2.0? Thanks

RE: [flexcoders] Re: Example of Object.isPrototypeOf ()

2008-02-19 Thread Gordon Smith
Very clever! I didn't know that. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alan Shaw Sent: Monday, February 18, 2008 7:04 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Example of

RE: [flexcoders] Drawing in Panel Insanity

2008-02-19 Thread Merrill, Jason
I thought about that, but it's much further off that what that could possibly be. Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community Interested in innovative ideas in Learning? Check out the GTO

[flexcoders] Re: Is it possible to have 2 children of viewstack visible?

2008-02-19 Thread m.frigge
Knock.. knock.. nobody knows this?? A simple no it doesn't work would be alright too :-) ??? --- In flexcoders@yahoogroups.com, Max Frigge [EMAIL PROTECTED] wrote: Hi, I am trying to create a slide effect for a ViewStack. Therefor I would need to have 2 children visible at the same time,

Re: [flexcoders] Re: Is it possible to have 2 children of viewstack visible?

2008-02-19 Thread Paul Andrews
I doubt it's possible. Having two visible doesn't really fit with the idea of a stack. Why not roll your own component? Paul - Original Message - From: m.frigge [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 5:40 PM Subject: [flexcoders] Re: Is it

Re: [flexcoders] Drawing in Panel Insanity

2008-02-19 Thread Eric Cancil
You're going to have to account for that either way. On Feb 19, 2008 12:37 PM, Merrill, Jason [EMAIL PROTECTED] wrote: I thought about that, but it's much further off that what that could possibly be. Jason Merrill *Bank of America * GTO LLD Solutions Design Development eTools

[flexcoders] Drawing in Panel Insanity

2008-02-19 Thread Merrill, Jason
So I've been writing an Actionscript component that extends UIComponent and is wrapped inside a Panel tag. The UIComponent has code that draws a flowchart of sorts into the content area of the Panel, based on a dataprovider it's bound to. Everything works fine there, and the drawn graphics change

[flexcoders] Re: Drawing in Panel Insanity

2008-02-19 Thread jmfillman
Jason, A couple things: 1. You might try putting this inside a canvas within the Panel. 2. Not knowing the bigger picture of your component it's hard to tell exactly, but if the Panel container is inside of the component and not the base of the component, your measure function is getting the

RE: [flexcoders] Drawing in Panel Insanity

2008-02-19 Thread Merrill, Jason
I understand, and I'm doing that. ;) I discovered I was calculating based on the UIComponent's size, and not the Panel's size, stupid. Thanks, I almost have it working now. Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash

[flexcoders] Re: Tree Branch???

2008-02-19 Thread Ryan Frishberg
It is a little confusing, but dataDescriptor is not a read-only property. You can create a custom data descriptor by extending DefaultDataDescriptor (changing isBranch to what you want) and setting your Tree's dataDescriptor to that class. -Ryan --- In flexcoders@yahoogroups.com, xmwang1982

Re: [flexcoders] The width change works in Flash CS3 but not in Flex

2008-02-19 Thread Sherif Abdou
way too early to be setting that stuff in the consturctor, u need to override the updateDisplayList and do it there - Original Message From: dsds99 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 7:08:37 AM Subject: [flexcoders] The width change works

Re: [flexcoders] how do I get displayobjects under mouse

2008-02-19 Thread Eric Cancil
getObjectsUnderPoint(point:Point):Array; is a method of DisplayObjectContainer, try using that. getObjectsUnderPointhttp://livedocs.adobe.com/flex/201/langref/flash/display/DisplayObjectContainer.html#getObjectsUnderPoint%28%29

[flexcoders] Re: Flex Ant with external assets

2008-02-19 Thread Gaurav Jain
Can you show the complete ant task target? I suspect that the parent folder of assets is not specified in the source path. Thanks, Gaurav --- In flexcoders@yahoogroups.com, kp_gem [EMAIL PROTECTED] wrote: Hi, Is there any way to include external assets to Flex Ant Tasks (mxmlc)? I am

Re: [flexcoders] Drawing in Panel Insanity

2008-02-19 Thread Eric Cancil
You're probably not taking in account the panel's border thickness properties. When you get the panel's width it's including the border (not just where the content is being drawn like youre imagining). To get the true width of the content area youd need to subtract getStyle(borderThicknessRight)

Re: [flexcoders] Default Application background color during intialization

2008-02-19 Thread Tom Chiverton
On Tuesday 19 Feb 2008, Jerry DuVal wrote: initializing progress bar. Why does it not use my application background colors during load? Could your HTML wrapper be setting this ? -- Tom Chiverton Helping to professionally conquer best-of-breed relationships on:

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-19 Thread Gaurav Jain
What happens when you compile with Ant task using debug=true? If it generates swf of size more than 190 kb, then probably the difference you are seeing is due to some other difference between FB and ant task arguments. Look in the .actionScriptProperties file to see what libraries FB is

[flexcoders] Flex Ant with external assets

2008-02-19 Thread kp_gem
Hi, Is there any way to include external assets to Flex Ant Tasks (mxmlc)? I am working on multiple flex projects and want to share 1 single central assets. However, I couldn't find a way in Flex Ant and I got an following error. [mxmlc] C:\Projects\test\Test.mxml(26): Error: unable to

Re: [flexcoders] Terminating a function

2008-02-19 Thread Paul Andrews
return; Paul - Original Message - From: ghus32 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 4:56 PM Subject: [flexcoders] Terminating a function How do you terminate or stop a function in Flex 2.0? Thanks -- Flexcoders Mailing List FAQ:

[flexcoders] Datagrid headers without separators

2008-02-19 Thread Aasim
Hi, I need to create a Datagrid without the separators in the datagrid headers. I have seen that there is a protected function clearSeparators() Can this be used? I am a novice at extending components How should i be using this function? Regards, Aasim

[flexcoders] Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-19 Thread lytvynyuk
Here is piece of my flex ant file: mxmlc file=${BUILD_SPACE}ActiveUpdate.mxml output=${DEPLOY_DIR}/ActiveUpdate.swf actionscript-file-encoding=UTF-8 services=${BUILD_SPACE}res/services-config.xml

[flexcoders] Re: textAlign attribute not accessible from TextInput extended class.

2008-02-19 Thread jmfillman
Paul, The textAlign property has a default that is always set to left, unless you specifically set it to something else. Jason --- In flexcoders@yahoogroups.com, aceoohay [EMAIL PROTECTED] wrote: Jason: I don't think that would get me what I need. Unfortunately the thing I want to do

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Sherif Abdou
file wont open and it saves as a word document - Original Message From: Paul Decoursey [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008 11:58:52 AM Subject: [flexcoders] Cannot embed Flash9 symbols Ok, I'm loosing my mind here. I think that there might

[flexcoders] Re: Default Application background color during intialization

2008-02-19 Thread jmfillman
You can also add a compiler option to set this. -default-background-color #00 --- In flexcoders@yahoogroups.com, Jerry DuVal [EMAIL PROTECTED] wrote: On Tuesday 19 Feb 2008, Jerry DuVal wrote: initializing progress bar. Why does it not use my application background colors

[flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
Ok, I'm loosing my mind here. I think that there might be a problem with my Flash app, but I need confirmation... I've exhausted every other avenue. I have this fla(http://client.devilsworkbook.com/assets2.fla) generating this swf (http://client.devilsworkbook.com/assets2.swf) and I'm

RE: [flexcoders] Drawing in Panel Insanity

2008-02-19 Thread Merrill, Jason
Hey Eric, I didn't thank you for your help thanks. I have it working now. By the way, is there a way to get the scrollbar's width (for the vertical scrollbar) and height style (for the horizontal scroll bar) in the container form of the panel? Jason Merrill Bank of America GTO LLD

Re: [flexcoders] BlazeDS mailing list?

2008-02-19 Thread Matt Chotin
We're generally using this list for Blaze questions as well I think. Since most Blaze questions relate to Flex at the moment we're trying not to split the list which we think will just result in cross-posting. That's the experiment for the moment. Matt On 2/19/08 7:14 AM, Daniel Freiman

Re: [flexcoders] Re: Alternate row color of DataGridColumn

2008-02-19 Thread Sherif Abdou
i will look at it over the weekend, but my guess is you have to switch our the stuff in the drawRowBackground, drawColumnBackground and drawRowGraphics to make it work. - Original Message From: danish909 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, February 19, 2008

RE: [flexcoders] Re: Problem with focus in secondary popups

2008-02-19 Thread Alex Harui
systemManager.activate From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dmitri Girski Sent: Tuesday, February 19, 2008 7:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problem with focus in secondary popups Hi guys,

RE: [flexcoders] Re: Alternate row color of DataGridColumn

2008-02-19 Thread Alex Harui
There's no easy way to do this. You might consider using the background color renderer example on my blog and just draw the right color based on listData.rowIndex (and maybe owner.verticalScrollPosition) My blog is at blogs.adobe.com/aharui From:

[flexcoders] Re: Flex Ant with external assets

2008-02-19 Thread kp_gem
Thank you for your time, Gaurav. I hope adobe will fix it soon. :-) --- In flexcoders@yahoogroups.com, Gaurav Jain [EMAIL PROTECTED] wrote: This looks like a bug. Can you please file a bug at http://bugs.adobe.com/flex Thanks, Gaurav --- In flexcoders@yahoogroups.com, kp_gem

[flexcoders] Re: BlazeDS mailing list?

2008-02-19 Thread meteatamel
There isn't a mailing list for BlazeDS but there's a forum where you can ask questions. There is a link for it fro BlazeDS site: http://labs.adobe.com/technologies/blazeds/ -Mete --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: Is there a (pseudo)official developer

[flexcoders] Re: Flex Ant with external assets

2008-02-19 Thread Gaurav Jain
This looks like a bug. Can you please file a bug at http://bugs.adobe.com/flex Thanks, Gaurav --- In flexcoders@yahoogroups.com, kp_gem [EMAIL PROTECTED] wrote: Thanks Gaurav, Here is my directory structure for multiple projects. --- include - assets - img | |- test | |- test1

[flexcoders] Re: Is it possible to have 2 children of viewstack visible?

2008-02-19 Thread jmfillman
Max, I would think that States with transition effects would be the easiest way to do this. Jason --- In flexcoders@yahoogroups.com, m.frigge [EMAIL PROTECTED] wrote: Knock.. knock.. nobody knows this?? A simple no it doesn't work would be alright too :-) ??? --- In

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Paul Decoursey
mime type is wrong... I have no control over it, you'll have to adjust it client side. On Feb 19, 2008, at 12:14 PM, Sherif Abdou wrote: file wont open and it saves as a word document - Original Message From: Paul Decoursey [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Re: Default Application background color during intialization

2008-02-19 Thread Eric Cancil
you can add a compiler option On Feb 19, 2008 1:03 PM, jmfillman [EMAIL PROTECTED] wrote: You can also add a compiler option to set this. -default-background-color #00 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Jerry DuVal [EMAIL PROTECTED] wrote: On

RE: [flexcoders] showDataTips are not working for the Datagrid columns having itemRenderers

2008-02-19 Thread Alex Harui
The item renderer is responsible for showing the datatips. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of satyakishore Sent: Tuesday, February 19, 2008 3:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] showDataTips are not

[flexcoders] Re: grouping using XMLListCollection in AdvancedDataGrid (R/O or R/W?)

2008-02-19 Thread mr_j_harris
Hi Nikunj and Screeni_r Just wondering here: do you need to be able to not only view the XML data (Read/Only), but also update the data (Read/Write) and if you are using it in a Read/Write mode, are you having simple successes with that, or some frustration? For myself, I've had some

RE: [flexcoders] The width change works in Flash CS3 but not in Flex

2008-02-19 Thread Alex Harui
That's correct. The UIComponent width/height model is more like the standard UI models. As such, it is not directly tied to the underlying Flash transforms. If you read up on how to create custom components, you'll see that you should be doing your drawing in updateDisplayList if you need to

RE: [flexcoders] why is measureHeight in ApplicationBackground 8?

2008-02-19 Thread Alex Harui
It could be any non-zero number. I guess somebody liked 8. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Tuesday, February 19, 2008 8:54 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] why is

Re: [flexcoders] Cannot embed Flash9 symbols

2008-02-19 Thread Sherif Abdou
All right so i hope i understood what your saying, what you need to do is bring the Car and the Sign to the Stage, Hit F8 and convert both of them to Symbols/Graphics and then export them and they should work. I tried that and i am able to embed it in flex App. - Original Message

Re: [flexcoders] Implementing Office 2007 menus

2008-02-19 Thread Samuel Neff
I personally hate the ribbon and won't switch to office 2007 'cause of it. I'm happy with Office 2003 for now and our company is evaluating alternate options 'cause Office 2007 is horrible on many fronts (new file format, ribbon, and in general bloat). But the very important point is that the OP

Re: [flexcoders] BlazeDS mailing list?

2008-02-19 Thread Daniel Freiman
That's fair point/concern. In my couple weeks of working with Blaze all of my questions have been about server-side issues, but I'm not usually the average case. We'll see what happens. - Dan Freiman On Feb 19, 2008 1:18 PM, Matt Chotin [EMAIL PROTECTED] wrote: We're generally using this

[flexcoders] Re: showDataTips are not working for the Datagrid columns having itemRenderers

2008-02-19 Thread mr_j_harris
Hi Alex, I don't know if you have any influence on the matter (i.e. are you an Adobe Engineer?), but, I can only assume the MXML compiler happily processed the mx:DataGridColumn attribute specifications that included the non-supported use case here: dataTipFunction AND itemRenderer If

[flexcoders] Re: Implementing Office 2007 menus

2008-02-19 Thread lytvynyuk
What is the point to copy?! What about to create something yourself? --- In flexcoders@yahoogroups.com, Fidel Viegas [EMAIL PROTECTED] wrote: Hello folks, I am trying to implement the Office 2007 menus, and I am trying to imagine what sort of Containers to use. So far, I have figured that I

  1   2   >