[flexcoders] Re: DYNAMIC actionscript child layout.

2009-02-18 Thread sunild999999
Doh! Jeffry is right, it's a Canvas which positions child components by x,y coordinates. So use a VBox or HBox or something :) --- In flexcoders@yahoogroups.com, Jeffry Houser j...@... wrote: I think that x and y values are defaulted to 0, 0; which would put your text in the top left of

[flexcoders] Country List

2009-02-18 Thread christophe_jacquelin
Hello, I want to make a combo with the list of country. Where can I find such a list ? Thank you, Christophe,

[flexcoders] Send a confirmation Email

2009-02-18 Thread christophe_jacquelin
Hello, How to send a confirmation Email in the flex program when the user get register ? Thank you, Christophe,

Re: [flexcoders] Country List

2009-02-18 Thread Laurent Cozic
Here: http://www.google.com/search?q=country+list -- Laurent Cozic Flash, Flex and Web Application development http://pogopixels.com --- On Wed, 2/18/09, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: From: christophe_jacquelin christophe_jacque...@yahoo.fr Subject: [flexcoders]

[flexcoders] Re: parse SOAP response for values

2009-02-18 Thread m_ollman
Tracy :-) Thought about the namespace issue - some examples where talking about the SOAP Header being removed automatically, I was'nt seeing that. The reult format is E4X. However I could not get into the structure using childNode etc. So I would start by defining the namespace it. SOAP-ENV...

[flexcoders] Re: Unloading a swf that includes a ViewStack can cause a RTE

2009-02-18 Thread rob_mcmichael
Hi Alex, The stack is as follows: === TypeError: Error #1009: Cannot access a property or method of a null object reference. at

[flexcoders] Event passing directly between module and Main application (Shell)

2009-02-18 Thread kuntamayu
Can any one guide me hot to pass Button / mouse events from a module to the Main application (Shell). The scenario is like this : I have two different modules appart from my Main applicaion (1) module for subscription / payment : SubscriModule.mxml (2) module for image slide show :

Re: [flexcoders] Country List

2009-02-18 Thread Simon Bailey
Here are some helpful resources specific to your requirements: http://www.tink.ws/blog/files/as3/PayPalCountries.as http://aralbalkan.com/1128 http://www.peterelst.com/blog/2006/12/24/flex-country-combobox-component/ Simon [ Website ] newtriks.com [ Blog ] nutrixinteractive.com/blog/ On 18 Feb

Re: [flexcoders] Send a confirmation Email

2009-02-18 Thread Simon Bailey
A quick and easy way to do this would be to use URLRequest as below: navigateToURL( new URLRequest( mailto:si...@newtriks.com?subject=registration Complete ), _blank ); Simon [ Website ] newtriks.com [ Blog ] nutrixinteractive.com/blog/ On 18 Feb 2009, at 08:57, christophe_jacquelin wrote:

Re: [flexcoders] Event passing directly between module and Main application (Shell)

2009-02-18 Thread Simon Bailey
Andrew covers this with custom events here: http://blog.schwabe.net/index.cfm/2008/4/29/Dispatching-custom-events-from-a-Flex-Module Simon [ Website ] newtriks.com [ Blog ] nutrixinteractive.com/blog/ On 18 Feb 2009, at 09:46, kuntamayu wrote: Can any one guide me hot to pass Button / mouse

Re: [flexcoders] Send a confirmation Email

2009-02-18 Thread Laurent Cozic
This would open the user's email client, and I don't think he would want the user to send the confirmation email to himself. I think that the right way would be to use a server side script that would take the username as a parameter, build the email and send it. You can do that quite easily in

Re: [flexcoders] Send a confirmation Email

2009-02-18 Thread bjorn
Do this on the serverside, not in Flex. 2009/2/18 christophe_jacquelin christophe_jacque...@yahoo.fr Hello, How to send a confirmation Email in the flex program when the user get register ? Thank you, Christophe, -- http://www.juicability.com - flex

Re: [flexcoders] Send a confirmation Email

