[flexcoders] Re: Supressing drag/move of PopupManager window?

2008-05-13 Thread chigwell23
Thanks Alex - this is exactly what I was looking for. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Try setting isPopUp=false From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent:

[flexcoders] DataGridHeader with TextInput : text values lost on scroll

2008-05-13 Thread gaurav1146
Hi, I have a datagrid to which I am adding a TextInput in the Header by overriding the createChildren() method of AdvancedDataGridHeaderRenderer. The problem is that when I have certain text in the header textinput and the user performs a scroll on the DataGrid the createChildren() method is

Re: [flexcoders] DataGridHeader with TextInput : text values lost on scroll

2008-05-13 Thread Josh McDonald
My guess is you'll have to keep a copy of the new text in your dataprovider, as it's done that way in order to re-use the renderers for the rows and cut down on memory usage. On Tue, May 13, 2008 at 4:38 PM, gaurav1146 [EMAIL PROTECTED] wrote: Hi, I have a datagrid to which I am adding a

[flexcoders] Re: DataGridHeader with TextInput : text values lost on scroll

2008-05-13 Thread gaurav1146
Yes, adding it to the dataProvider or keeping a separate array for the textInput values is one of the ways. But I was thinking if there could be any other way where I could read the current value from the textbox and set the new textbox to this value without storing the user entered values in an

[flexcoders] Please help with embedding

2008-05-13 Thread Richard Rodseth
I'm attempting to embed images in resource files, and have assets and the like as siblings of src, rather than within it. I have now organized my assets, stylesheets and locale-specific property files into a SWC project as follows resourcesproj images zoom.png stylesheets myapp.css

[flexcoders] Re: Flash CS3 Component Creation

2008-05-13 Thread swidnikk
Maybe I should clarify. In STEP 2, I can load the SWF module from STEP 1 but what I'm really interested in is the component in the SWC file. I to be able to use the UIMovieClip, trigger transitions, change state, listen to its events etc... this is what I am having trouble with. Thanks. ---

[flexcoders] dragAndDrop in DataGrid and HList? How?

2008-05-13 Thread Carlo Gulliani
good time, everybody, i have two components: DataGrid and HList. I wanna move item from datagrid to hlist, it's ok, all working. mx:DataGrid width=100% height=500 id=dg dragEnabled=true mx:columns mx:DataGridColumn dataField=Name sortable=false width=150

Re: [flexcoders] String to XML oddness

2008-05-13 Thread Tom Chiverton
On Monday 12 May 2008, Alex Harui wrote: XML is totally different code from XMLDocument so there could be a bug somewhere. Please file a bug with a test case. Will do. I'll have to make a sanitised version of the XML file first, then I'll post back with the bug number. -- Tom Chiverton

Re: [flexcoders] Re: ProgressBar itemRenderer

2008-05-13 Thread Tom Chiverton
On Tuesday 13 May 2008, Hob Spillane wrote: Did you ever have any luck resolving this? It's been a while since your post, but I'm having the same problem. It also happens in the AdvancedDataGrid. The correct way to do this is to write an override for 'function set data()' and re-setup you

RE: [flexcoders] Disable compiler warning: CSS type selectors are not supported in components: 'xxx'

2008-05-13 Thread Rick Winscot
Did you provide the Boolean flag? Clean and recompile. all unused css type selector warnings will be filtered. -show-unused-type-selector-warnings=false Details at: http://www.quilix.com/node/8 Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Advanced Data Grid Item Editor

2008-05-13 Thread Tim Stewart
Hi, I have an advanced data grid which I populate from an array of objects, each with a collection of child objects, and it displays fine. The problem is when I start to make it editable. It seems that setting the AdvancedDataGrid.editable property to item should make my child objects editable,

[flexcoders] Delay recursive function

