Re: [flexcoders] User manual

2010-01-22 Thread John McCormack
Hi Christophe, The user manual exists in printed form (4 books, about 15cm thick) but it has no index in the back, which makes it hard to use. I have it, but the pdf format is better. John Christophe wrote: Hello, Does the user manual is still existing for a flex application ? Or did

[flexcoders] Preferred Socket Policy File Server Implementation?

2010-01-22 Thread Karthik Kailash
I'm trying to get my Flex application to connect via socket to my server, so I need to set up a socket policy file server. It seems like there are various roll-your-own implementations floating around out there, but is there any kind of standard or best practice with what to use? Some google

Re: [flexcoders] Adobe pulls Single CPU and 100-user licenses

2010-01-22 Thread Tom Chiverton
On Thursday 21 Jan 2010, busitech wrote: How are these changes affecting your business? Dunno about price, but have you looked at ColdFusion? Comes with LCDS and a bunch of other stuff. -- Helping to administratively introduce granular revolutionary prospective one-to-one customers as part

[flexcoders] Re: Read svg file in FLEX

2010-01-22 Thread flexlearner
I have some attributes in my svg file which I am not able to read using flex builder. Can you help me out in this regard ? Actually I have one svg file which I want to load it then parse it and get the x,y coordinates of path or rectangle which is there in svg file. --- In

[flexcoders] roundtrip catalyst flash builder

2010-01-22 Thread Johannes Nel
Hi I followed the approach outlined by Ryan Stewart by creating the catalyst project, exporting it as a library project, pulling this into flex builder (it automagically creates a library project although you just select flex builder project). So all good one way in. Then i get compile errors, my

[flexcoders] Re: horizontalAlign Puzzling

2010-01-22 Thread criptopus
Yup that did it! --- In flexcoders@yahoogroups.com, turbo_vb timh...@... wrote: I think because horizontalAlign is a style, not a property. Try setStyle(); -TH --- In flexcoders@yahoogroups.com, criptopus sd_brown@ wrote: var boxArray:Array=new Array(); var

[flexcoders] Public Arrays

2010-01-22 Thread criptopus
I have an array of Video Players (yes video players, if people set up more than one in the CMS why should I deny them the luxury). I have just opened a preview window and there they are and they play lovely, just when I click the cross to close the TitleWindow they are displayed in I would

Re: [flexcoders] Public Arrays