2009-02-18 Thread Simon Bailey
LOL my bad, not reading this through properly, doh! On 18 Feb 2009, at 10:11, Laurent Cozic wrote: This would open the user's email client, and I don't think he would want the user to send the confirmation email to himself. I think that the right way would be to use a server side script

Re: [flexcoders] writing data to SQL database

2009-02-18 Thread Tom Chiverton
On Tuesday 17 Feb 2009, Danny Buetow wrote: am able to edit and delete records, yet I am not able to add a record. I receive no error and when running in debug mode, I get no breaks. I have You need to confirm the request was sent or not to ColdFusion - set a break point where the code calls

Re: [flexcoders] Re: HTTPRequest and Air too slow?

2009-02-18 Thread Tom Chiverton
On Tuesday 17 Feb 2009, florian.salihovic wrote: But somehow the HTTPService seems to wait longer for the service's response. Can you get a packet trace off the network ? -- Tom Chiverton Helping to authoritatively benchmark compelling fine-grained back-end best-of-breed functionalities

Re: [flexcoders] Publishing source code without Flex Builder?

2009-02-18 Thread Tom Chiverton
On Tuesday 17 Feb 2009, Keith Hughitt wrote: Anyone know how to include a View Source option in the context menu for Flex applications built using the SDK alone? Do it from Builder, see what it writes where, and package the same files from the command line. -- Tom Chiverton Helping to

Re: [flexcoders] Re: problem with services-config.xml in multiple work environments..

2009-02-18 Thread Tom Chiverton
On Wednesday 18 Feb 2009, tchredeemed wrote: Yeah, I can do that, no big deal, it doesn't really fix the issue because I have to use SecureAMFendpoint when its live and AMFEndpoint when it is not. But both channels in the list for the destination. -- Tom Chiverton Helping to advantageously

[flexcoders] Re: is it possible to track visitors / the page an swf is embedded on

2009-02-18 Thread kuntamayu
Try to track Application.application.url This may help you. :) --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: Look into the BrowserManager, perhaps it will help. Tracy Spratt Lariat Services Flex development bandwidth available

[flexcoders] Re: HTTPRequest and Air too slow?

2009-02-18 Thread florian.salihovic
I actually used Charles to have a look at the network communication. It seems like the data is received in the URLLoader (in my tests i use an URLLoader instead of the HTTPService) about 100 - 120 ms after the data is received. Which is some sort of overhead which might be caused from the

Re: [flexcoders] Re: is it possible to track visitors / the page an swf is embedded on

2009-02-18 Thread Laurent Cozic
Application.application.url will give you the url of the *swf file*, not the url of the document within which the app is embedded. For that, the only way is to use Javascript and ExternalInterface. I think the syntax is: var docURL = ExternalInterface.call(location.href); or it might be

[flexcoders] Bug? Width of single-character label...

2009-02-18 Thread jasonbriggs99
If I have two labels: mx:Label id=label1 text=: / mx:Label id=label2 text=:: / The assigned width of label2, with two characters, is significantly less than the width of label1, with only a single character. I can work around this behaviour by assigning the text of label1 to be : -- i.e.

[flexcoders] Re: problem with services-config.xml in multiple work environments..

2009-02-18 Thread Walter
I also prefer to configure services (ChannelSets/Channels/RemoteObjects etc...) at runtime. Typically I do this by reading in the configuration property values from an XML file when the application loads. There are a couple of IoC/DI (Inversion of Control/Dependency Injection) container

[flexcoders] How to change AdvancedDataGridItemRenderer backgroundColor and textColor props

2009-02-18 Thread Sean
Using the following code, could somebody explain to me why the cells in the regionColumn are not showing with black backgrounds and white text as is being set in the TestADGIR class? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] UNDO function

2009-02-18 Thread appuatchi
Hello every1, Im working in a project which deals with an application to be developed in FLEX. There is a canvas on which im able to draw on it. Now, I should implement an UNDO function which can UNDO the previous drawings. I tried in many ways but was in vain. Can anyone help me out with

[flexcoders] Re: ClassCastException on updateItem

2009-02-18 Thread manuel347
Hi, I imagine that at this time you solved your problem, but i found your post. I had the same problem with a simple app. The problem is that the app doesn't know your VO (Value Object) and for that reason flash player marks ClassCastException; for solving you have to declare a var with your VO