2008-05-13 Thread Nicholas
I've looked for other threads on this, but haven't found anything that has really helped me yet. I've made a sorting function that dispatches an event every time it swaps values in an array. The eventlistener calls a function that updates a display to show visually how the array has changed. The

[flexcoders] AdvancedDataGrid custom cell renderer problem

2008-05-13 Thread thomas nordahl
Hi I have a huge problem. I am making a type of a ganttChart and im trying to do it like this. I get an Array from server containind calendar data. then i get a array from server containing info about projects. then I create an Advanced datagrid and compare the two arrays and if there is a

[flexcoders] Re: i18n and embedded fonts

2008-05-13 Thread deepak_michael
Hi Tom, Thanks for the reply. No, the font doesn't contain the glyphs... but if I had set the same as a device font instead of embedding it, the characters for the Japanese/Chinese/non-latin characters appear. So, if the font's not embedded and if characters are encountered that is not in the

[flexcoders] Chromeless YouTube Player

2008-05-13 Thread comfederation
If you have managed to use the new chromeless YouTube player from within Flex 3, could you please post an example. Thanks.

Re: [flexcoders] Re: i18n and embedded fonts

2008-05-13 Thread Tom Chiverton
On Tuesday 13 May 2008, deepak_michael wrote: No, the font doesn't contain the glyphs... but if I had set the same as a device font instead of embedding it, the characters for the Japanese/Chinese/non-latin characters appear. If you (embed) a font, and it lacks the glyphs, of course you get

Re: [flexcoders] Delay recursive function