2010-01-22 Thread Fotis Chatzinikos
Can you post an example? I have tens of public arrays and arraycollections and they work without any problems... On Fri, Jan 22, 2010 at 2:35 PM, criptopus sd_br...@ntlworld.com wrote: I have an array of Video Players (yes video players, if people set up more than one in the CMS why should I

RE: [flexcoders] User manual

2010-01-22 Thread Stephen Gilson
You can download all Flex 3 doc as HTML or PDF from here: http://www.adobe.com/support/documentation/en/flex/ If you are using the Flex 4 Beta, you can get the doc for the last public Beta release from: http://help.adobe.com/en_US/Flex/4.0/UsingFlashBuilder/index.html Stephen From:

Re: [flexcoders] Re: Setting perspectiveProjection disable children interactivity

2010-01-22 Thread franto
Hi, I have same exact problem in Gumbo. I'm using native 3d support and when I set perspectiveProjection all children loose interactivity or it's screwed up... do you know how to fix it? It's very urgent :) Is there anybody who knows how to fix it? Franto -- Franto Kormanak

[flexcoders] How to click through a component ?

2010-01-22 Thread thomas parquier
Hello, How to get sort of a click-through-component behavior ? In the app I'm coding now, an image with some transparency should not prevent a component behind (not a child) to receive mouse events. have a good day, thomas parquier --- http://www.web-attitude.fr/realisations/ msn :

[flexcoders] Re: Image not loading

2010-01-22 Thread valdhor
The problem is in your Main.mxml file. You have two LoadImage components but only one is displayed (The MXML one). You need to remove the MXML component altogether and add the ActionScript component to the display list. So, Change these lines: mx:VBox width=100% height=100%

[flexcoders] Re: Preferred Socket Policy File Server Implementation?

2010-01-22 Thread jamesfin
Here's a Java based PFS...a flash-player bug seems to still exist though... https://bugs.adobe.com/jira/browse/FP-1866 package import java.io.BufferedReader; import java.io.EOFException; import java.io.IOException; import java.io.InputStreamReader; import java.io.InterruptedIOException;

[flexcoders] Custom ComboBox Class issue

2010-01-22 Thread Warren
Yesterday I posted some code which fixes a bug and adds some features to the ComboBox. Because the ComboBox class has private functions in it, I was forced to copy the code into my own class and modify it. No problems except. I had named my class ComboBox simply because I copied the code

Re: [flexcoders] How to click through a component ?

2010-01-22 Thread kovacs levy
try to use mouseEnabled and mouseChildren properties, if those will set to false the component will not interact with the mouse From: thomas parquier mailingli...@web-attitude.fr To: flexcoders@yahoogroups.com Sent: Fri, January 22, 2010 4:02:20 PM Subject:

Re: [flexcoders] IP adress for Language

2010-01-22 Thread Kevin Benz
Locale is the only thing that really works. IP/Country is fine if you have to model different business processes depending on the location (VAT tax vs Sales Tax). Export restrictions, etc etc. Remember, just because you know they might be in France, doesn't mean they don't prefer English. Over

RE: [flexcoders] Custom ComboBox Class issue

2010-01-22 Thread Vaibhav Seth
its a problem with the namespace. check out for manifest.xml Thanks, Vaibhav Seth. EMAILING FOR THE GREATER GOOD Join me To: flexcoders@yahoogroups.com From: warrenony...@charter.net Date: Fri, 22 Jan 2010 09:17:16 -0600 Subject: [flexcoders] Custom ComboBox Class issue

RE: [flexcoders] Public Arrays

2010-01-22 Thread Vaibhav Seth
If I got you right, are you getting the references as null inside the array or array itself as null ? Then you can call the function on the close event of the window, inside the pop-up component. Thanks, Vaibhav Seth. EMAILING FOR THE GREATER GOOD Join me To: flexcoders@yahoogroups.com

RE: [flexcoders] How to parse xml with namespaces

2010-01-22 Thread Vaibhav Seth
Use regex and eliminate the namspaces from the root tag of the XML, check if it works. Root . . . /Root Thanks, Vaibhav Seth. EMAILING FOR THE GREATER GOOD Join me To: flexcoders@yahoogroups.com From: lukevanderfl...@gmail.com Date: Fri, 22 Jan 2010 03:04:05 + Subject: [flexcoders]

RE: [flexcoders] HSlider max/min position

2010-01-22 Thread Vaibhav Seth
Try rotating the control by 180 degree and give a thumb your own inverted icon, so that it can appear straight. Or else, don't set the values to the control directly, but use a function to set and get its value, take care of the inversion of the values in the setters and getters. Thanks,

RE: [flexcoders] How to dynamically populate the Header Text of Flex Datagrid from XML or from an arrayCollection

2010-01-22 Thread Vaibhav Seth
You need to make it hardcoded, as you hard code the dataField for every column. Else you need to make use of regex and apply it to the XML to make out your nodes for the headers. Good practice is not to pouplate it like this, instead make proper VOs and populate them with your data XML. Your

[flexcoders] Re: Public Arrays

2010-01-22 Thread Amy
--- In flexcoders@yahoogroups.com, criptopus sd_br...@... wrote: I have an array of Video Players (yes video players, if people set up more than one in the CMS why should I deny them the luxury). I have just opened a preview window and there they are and they play lovely, just when I

Re: [flexcoders] How to click through a component ?

2010-01-22 Thread thomas parquier
already set mouseEnabled to false... so as includeInLayout thomas parquier --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056 2010/1/22 kovacs levy

Re: [flexcoders] How to click through a component ?

2010-01-22 Thread thomas parquier
I managed to get an underlying canvas receive events (not a uicomponent as previously set). thomas parquier --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056

[flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-22 Thread busitech
Good to hear from you, Jeff! We are saddened too. We are quite passionate about LCDS, and always have been. We built somewhere in the neighborhood of 14 test cases for LCDS 3.0 during the most recent alpha/beta, so just in the last 6 months our investment has remained quite significant even

[flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-22 Thread busitech
João, would you (and others) mind heading over to Anil Channappa's blog post http://anilchannappa.org/2009/11/20/lcds-3-0-released/ about this to voice your concern? There's a long string of comments which are calling for lower pricing so LCDS can be successful. We are very passionate about

[flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-22 Thread busitech
Hi Tom, in the same vein, Adobe downgraded ColdFusion 9 to include BlazeDS instead of LCDS. Dunno about price, but have you looked at ColdFusion? Comes with LCDS and a bunch of other stuff.

Re: [flexcoders] Custom ComboBox Class issue

2010-01-22 Thread Warren
OK. I read up on manifest files and gave it a go. I had no manifest in my library project so I created one ?xml version=1.0? componentPackage component id=ComboBoxSuper class=myClassLibrary.ComboBoxSuper/ component id=ComboBox class=myClassLibrary.ComboBox/ /componentPackage I added

[flexcoders] file extension missing when save the file.

2010-01-22 Thread markflex2007
Hi, I did this var fileRef:FileReference = new FileReference; fileRef.save(bytes, 'books.xls'); but the popup save window only have books. I need the window have books.xls Why the extension is missing.Please help. Thanks Mark

[flexcoders] problems with firefox 3.6 on a mac

2010-01-22 Thread gwgeiger947
Has any one else experienced issues with double clicking when using Firefox 3.6 on a mac ? I can't get it to work anywhere. I have tried other people's example sites to show double clicking and it works in safari, but not on the new firefox. any ideas, help, suggestions ?

[flexcoders] Re: spark list functions missing?

2010-01-22 Thread Ariel J
1) dataGroup.getElementAt won't return renderers for non-visible items 2) dataGroup.verticalScrollPosition is measured in pixels not items 3) dataGroup.getElementAt cannot receive an index based on the dataProvider because if the 10th item is the first visible item, the index of the renderer for

Re: [flexcoders] Re: spark list functions missing?

2010-01-22 Thread Alex Harui
1. There is also a getVirtualElementAt 2. You’re right. I remembered that after I hit send. Is the element’s Y value useful? 3. getItemIndicesInView might help or getElementIndex On 1/22/10 11:54 AM, arielj...@yahoo.com arielj...@yahoo.com wrote: 1) dataGroup.getElementAt won't

[flexcoders] Re: Datagrid itemrenderer for adding multiple linkbuttons in same gridcolumn

2010-01-22 Thread aramsdell2000
I have put aside the thoughts of making fancy hyperlinks, now I am just trying to understand events in the itemrenderer. I am ashamed to say that even after searching this subject in the forum and googling it, I still find myself struggling. I ended up trying a LinkBar as Tino suggested in

Re: [flexcoders] Custom ComboBox Class issue

2010-01-22 Thread Warren
I found what is causing the problem. ComboBoxSuper failed to work when the arrowButtonWidth wasn't set in the mxml. I never set it in my custom class because it seemed to be there already. There must be some default parameters that the mx:ComboBox pulls in and that my ComboBox version was

[flexcoders] flex 4 - application root

2010-01-22 Thread Ariel J
anyone know how to get a reference to the root Application in some static way. I used to say PopUpManager.addPopup() with the Application.application as the parent. That property isn't there anymore. Are there other options?

[flexcoders] Re: file extension missing when save the file.

2010-01-22 Thread seanmcmonahan
Are you running Windows by chance? I had a problem with missing file extensions on Windows because the system default is to hide extensions for known file types. A quick Google search will tell you how to disable this. Unfortunately there is no way you can know if your users have this

[flexcoders] Re: Custom ComboBox Class issue

2010-01-22 Thread Amy
--- In flexcoders@yahoogroups.com, Warren warrenony...@... wrote: I found what is causing the problem. ComboBoxSuper failed to work when the arrowButtonWidth wasn't set in the mxml. I never set it in my custom class because it seemed to be there already. There must be some default

[flexcoders] Re: How to dynamically populate the Header Text of Flex Datagrid from XML or from an arrayCollection

2010-01-22 Thread Amy
--- In flexcoders@yahoogroups.com, Vaibhav Seth vaibhav.s...@... wrote: You need to make it hardcoded, as you hard code the dataField for every column. Else you need to make use of regex and apply it to the XML to make out your nodes for the headers. Good practice is not to

[flexcoders] Re: Datagrid itemrenderer for adding multiple linkbuttons in same gridcolumn

2010-01-22 Thread Amy
--- In flexcoders@yahoogroups.com, aramsdell2000 aramsdell2...@... wrote: I have put aside the thoughts of making fancy hyperlinks, now I am just trying to understand events in the itemrenderer. I am ashamed to say that even after searching this subject in the forum and googling it, I

Re: [flexcoders] Re: Read svg file in FLEX

2010-01-22 Thread Aaron Hardy
Yeah, spit out some code or an error or something so we can help. On Thu, Jan 21, 2010 at 11:40 PM, flexlearner flexlear...@yahoo.com wrote: I have some attributes in my svg file which I am not able to read using flex builder. Can you help me out in this regard ? Actually I have one svg

[flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-22 Thread joao_m_fernandes
Tom, even with CF8 bundle with LCDS, you have to pay for a Departmental / enterprise license if your CFLCDS instance uses more than 1 CPU. You could always use them in separated instances, cf with all available resources and only LCDS restricted to 1 CPU. João Fernandes --- In

Re: [flexcoders] Re: Custom ComboBox Class issue

2010-01-22 Thread Warren
After digging around some, I found the defaults.css file. I guess I could copy it into an assets folder and correct it for my class. Then I'd have to figure out how to invoke it in the constructor. Problem is I still don't know if I'm missing defaults on the properties too. I guess any

Re: [flexcoders] flex 4 - application root

2010-01-22 Thread Alex Harui
FlexGlobals.topLevelApplication On 1/22/10 2:40 PM, arielj...@yahoo.com arielj...@yahoo.com wrote: anyone know how to get a reference to the root Application in some static way. I used to say PopUpManager.addPopup() with the Application.application as the parent. That property isn't

Re: [flexcoders] Re: Adobe pulls Single CPU and 100-user licenses

2010-01-22 Thread Jeffrey Vroom
That statement about fds.swc certainly was true before, but the DataService apis are used to power the rpc based data tools in the new Flex Builder. In the beta at least, it was the exact same file shipped in LCDS as in FB, so presumably use of that file would be covered by the FB4 license.

[flexcoders] Image not loading [1 Attachment]

2010-01-22 Thread venkat eswar
Hi , In my application when i click gallery1 button image s are loading in the tilelist container.But when i click the back button and then click the gallery2 button, previously loaded images are displaying. What i am missing. Please help me to solve this issue.. Thanks, Venkat

[flexcoders] Selecting a video from a list

2010-01-22 Thread Becky
I am trying to have a video play, by selecting it from a list. Here is the code: mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml; paddingLeft=4 paddingRight=8 paddingBottom=4 horizontalScrollPolicy=off verticalScrollPolicy=off mx:Script ![CDATA[ public function toggle():void { if

[flexcoders] TabNavigator switches to second tab when revealed after a currentState change

2010-01-22 Thread Penny Laus
I've run into a funny problem in a registration application I'm working on. The base state for this application is a TabNavigator with three Canvas subelements. On its own, this works fine. When the application loads, I switch away from the base state to a screen to let the user login/get their

RE: [SPAM] [flexcoders] TabNavigator switches to second tab when revealed after a currentState change

2010-01-22 Thread Tracy Spratt
For a change as significant as that, I suggest using ViewStack instead of states. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Penny Laus Sent: Saturday, January 23, 2010 1:22 AM To:

Re: [SPAM] [flexcoders] TabNavigator switches to second tab when revealed after a currentState change

2010-01-22 Thread Penny Laus
On Sat, Jan 23, 2010 at 5:28 PM, Tracy Spratt tr...@nts3rd.com wrote: For a change as significant as that, I suggest using ViewStack instead of states. Tracy, Thanks very much for responding - I always read your postings with attention. In my case are you suggesting I put everything into