[flexcoders] No codecompletion available

2009-02-18 Thread secrit.service
Hi all, I'm new to Flex, so I will probably ask some simple questions. However to me they look huge. One of the situations I encounter now is following : filename = Application.mxml --- Application script source = Application.as/ CustomComponent id=myComponent/

[flexcoders] Can I use mouseOver() an image in ActionScript

2009-02-18 Thread yossi.baram
Hi, I have some images in a DataGrid cells and I need to chatch the event when I hover on them. The images are created in an ItemRenderer AC, so it has to be done there, raising an Alert for example. Thanks

[flexcoders] Remote object call gives forbidden 403 response

2009-02-18 Thread Netaman
Is there a simple fix for the following message? faultDetail = Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Status 403: url: IIS frontend Cold Fusion 8 backend Randy

[flexcoders] Time stamping a user Logout

2009-02-18 Thread grg_blls
Hi all, I have concluded a sample Flex application where a user logs in (or registers) in the application. I use the Tomcat servlet container plus BlazeDS RPC component and Hibernate persistence to connect to MySQL database. A new user first registers by filling the Registration form. The

Re: [flexcoders] Time stamping a user Logout

2009-02-18 Thread Laurent Cozic
You could make the app ping the server every 5 minutes. Then if the server doesn't receive the ping, assume that the user closed the browser and log him out. Another simpler solution would be to put a timeout on the session. -- Laurent Cozic Flash, Flex and Web Application development

Re: [flexcoders] Can I use mouseOver() an image in ActionScript

2009-02-18 Thread Jeffry Houser
What problems did you have trying to accomplish this? Without testing anything, I would expect the DataGrid to 'capture' the mouseOver event as opposed to the itemRenderer component. So, I'd expect you'd need some way to trigger a function in the renderer based on the DataGrid mouseOver .

[flexcoders] Re: Can I use mouseOver() an image in ActionScript