2008-05-13 Thread Paul Andrews
If you move sort(a, l, i-1); sort(a, i+1, r); into the event handler, you should have what you want. Paul - Original Message - From: Nicholas [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, May 13, 2008 6:07 AM Subject: [flexcoders] Delay recursive function

[flexcoders] error while extending dictionary error ..

2008-05-13 Thread Mayur Bais
Hi all, I have class extending a dictionary class: public class mydict extends Dictionary { publicstatic instance:mydict // done to maintain singleton class function mydict (){ super(); } public static funtion getInstance():mydict { return instance; }

[flexcoders] Re: i18n and embedded fonts

2008-05-13 Thread deepak_michael
Hi Tom, Thanks for the quick reply. If you (embed) a font, and it lacks the glyphs, of course you get nothing. If you use a font that does have them i.e. the device font, you will get them appearing. No ? It's the same font in both the cases. I embedded the Trebuchet MS font earlier and in the

Re: [flexcoders] Re: i18n and embedded fonts

2008-05-13 Thread Claus Wahlers
In an application i'm currently working on (which is not done in Flex though - i'm using Flash CS3 and the CS3 UI Components), i subclass the components and add an alternativeTextFormat style. This way i can set it to display an embedded font that only contains latin glyphs, and let it

Re: [flexcoders] Re: How to delete a workspace in FB3

2008-05-13 Thread Tom Chiverton
On Tuesday 13 May 2008, bhaq1972 wrote: Any suggestions anyone? Why not just delete the folder from your disk ? Another question - I'm planning to create 2 workspaces which contain a copy of the same projects. How do I tell which workspace i'm in? I use the Mylyn task focused file navigator,

Re: [flexcoders] Drag and Drop (modify default dragProxy)

2008-05-13 Thread nwebb
Thanks Alex, I tried to follow the Flex classes to see what was happening (although I couldn't access DragManagerImpl or IDragManager). Looks as if dragImage is an instance of DataGridDragProxy, so I created my own subclass (which does nothing but create and populate a Label for the moment) and I

[flexcoders] Re: How to delete a workspace in FB3

2008-05-13 Thread bhaq1972
Any suggestions anyone? Another question - I'm planning to create 2 workspaces which contain a copy of the same projects. How do I tell which workspace i'm in? (I don't want to start changing code in workspaceA when I should have been doing it in workspaceB) --- In

[flexcoders] using files

2008-05-13 Thread Tom Preet
Hi, In my application am using the text file like .txt, .pdf files. when I click on the button I need to a open that pdf file. can anyone help me how to using the files with in Flex .. Thanks in advance, tomt

Re: [flexcoders] Drag and Drop (modify default dragProxy)

2008-05-13 Thread nwebb
Thanks Daniel, trying that now I seem to be having some problems getting anything to show up in my DataGridDragProxy subclass but I'm sure I'll work out the issue soon enough. Much appreciated. On Mon, May 12, 2008 at 3:37 PM, Daniel Gold [EMAIL PROTECTED] wrote: I think if you wanted to

[flexcoders] Maintaining styles and locales(proeprties files)

2008-05-13 Thread mydarkspoon
Hi, I'm currently working on a project where both styles and language content are externalized and loaded at runtime. The same application is supplied to all clients from the same code base, and the changes are only made on the locales/styles. As the styles and the locales are compiled for every

Re: [flexcoders] Disable compiler warning: CSS type selectors are not supported in components: 'xxx'

2008-05-13 Thread Josh McDonald
I'll try again in the morning and double-check all the spellings and get back to you :) Cheers, -J On Tue, May 13, 2008 at 6:35 PM, Rick Winscot [EMAIL PROTECTED] wrote: Did you provide the Boolean flag? Clean and recompile… all unused css type selector warnings will be filtered.

Re: [flexcoders] Re: DataGridHeader with TextInput : text values lost on scroll

2008-05-13 Thread Josh McDonald
Maybe I'm confused, but what good would that do? Is the value the same for all records? On Tue, May 13, 2008 at 5:10 PM, gaurav1146 [EMAIL PROTECTED] wrote: Yes, adding it to the dataProvider or keeping a separate array for the textInput values is one of the ways. But I was thinking if there

[flexcoders] Re: How to delete a workspace in FB3

2008-05-13 Thread bhaq1972
I found the way to do it. Basically, u have to close flexbuilder. And delete the workspace reference stored in org.eclipse.ui.ide.prefs You can find this file in My Documents\Flex Builder 3 \configuration\.settings Now how do I answer my second question? --- In

[flexcoders] Re: Flash CS3 Component Creation

2008-05-13 Thread swidnikk
Just to update the group, I figured this out and below is a brief description. STEP 1 - Flex Component Kit Export SWC from Flash using Flex Component Kit. STEP 2 - Flex Module Project include the SWC in a Flex project and enable the -load-externs=report.xml compiler option. I also created an

[flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Mathieu Fernandez
Hi everybody, My question is very easy : how can Icreate .doc file using Flex 3 ? Is there any library ? component ? module that I can use to ? Thank you in advance.

[flexcoders] Re: SQL statement is not finding my table in AIR app

2008-05-13 Thread bredwards358
Never mind, I found the problem , turns out I wasn't referencing the database file when I was opening the connection.

Re: [flexcoders] How to create linechart legend on each line

2008-05-13 Thread Sangavi G
Hi, I am not able to understand what you are looking for. Do u want to show labels for lines like in columns and Bars? Regards, Sangavi On Mon, May 12, 2008 at 5:43 PM, Swamy Nathan [EMAIL PROTECTED] wrote: Hi Folks, Am working with the LineChart. I want to show the labels to each line.

Re: [flexcoders] using files

2008-05-13 Thread Tom Chiverton
On Tuesday 13 May 2008, Tom Preet wrote: when I click on the button I need to a open that pdf file. navigateToUrl() -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership

Re: [flexcoders] Re: Trying to use FileSystemList

2008-05-13 Thread Jon Santos
Hi Catoi already have try ur applicaiton in my project. When i load the structure directories of my ROOT, if i click one folder i always get one error : ArgumentError: Error #2025: El objeto DisplayObject proporcionado debe ser un elemento secundario del llamador.  at

RE: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Rick Winscot
Hmm. Microsoft can barely do that! Seriously though - a native .doc file? Directly - no. If you have a server with a product like Aspose Word (www.aspose.com) installed - maybe. The straight forward scenario is to install components or libraries on the server (since Flex would have a difficult

[flexcoders] Re: Sending data to the Server

2008-05-13 Thread netdeep
I got several errors on the server when I tried to add those properties to the services and messaging config files. Where are they supposed to go exactly? My messaging channel is a ServiceAdapter defined in the messaging-config.xml file as: adapter-definition id=TerracottaGateway

Re: [flexcoders] using files

2008-05-13 Thread Tom Preet
Hi Tom, Thanks for the reply.. navigateToUrl() will be used for calling the another file in mxml, But, by using the same navigateToUrl() *shall we call the text files and pdf files. *Thanks, Tomt. On Tue, May 13, 2008 at 5:59 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 13 May

Re: [flexcoders] using files

2008-05-13 Thread Tom Chiverton
On Tuesday 13 May 2008, Tom Preet wrote: But, by using the same navigateToUrl() *shall we call the text files and pdf files. Yeah, it's what we do. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP

[flexcoders] Flexstore problem

2008-05-13 Thread markflex2007
I try to run the store in my local pc. But I am not lucky and it look for beige.swf file,I check the folder ,it only have beige.css file. Do you think I can create the beige.swf with beige.css? Please let me know how to do this. Thanks Mark

Re: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Tom Chiverton
On Tuesday 13 May 2008, Mathieu Fernandez wrote: My question is very easy : how can Icreate .doc file using Flex 3 ? Is there any library ? component ? module that I can use to ? You use the POI Java project via ExternalInterface... -- Tom Chiverton

[flexcoders] Re: Authentication against a RESTful web service

2008-05-13 Thread rydellfinn
Seth - Thanks - I was aware of that. I've worked with REST with just GET and POST before. I look forward to when the Player does support all the methods. That aside, what do you use on the back end and how do you authenticate? I'm coming from a Java background, and I have found there are

Re: [flexcoders] Flexstore problem

2008-05-13 Thread Tom Chiverton
On Tuesday 13 May 2008, markflex2007 wrote: Do you think I can create the beige.swf with beige.css? Please let me know how to do this. Just run mxmlc on it, or choose 'compile to swf' from Builders right click menu. -- Tom Chiverton This

Re: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Mathieu Fernandez
Tom Chiverton a écrit : You use the POI Java project via ExternalInterface... Could you be more precise ? I can use the API Java POI but how ? How can I connect Java and Flex ? Rick Winscott a écrit : Hmm... Microsoft can barely do that! Seriously though -- a native .doc file? Directly --

[flexcoders] really need help

2008-05-13 Thread Gustavo Duenas
Hi Coders, how is going I really need some help with this matter, I have an I frame component, I placed into a panel and when it is rendering the view, the browser shows the iframe out of the panel, totally misplaced why? I hope I have better luck than with my last post. Regards,

[flexcoders] datagrid column width - by percentage

2008-05-13 Thread ibo
Why is it that setting Datagrid column width by percentage is not allowed? How do make sure your columns dont get messed up when viewed from different monitor resolutions?

Re: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Mathieu Fernandez
Rick Winscot a écrit : Hmm... Microsoft can barely do that! Seriously though -- a native .doc file? Directly -- no. If you have a server with a product like Aspose Word (www.aspose.com http://www.aspose.com) installed -- maybe. The straight forward scenario is to install components or

Re: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Tom Chiverton
On Tuesday 13 May 2008, Mathieu Fernandez wrote: How can I connect Java and Flex ? ExternalInterface, apparently. According to the list archives and Google. Never done it myself. Remember AIR isn't 'meant' to be able to call out to the O/S, so any solution may or may not be stable, and of

RE: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Jim Hayes
How much of a word document do you want, if that's not a totally stupid question? I have in the past created an html file, saved it with a .doc file extention and word seemed quite happy to open and display it (I'm refering to windows, mac may well be / probably is different. It probably

[flexcoders] Re: i18n and embedded fonts

2008-05-13 Thread deepak_michael
Thanks for the reply Claus. I did think about setting the TextFormat and thereby the font at runtime but wasn't sure on how this would affect the performance. Any sample code would be greatly appreciated :) I'm trying it out now and seem to have run into an issue with the whole of the text not

Re: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Mathieu Fernandez
Tom Chiverton a écrit : ExternalInterface, apparently. According to the list archives and Google. Never done it myself. Remember AIR isn't 'meant' to be able to call out to the O/S, so any solution may or may not be stable, and of course you now have to ship a JRE and some .jar files with

[flexcoders] Re: Sending data to the Server

2008-05-13 Thread netdeep
Hey my bad, I just found out I was not instantiating my AxisObject class correctly on the flex side. So I can pass the variables find now. However I would still like to figure out how to turn on the warning messages in the config files so that in the future I can hopefully catch mistakes

Re: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Mathieu Fernandez
Jim Hayes a écrit : How much of a word document do you want, if that's not a totally stupid question? I have in the past created an html file, saved it with a .doc file extention and word seemed quite happy to open and display it (I'm refering to windows, mac may well be / probably is

[flexcoders] Calling static function on Class instance

2008-05-13 Thread Giles Roadnight
Hi All I have a class (BaseTemplate) that is extended to become lots of different Template classes. I have a list class that takes an array of Class objects to allow a user to select a template (the renderer creates an instance of the class). When I click an item in the list I want to call a

[flexcoders] String Replace

2008-05-13 Thread Tom Preet
Hi, In my application am using remote object method for retrieving data from Java class. in the ResultEvent am storing the values in String. But the data from the java was displa,ying as ,aa,bb,cc,dd ,AA,BB,CC,DD ,ab,bc,bd . But, comma(,) Symbol is displaying before the starting of each

[flexcoders] Re: Calling static function on Class instance

2008-05-13 Thread Giles Roadnight
Along the same lines - how do I get the class name from a Class object. If I do toString() I get [class HeaderImage1]. Do I just have to extract the string from that? Thanks again Giles On Tue, May 13, 2008 at 4:21 PM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I have a class

RE: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread zoltan
If you need this functionality only for windows and you are using AIR then this may help you http://aperture.fluorinefx.com/ As it does not provide currently any word specific api one option would be to save an xml file with the content then run a vbscript that converts it to a doc file (you would

[flexcoders] a bit of information about Iframes

2008-05-13 Thread Gustavo Duenas
I FRames sucks, I've just realized that I have so many problems with that That I'm giving up with them. 1. the position of the I frame is always absolute in the html, so if you have your flex centered using the template (centering the div) is not working properly 2. when you change of

Re: [flexcoders] Maintaining styles and locales(proeprties files)

2008-05-13 Thread Mayur Bais
can u not keep the styles and text file..in once folder.. and add that folder as a external source path ..to all ur locale project.. and there by only one copy gets used across all projects... On 5/13/08, mydarkspoon [EMAIL PROTECTED] wrote: Hi, I'm currently working on a project where both

Re: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Mathieu Fernandez
zoltan a écrit : If you need this functionality only for windows and you are using AIR then this may help you http://aperture.fluorinefx.com/ http://aperture.fluorinefx.com/ As it does not provide currently any word specific api one option would be to save an xml file with the content then

RE: [flexcoders] How to create .doc files (Word files) with Flex ?

2008-05-13 Thread Kevin Aebig
Why would you be surprised? The Word format is bloated and extremely feature rich. Every time you wonder why a specific feature wasn’t added to the Flash Player, remember how big it is… You need to be more specific in what you’re trying to accomplish if you want specific help. What features do

[flexcoders] insert unique item

2008-05-13 Thread annouss79
hi everyone. how can i control that a user should insert unique item in a table ? i'm using something like this : markingHibernateService.fill(resCheck,flex:hql,from Marking m where m.offre = ? and m.users = ?,param); resCheck.addEventListener(CollectionEvent.COLLECTION_CHANGE,checkMarking);

[flexcoders] highlighting text

2008-05-13 Thread getflex
Hi everyone.. Which is the best way to highlighting the textArea text. i tried with setSelection but cant able to store it..anyone help me out... Thanks

[flexcoders] Re: How to delete a workspace in FB3

2008-05-13 Thread Amy
--- In flexcoders@yahoogroups.com, bhaq1972 [EMAIL PROTECTED] wrote: I found the way to do it. Basically, u have to close flexbuilder. And delete the workspace reference stored in org.eclipse.ui.ide.prefs You can find this file in My Documents\Flex Builder 3 \configuration\.settings

[flexcoders] Re: Maintaining styles and locales(proeprties files)

2008-05-13 Thread mydarkspoon
I don't see how this can help maintaining the projects. Maybe I didn't explain myself, basically, the configuration is like: Every client has 2 projects: style project and locales project. If I have 2 clients, both would have, for the simplicty, these 2 files: Client A's style project:

RE: [flexcoders] highlighting text

2008-05-13 Thread Alex Harui
setSelection is correct. What do you mean by not able to store it? You may also need to subclass, get to the internal textfield and flip the alwaysShowSelection property. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of getflex Sent:

RE: [flexcoders] Re: Calling static function on Class instance

2008-05-13 Thread Alex Harui
You mean you have: pulbic class Giles { public static function Roadnight():void { } } And var c:Class = Giles; If so it is just just be c.Roadnight or c[RoadNight] From: flexcoders@yahoogroups.com

RE: [flexcoders] String Replace

2008-05-13 Thread Alex Harui
What code did you use? A regular string replace should just replace the first match. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Preet Sent: Tuesday, May 13, 2008 8:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] datagrid column width - by percentage

2008-05-13 Thread Alex Harui
We never got around to implementing it. If horizontalScrollPolicy=off, the relative widths assigned are kept in proportion so it is like %. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ibo Sent: Tuesday, May 13, 2008 7:50 AM To:

RE: [flexcoders] Delay recursive function

2008-05-13 Thread Alex Harui
Or callLater or setTimeout From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Andrews Sent: Tuesday, May 13, 2008 2:15 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Delay recursive function If you move sort(a, l,

[flexcoders] Push technology

2008-05-13 Thread markgoldin_2000
I would really want to try this technology with Flex. How do I start? Any sample apps. available? I am using ASP as my back-end. Thanks

RE: [flexcoders] error while extending dictionary error ..

2008-05-13 Thread Alex Harui
Don't extend dictionary, just return a Dictionary. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mayur Bais Sent: Tuesday, May 13, 2008 2:11 AM To: [EMAIL PROTECTED]; flexcoders@yahoogroups.com Subject: [flexcoders] error while

[flexcoders] AIR Persistance mechanisims?

2008-05-13 Thread Cameron Childress
Is anyone aware of any Lightweight AIR Persistence mechanisms (in the spirit of Hibernate) for VOs? I am working alot of AIR and SQLite and mostly when I am using SQLite, I'm just mimicking the VO structure for storing objects and then bringing them back out later. It's alot more code than I

RE: [flexcoders] dragAndDrop in DataGrid and HList? How?

2008-05-13 Thread Alex Harui
The data object that got dropped ends up in the dataProvider, and the Image will pull a value from that dataObject based on labelField or labelFunction of the HList From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carlo Gulliani Sent:

RE: [flexcoders] Please help with embedding

2008-05-13 Thread Alex Harui
I think the formatting got lost so we have no idea what your set up is. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Tuesday, May 13, 2008 12:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Please

[flexcoders] Scroll HBox

2008-05-13 Thread markgoldin_2000
I have an HBox as a container that holds a number of dataGrids. When everything is loaded it looks just like a big dataGrid with a dataGrid in each column. Everything works fine, but my users want to scroll it horizontally on the column basis. So, when they click on the right scrollbar button,

Re: [flexcoders] Push technology

2008-05-13 Thread Merle Reine
One good idea would be to ditch microsoft and go for a linux/mysql backend which is more efficient and cost effective. On Tue, May 13, 2008 at 10:40 AM, markgoldin_2000 [EMAIL PROTECTED] wrote: I would really want to try this technology with Flex. How do I start? Any sample apps.

[flexcoders] Call DLL functions from actionscript

2008-05-13 Thread Allan Pichler
Does anyone know if one can call functions from arbitrary dlls in actionscript? I know it's highly non-cross platform, but still? Thanks --Allan http://www.unzipmenow.com

RE: [flexcoders] Scroll HBox

2008-05-13 Thread Alex Harui
hBox.horizontalScrollPosition += dg.columns[0].width From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, May 13, 2008 10:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Scroll HBox I have an

[flexcoders] Air application background transparent color

2008-05-13 Thread sudha_bsb
Hi, I am using Ely Greenfield's Fish Eye Component. I am using that in an AIR application. I have made the application window transparent and had set the background color and background image as empty. However it is taking the default color as black and the entire window comes in black color.

[flexcoders] FileReferenceList crashing IE7

2008-05-13 Thread nathanpdaniel
I am writing a simple app to upload files to a server. Running FB3 and IE7. I have a FileReferenceList object which I'm calling the browse() function on. I select the files the first time around and it works great. However, when I click my browse button a second time, the file browser

Re: [flexcoders] a bit of information about Iframes

2008-05-13 Thread Derrick Anderson
i don't know what specific issues you are having with this, but I can only be helpful in maybe helping you find the information you need. people here tend to respond to posts that don't make them 'think' too much about what the problem really is, nobody has time for that. They also seem to prefer

[flexcoders] Re: Call DLL functions from actionscript

2008-05-13 Thread nathanpdaniel
Here's a good place to start - though I'm not 100% sure if it's possible - I think there's a way to do it though: http://www.adobe.com/devnet/flex/flex_net.html --- In flexcoders@yahoogroups.com, Allan Pichler [EMAIL PROTECTED] wrote: Does anyone know if one can call functions from arbitrary

[flexcoders] Re: Push technology

2008-05-13 Thread markgoldin_2000
Not an option. --- In flexcoders@yahoogroups.com, Merle Reine [EMAIL PROTECTED] wrote: One good idea would be to ditch microsoft and go for a linux/mysql backend which is more efficient and cost effective. On Tue, May 13, 2008 at 10:40 AM, markgoldin_2000 [EMAIL PROTECTED] wrote:

[flexcoders] Code Hinting in include-based Code Behind files

2008-05-13 Thread Joseph Balderson
A potentially silly question, but one I have not managed to figure out. My question is, is there any way to get code hinting for MXML assets working in included as files? Often in my projects I use a pseudo-code behind for MXML files by simply including the AS code in the source prop for the

RE: [flexcoders] FileReferenceList crashing IE7

2008-05-13 Thread Battershall, Jeff
Just a wild guess, but are you creating a new FileReferenceList each time? Or attempting to use the same one twice? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nathanpdaniel Sent: Tuesday, May 13, 2008 2:19 PM To:

[flexcoders] Re: FileReferenceList crashing IE7

2008-05-13 Thread nathanpdaniel
For those who would like to know: private function selectHandler(event:Event):void { myFiles = files.fileList; } The previous function crashes IE7 on Windows Vista - I'd be interested in learning why. The following does not: private function selectHandler(event:Event):void { myFiles =

[flexcoders] Re: FileReferenceList crashing IE7

2008-05-13 Thread nathanpdaniel
Using the same one twice, and dumping the selected files into a list of files. If I use concat on my list of selected files, it's fine, but if I try to overwrite my list with the newly selected, it crashes it. --- In flexcoders@yahoogroups.com, Battershall, Jeff [EMAIL PROTECTED] wrote:

Re: [flexcoders] dragAndDrop in DataGrid and HList? How?

2008-05-13 Thread Carlo Gulliani
thanks, will be trying tomorrov, i understand drag and drop working in datagrid and listcollection's components. and theoretical, can i use construction such as wrote Lee Brimelov in his blog www.gotoandlearn.com. I mean create sprite object and to set it drop property and when i dropped my

RE: [flexcoders] Re: FileReferenceList crashing IE7

2008-05-13 Thread Battershall, Jeff
Try creating a new FileReferenceList each time. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nathanpdaniel Sent: Tuesday, May 13, 2008 2:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: FileReferenceList crashing IE7 Using the

Re: [flexcoders] dragAndDrop in DataGrid and HList? How?

2008-05-13 Thread Carlo Gulliani
thanks, will be trying tomorrov, i understand drag and drop working in datagrid and listcollection's components. and theoretical, can i use construction such as wrote Lee Brimelov in his blog www.gotoandlearn.com. I mean create sprite object and to set it drop property and when i dropped my

[flexcoders] Re: Flexstore problem

2008-05-13 Thread markflex2007
Hi, I try to run this mxmlc beige.css in command line , but I get error message. How to do mxmlc on it Thanks Mark --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 13 May 2008, markflex2007 wrote: Do you think I can create the beige.swf with beige.css?

[flexcoders] Re: Scroll HBox

2008-05-13 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: hBox.horizontalScrollPosition += dg.columns[0].width Alex, couldn't he also remove the real scrollbars and use a filter function to change the filtering on the collection acting as a dataprovider on click of the

[flexcoders] Actionscript 3 Cookbook question

2008-05-13 Thread Amy
Hi, all; I'm reading in the AS3 Cookbook about working with dates, and it frequently mentions ascb.util.DateUtilities. I'm thinking this is a Flash only package, and it seems a lot of the recipes depend on it. Is there a similar tutorial online that provides a more Flexy way to do this?

RE: [flexcoders] Re: Scroll HBox

2008-05-13 Thread Alex Harui
If you use repeater, there is no selection model. I'm not sure what he's looking for. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday, May 13, 2008 12:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

[flexcoders] getURL blocked by IE7. --------- Please help!

2008-05-13 Thread gevgelija50
I'm using a Flex 1.5 app via Internet Explorer 7 and I am having the following issue: I have a button in my Flex page that calls the getURL method to open an .axd page and download a file from an image server. getURL('http://www.thedomain.com/ResourceDownloader/getOriginal.axd? id=' +

RE: [flexcoders] Actionscript 3 Cookbook question

2008-05-13 Thread Jeff Hindman
Actually, it’s a Joey Lott package … check out http://rightactionscript.com/ascb/ Regards, -- Jeff H. _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday, May 13, 2008 12:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Re: Calling static function on Class instance

2008-05-13 Thread Gordon Smith
Create an instance of the class and call getQualifiedClassName() on it. Or use describeType() on the Class object. The former is probably faster. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Delay recursive function

2008-05-13 Thread Gordon Smith
It's not that the changes are happening too fast to see. It's that nothing is getting drawn to the screen until the entire sort() method has finished. The Flash Player does delayed frame rendering. Drawing commands don't get rasterized into pixels while your ActionScript method is executing.

[flexcoders] Datagrids in FlexMDI

2008-05-13 Thread julian.leach
Hi We've recently started using FlexMDI and we really like the functionality. However, we are experiencing performance problems with any windows containing datagrids. To display a datagrid 10 columns and 15 rows can take 10 seconds. To switch between windows can take the same length of time

  1   2   >