2009-02-18 Thread yossi.baram
Hi, this is rather complicated. I have a DataGrid, in one of its column I call an ItemRenderer that creates a list of colored images side by side. All I need is to catch the event when I hover over every inner cell image (remember, in a cell I have few images, each one should fire different

Re: [flexcoders] UNDO function

2009-02-18 Thread Fotis Chatzinikos
How do you draw on the canvas? What you should do is to add draw commands on a list, the loop this list and draw on the canvas. When a user presses undo, you remove the last command from the list and redraw On Wed, Feb 18, 2009 at 10:36 AM, appuatchi appuat...@yahoo.co.in wrote: Hello

[flexcoders] Re: Time stamping a user Logout

2009-02-18 Thread grg_blls
Hi Laurent. Thank you for a quick reply. I had this (second) timeout option in mind and it's too static in the scope of my application. Then the ping procedure might be an idea. But what I have really in mind is a more dynamic asynchronous procedure. One like when the web connection is broken

[flexcoders] Desperate Help! crossdomain.xml

2009-02-18 Thread Wally Kolcz
I have a site (http://www2.med.umich.edu/prmc/af/) that had an old crossdomain.xml file that worked fine until FP10. It works fine when visiting from that URL since it on the same server, however, we also have this domain (http://www.victorsvaliant.org/af/) pointing to it also and I get a

[flexcoders] Re: Dynamically changing Vslider or Hslider?

2009-02-18 Thread flexaustin
I guess maybe I should use Programaticaly rather than dynamically. The entire issue lies in the change event. If I rely on it then I end up in a continous loop or rather just a loop, meaning if I change the Vscale via my component by scaling it, I have to change the Vslider.value, which ends up

Re: [flexcoders] Unicode Normalization in flex

2009-02-18 Thread Alan K
I don¹t know anything about the technologies you were referring to, but I created a Flex app on OSX and I had 15 different languages displayed. German being one of them. I had no problems. I just set the app to use Arial MS Unicode. Alan Because of this issue my i was not able to display the

[flexcoders] Object to XMLString

2009-02-18 Thread ilikeflex
Hi I have car object as shown below. I am using custom toXMLString() method to convert the object into the xml representation. In the method i am using the ObjetUtil.getClassInfo(this). The output of the toXMLString method varies sometimes it is 1. car tyre8/tyre color8/color

Re: [flexcoders] Module Issue....

2009-02-18 Thread Eric Dunn
I am a newbie and not sure what type of listeners you mean... The thing that stands out the most for me is the Module swf file is never compiled I moved both the main mxl and module mxl into the root to insure they are where they aught to be... Have any ideas as to why the module is not

Re: [flexcoders] Desperate Help! crossdomain.xml

2009-02-18 Thread Jeffry Houser
Does this help? http://www.jeffryhouser.com/index.cfm/2008/8/12/Fixing-your-CrossDomainxml-File Or the source article: http://www.adobe.com/go/strict_policy_files Wally Kolcz wrote: I have a site (http://www2.med.umich.edu/prmc/af/) that had an old crossdomain.xml file that worked fine

[flexcoders] Flex Remote object call - in vmware

2009-02-18 Thread Netaman
Has anyone ran into the problem of Flex remote object call working for about 10 minutes and then failing on all the channels. The setup is a IIS 6.0 server front-end facing the Internet and the private network on a virtual host (vmware), and Cold Fusion 8 back-end, with Flex 3 application

Re: [flexcoders] Unicode Normalization in flex

2009-02-18 Thread Sreejith P
This problem happens only when you have an applet which gives you file name or any file system specific parameters. See http://lists.apple.com/archives/java-dev/2006/Sep/msg00170.html for more information Thanks, Sreejith On Wed, Feb 18, 2009 at 9:02 PM, Alan K ultr...@gmail.com wrote: I

Re: [flexcoders] Webservice with Dynamic request?

2009-02-18 Thread Alain Thibodeau
Thank-you but I am still a little unclear as to how this actually works. From what I gather all I need to do is pass an array and flex will serialize it... I've tried passing an array of objects, I've simplified my test case, below is the code: can anyone please help me figure out what I am

[flexcoders] Re: Can I use mouseOver() an image in ActionScript

2009-02-18 Thread yossi.baram
hi, Please advise. I realy need to know if I can catch the event when I hoover over the cells of the datagrid and what is the function I should override in my AS to allow me do that? Thanks again --- In flexcoders@yahoogroups.com, yossi.baram yossi.ba...@... wrote: Hi, this is rather

[flexcoders] HTML Text Scrollbars not showing up

2009-02-18 Thread Dan Vega
I have this popup window that gets created in the main application. When it is created its given a size of 500/250. There is more content then what is show but I don't see any scrollbars. I tried setting the verticalScrollPolicy to true but it just seems like it doesnt calculate the html text

[flexcoders] Re: Interacting from outside local sandbox to java server

2009-02-18 Thread Jeremi Bergman
Here is the modified Java method: private void startServer(int port) { System.out.println( Starting PDFPrintServer); String policy_file = ?xml version=\1.0\?; policy_file += !DOCTYPE cross-domain-policy SYSTEM

[flexcoders] Re: HTML editor for Flex Builder 3?

2009-02-18 Thread huu...@ymail.com
Sam, how do I select a Europa-only update site? I added this URL (http://download.eclipse.org/webtools/updates/), but I'm confused about how to select a Europa-compatible update. --- In flexcoders@yahoogroups.com, Sam Lai samuel@... wrote: That's definitely an option - go to Help -

Re: [flexcoders] Re: Can I use mouseOver() an image in ActionScript

2009-02-18 Thread Jeffry Houser
Generically, I'd start by seeing if I could write an event handler on the DataGrid that drills down the itemRenderer and executes a method. Pass in the X, Y coordinates so you can figure out which image has the roll-over. yossi.baram wrote: hi, Please advise. I realy need to know if

[flexcoders] Re: Module Issue....

2009-02-18 Thread Mayur
Eric, there is error in you code, in closing Tag of /mx:module Rectify it may solve your problem. --- In flexcoders@yahoogroups.com, Eric Dunn ed...@... wrote: I am a newbie and not sure what type of listeners you mean... The thing that stands out the most for me is the Module swf file

RE: [flexcoders] How to stop Flex from compiling my Java source files

2009-02-18 Thread Ryan Graham
Java source files are in C:\Tomcat5\webapps\FlexApp\WEB-INF\src. When I build my Flex application, it tries to recompile the Java source files. Is there a way I can tell Flex Builder to leave my Java source files alone? It's causing me servlet errors. Switch to ANT for more granular

[flexcoders] Re: HTML editor for Flex Builder 3?

2009-02-18 Thread Mayur
Hi Go to Flex Builder - windows - install / update... - here you can select Europa Discovery site - and press Finish ( select automatic choose mirrors.. not compulasry but recommended ) On next screen Search Results an Europa Discovery Site... Expand and select your required stuffs only.

[flexcoders] Component needed: A Combobox that has selectable items with checkboxes

2009-02-18 Thread huu...@ymail.com
I was about to begin creating a Combobox component that would allow the user to select multiple items via checkboxes next to each item. However, I didn't want to reinvent the wheel in case someone else had already dreamed this up. With that being said, has anyone seen this type of component? If

Re: [flexcoders] HTML Text Scrollbars not showing up

2009-02-18 Thread Anand Jha
Hello! Instead of using Text component, use TextArea component. May be, you have to define the width and height of the text area. From: Dan Vega danv...@gmail.com To: flexcoders@yahoogroups.com Sent: Wednesday, February 18, 2009 11:50:53 AM Subject:

[flexcoders] Re: HTML Text Scrollbars not showing up

2009-02-18 Thread anandjha110
Hello danvega! Try to use TextArea Component instead of Text component... --Kumar

RE: [flexcoders] Re: parse SOAP response for values

2009-02-18 Thread Tracy Spratt
Unless your xml is very simple, you should not guess at the e4x expession, but rather work your way to the node you want by using temporary variables and tracing the results as you go. To do this you must use a resultHandler, and do not use lastResult. Start with something like: private

RE: [flexcoders] Desperate Help! crossdomain.xml

2009-02-18 Thread Tracy Spratt
You are missing the most important part: allow-access-from domain=* to-ports=*/ Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent:

Re: [flexcoders] Re: Module Issue....

2009-02-18 Thread Eric Dunn
Good eye, The ! seen below is only in the code here in the email, it is not present in the actual code in Flex... Eric W Dunn Adaption Technologies 281-465-3326 ed...@adpt-tech.com - Original Message - From: Mayur mayur_r...@semaphore-software.com To: flexcoders@yahoogroups.com

Re: [flexcoders] Webservice with Dynamic request?

2009-02-18 Thread Alain Thibodeau
Thanks for anyone who looked at this. I found the prolem, by default I always put my class members as private...:( Making them public, seems to have let access to the serializer and I am sending the proper soap.   From: Alain Thibodeau

[flexcoders] Re: Help! Getting blank Flex Build Path, Flex Modules windows

2009-02-18 Thread sleblang
Clearly this is an issue with 64Bit systems. Here's a band-aid solution that worked for me and might help others out until a solution is implemented. from: http://bugs.adobe.com/jira/browse/FB-16240 Open Project Properties. Click on Resource. Resize the properties window making it as thin as it

RE: [flexcoders] Re: is it possible to track visitors / the page an swf is embedded on

2009-02-18 Thread Ryan Graham
If possible, you could look into Google Analytics to do the tracking for you: http://code.google.com/apis/analytics/docs/flashTrackingIntro.html Worth a look, but might not meet your requirements. HTH, Ryan From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

[flexcoders] Re: HTML editor for Flex Builder 3?

2009-02-18 Thread huu...@ymail.com
Got it working. And my apologies -- I completely overlooked Europa Site from the listing in my previous post. --- In flexcoders@yahoogroups.com, Mayur mayur_r...@... wrote: Hi Go to Flex Builder - windows - install / update... - here you can select Europa Discovery site - and press

[flexcoders] Help with Timer issue

2009-02-18 Thread trishhartnett
Hello all, I'm a Flex newbie. I'm working on an application where an end user clicks a button, and when the button is clicked a DB is queried repeatedly until a particular result is returned. When the result is returned the end user gets a confirmation message to tell them that they were

[flexcoders] design question: editing / saving complex value objects

2009-02-18 Thread Maciek Sakrejda
Suppose I have a class Calendar that mirrors a server-side class (we're not really working with Calendars, but I think this is a reasonably good and simple analogy): class Calendar { public var appointments:ArrayCollection; /* other stuff */ } Then I want users to be able to edit and save the

[flexcoders] Re: Desperate Help! crossdomain.xml

2009-02-18 Thread cjcuccaro
We ran into a similar situation with having the crossdomain.xml policy file in a subdirectory of a site. The phase 3 change that went into affect with FP10.02 requires the root directory of the site to have a meta policy file (policy file for policy files) that allows for the use of policy files

[flexcoders] Re: is it possible to track visitors / the page an swf is embedded on

2009-02-18 Thread uclamerrick
Thank you, I am trying this out right now. --- In flexcoders@yahoogroups.com, Laurent Cozic pogopix...@... wrote: Application.application.url will give you the url of the *swf file*, not the url of the document within which the app is embedded. For that, the only way is to use Javascript and

[flexcoders] Re: is it possible to track visitors / the page an swf is embedded on

2009-02-18 Thread uclamerrick
Thank you, I added Google Analytics but I also need an internal tracking system. --- In flexcoders@yahoogroups.com, Ryan Graham ryan.gra...@... wrote: If possible, you could look into Google Analytics to do the tracking for you:

[flexcoders] RTMP channel not found error ..

2009-02-18 Thread Dharmendra Chauhan
Hi , I am getting error similar to above when I run my app after building with Flex ant.It works fine when I compile it with web-tier compiler or flex builder. Please see my ant script given below.Am I missing anything ? Note: I am using flex2 with fds and app server is jboss4.2. taskdef

RE: [flexcoders] Help with Timer issue

2009-02-18 Thread Tracy Spratt
You are adding an event listener every time yu click the button. I don't know that this is the problem but it makes me suspicious. Either remove the event listener in the success condition, or add it one time in an init function. See if that chnges the behavior. Other than that, simplify the

[flexcoders] (unknown)

2009-02-18 Thread Amplify Mindware
Hello All, I am taking the images form the user. I want to store it in a fixed size on the server. How can I achieve this? Awating for prompt reply. Regards, Amplify

Re: [flexcoders] No codecompletion available

2009-02-18 Thread Sam Lai
fontSize is a style, not a property. To set fontSize, use myComponent.setStyle(fontSize, 40); Easiest way to work out what's what is to look at the flex docs. 2009/2/18 secrit.service secrit-serv...@hotmail.com: Hi all, I'm new to Flex, so I will probably ask some simple questions. However

Re: [flexcoders] Re: Help! Getting blank Flex Build Path, Flex Modules windows

2009-02-18 Thread Sam Lai
Lol, can't begin to imagine how someone worked that out. 2009/2/19 sleblang sc...@digitalsaguaro.com: Clearly this is an issue with 64Bit systems. Here's a band-aid solution that worked for me and might help others out until a solution is implemented. from:

RE: [flexcoders] Object to XMLString

2009-02-18 Thread Alex Harui
See OrderedObject in the Gumbo code Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of ilikeflex Sent: Wednesday, February 18, 2009 7:29 AM To:

[flexcoders] Re: Help! Getting blank Flex Build Path, Flex Modules windows

2009-02-18 Thread azflex26
Me either..but I am glad I found it. I hope it helps someone else as well. --- In flexcoders@yahoogroups.com, Sam Lai samuel@... wrote: Lol, can't begin to imagine how someone worked that out. 2009/2/19 sleblang sc...@...: Clearly this is an issue with 64Bit systems. Here's a band-aid

[flexcoders] Re: Is there any way to use predefined functions for a sortCompareFunction?

2009-02-18 Thread Keith Hughitt
Thanks all for the suggestions! Will using the sortOptions property on a DataGridColumn do what you want? Hmm. I don't think that is supported in Flex 3 (http://livedocs.adobe.com/flex/3/langref/mx/controls/dataGridClasses/DataGridColumn.html), although that would have been nice. Both of the

[flexcoders] Flex compile error

2009-02-18 Thread adeelafsar
Severity and DescriptionPathResourceLocation Creation Time Id Type was not found or was not a compile-time constant: data. [Generated code (use -keep to save): Path: data-generated.as, Line: 245, Column: 14]dataviewUnknown 1234982689859 45

[flexcoders] Re: Components needed

2009-02-18 Thread brucewhealton
Yes, I found the link. Is that good enough for us to assume it is open-source? The code itself does suggest that it is open-source, and that we can use it as is, etc. It was developed with Flex 2. Can I use something that was created in Flex 2, inside Flex 3? I did get some warnings about

[flexcoders] Reading an UTF-8 document

2009-02-18 Thread Andrew
Please forgive me if the is a post about this already but i can't seem to find it. I am creating an AIR app to convert characters into their HTML entity, hex and dec value and I have just come across an issue. I am reading in xml files which contain the data, these files are saved in a UTF-8

[flexcoders] event passing when source/destination are on different parent bubbling chains?

2009-02-18 Thread Mic
In an app that has many parent and child components, how does one communicate across bubbling chains? I need to go up from a buried child component source to its parent, across to another of the parent's children, and down that chain to a child destination. Can this be done in Flex, or do I create

[flexcoders] How can I shorten the heading on the Advanced Data Grid

2009-02-18 Thread boy_trike
I need to use the ADG for the style function but notice that the headings now are WIDER with a space on the right for multiple sort priorities. Is there an easy way to eliminate that? Thanks Bruce

[flexcoders] Panel or Canvas expand from center

2009-02-18 Thread flexaustin
Is it possible to expand canvas or panel from center when increasing the size? Thanks, Jason

[flexcoders] ToolTip stay until closed

2009-02-18 Thread flexaustin
Is it possible to make a tooltip stay on until its closed? Maybe put an x in the top right corner or something. I don't see any properties that allow it to remain, guessing I will need to customize it? Maybe tooltip won't let you do this at all? TIA

RE: [flexcoders] ToolTip stay until closed

2009-02-18 Thread Alex Harui
Just use PopUpManager and popup whatever you want. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of flexaustin Sent: Wednesday, February 18, 2009 3:39 PM

RE: [flexcoders] event passing when source/destination are on different parent bubbling chains?

2009-02-18 Thread Ryan Graham
In an app that has many parent and child components, how does one communicate across bubbling chains? I need to go up from a buried child component source to its parent, across to another of the parent's children, and down that chain to a child destination. Can this be done in Flex, or do I

Re: [flexcoders] Re: Is there any way to use predefined functions for a sortCompareFunction?

2009-02-18 Thread Jeffry Houser
: doh: You're right. My search brought up the wrong set of docs. Sorry about the sortOptions mis-direct. Keith Hughitt wrote: Thanks all for the suggestions! Will using the sortOptions property on a DataGridColumn do what you want? Hmm. I don't think that is supported in Flex 3

[flexcoders] Flex server language

2009-02-18 Thread bsyyu
currently, I am using PHP as server language. In fact I would like to learn other server language in combination using Flex. Any suggestion such as .NET, coldfusion or JSP.

[flexcoders] Re: Components needed

2009-02-18 Thread brucewhealton
The link below did not work. http://tinyurl.com/c2kkmw Bruce --- In flexcoders@yahoogroups.com, oneworld95 oneworl...@... wrote: Google Code has a ton of Flex components; just run this search: http://tinyurl.com/c2kkmw It can take a bit of digging, but lots of free components there. -

[flexcoders] Re: Components needed

2009-02-18 Thread brucewhealton
That link had only one component listed. Did I go to the right place? http://www.flextras.com?c=104 Bruce --- In flexcoders@yahoogroups.com, Jeffry Houser j...@... wrote: Don't forget about FlexLib ( flexlib.net ) as a source for components. Although I don't know a commercial component

Re: [flexcoders] Flex compile error

2009-02-18 Thread Nathaniel Skiba
I can't say for certain without seeing your code, but it looks like you're using the class data somewhere without importing it. ~Nate

Re: [flexcoders] Flex server language

2009-02-18 Thread Pedro Sena
Are you a student or are you trying to evaluate the language that best fits in some specific scenario? On Wed, Feb 18, 2009 at 9:31 PM, bsyyu ben.s...@gmail.com wrote: currently, I am using PHP as server language. In fact I would like to learn other server language in combination using

Re: [flexcoders] Flex server language

2009-02-18 Thread Dnk
They will all get the job done. It is matter of requirements and preferences for the job. Dustin Krysak Sent from my iPhone On 18-Feb-09, at 4:31 PM, bsyyu ben.s...@gmail.com wrote: currently, I am using PHP as server language. In fact I would like to learn other server language in

Re: [flexcoders] (unknown)

2009-02-18 Thread Fotis Chatzinikos
use server software (java/php and so on) to scale and save the image in whatever dimention you need. On Wed, Feb 18, 2009 at 9:45 PM, Amplify Mindware projectonf...@ymail.comwrote: Hello All, I am taking the images form the user. I want to store it in a fixed size on the server. How can I

[flexcoders] Flex Apps on Flash 10 Crashes Browser

2009-02-18 Thread Don Kerr
Still no resolution on Flash Player 10 bugs that crash IE7, IE8, firefox. It is a memory error. All my Flex 3 apps work fine with Flash Player 9, but crash the browser when the user upgrades to Flash 10. There are many bugs reported on this in adobe's bug tracker, but I do not see any

RE: [flexcoders] Flex compile error

2009-02-18 Thread Tracy Spratt
Did you Clean the project? Tracy Spratt Lariat Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Nathaniel Skiba Sent: Wednesday, February 18, 2009 8:03 PM To:

[flexcoders] Re: event passing when source/destination are on different parent bubbling chains?

2009-02-18 Thread Mic
Hi Ryan, we are running Cairngorm with UM extensions. Theoretically I need to dispatch a UM event with callback where that callback is to a component other than the dispatching component. And because source and destination are so far apart conventional bubbling is not an option. Scenario: Because

[flexcoders] Re: Flex server language

2009-02-18 Thread bsyyu
Thanks for your comments. I am not a student for learning. Currently I have finished my first project with Flex for a shopping cart project. http://www.fredederick.com/fredederick_shop_online/ It is done with PHP backend. After that project, I have intention to develop a DIY shopping cart system

Re: [flexcoders] Flex Apps on Flash 10 Crashes Browser

2009-02-18 Thread Steve Mathews
I do know for a fact that player 10 crashes when it runs out of memory. In player 9 you get errors when you attempt to do something and it can't get enough memory. I would like to know if this is going to be fixed soon also. On Wed, Feb 18, 2009 at 7:16 PM, Don Kerr fusionp...@yahoo.com wrote:

[flexcoders] Re: ToolTip stay until closed

2009-02-18 Thread flexaustin
Thx Alex. I thought about that , but I need it look and function like Google Maps when you click a marker (like its part of the app). If I use the popupmanager can I have the popup follow a sprite on the stage? My sprites are on layer that you can drag around (similar to google maps) so if the

[flexcoders] Re: ToolTip stay until closed

2009-02-18 Thread Tim Hoff
Yes, you can reposition the popup (move (x,y)), by capturing the MouseMove event (may need to use localToGlobal). -TH --- In flexcoders@yahoogroups.com, flexaustin flexaus...@... wrote: Thx Alex. I thought about that , but I need it look and function like Google Maps when you click a

[flexcoders] Re: Flex Apps on Flash 10 Crashes Browser

2009-02-18 Thread Don Kerr
Glad to know I'm not alone. Couple follow on questions: What is the difference between Flash 9 and Flash 10 with respect to memory? I never had memory issues with these Flex apps when running Flash 9. So, my users have o downgrade to 9 to stay live. Not progress. Is this issue unique to

[flexcoders] Re: is it possible to track visitors / the page an swf is embedded on

2009-02-18 Thread tom93438
...not the url of the document within which the app is embedded. For that, the only way is to use Javascript and ExternalInterface If you're looking for the url in the browser address bar then look at IBrowserManager: http://livedocs.adobe.com/flex/3/langref/mx/managers/IBrowserManager.html

  1   2   >