[flexcoders] Apollo SDK

2007-03-20 Thread learner
Hi All, I have a very basic question about getting started with Apollo. I downloaded Apollo SDK zip and checked out its content. It contains : 1) bin - all exe's to compile from command line 2) Frame work - swc's and action script classes 3) lib - contains jar 4) runtime - dll's 5) samples -

[flexcoders] Re: Urgent call for Flex Portlet (Flex Taglibs) specialists (James Ward, help!)

2007-03-20 Thread johan.wasserman
Sorry for having been so impatient, my bad... Firstly, thanks to everyone who's put in so many hours to bring us these technologies, I hope you had as much fun making it as I have using it. Matt, I can wait 48 hours, anything to get this technology in. I just really want it to work; 1 -

[flexcoders] Flex dates

2007-03-20 Thread flexjeremy
Hi guys, I am new to flex and have been having a huge learning curve. So be gentle. I'm kinda new to REAL OO. But I know CF very well. So with that said I'm stuck on dates. I am trying to format a date coming out of a database so it will look pretty. i.e. dd/mm/ I have an mx:datefield

Re: [flexcoders] Flex dates

2007-03-20 Thread Roman Protsiuk
Formatter will do that only for displaying your date. And how it comes out of database depends on database interface. In general you receive some standardized date/time. If you want to get specifically formatted date out of the database you should ask database to do it. Though I can't imagine why

[flexcoders] List item selection with filterFunction

2007-03-20 Thread Frank Sommers
I have a List, and when a filter function is assigned to that list, whenever a selection is made (by clicking on a list item), the list items re-arrange in a strange way. I wonder why this is happening. When I remove the filter function, this does not occur. Any suggestions would be

[flexcoders] Re: Urgent call for Flex Portlet (Flex Taglibs) specialists (James Ward, help!)

2007-03-20 Thread ed_solovey
There is a 2.5 feature that allows quick enabling of Flex applications as local portlets and as WSRP producer portlets. It is documented in Chapter 18 of the Beta 2 documentation. Here is the summary paragraph from the documentation, The portal feature lets you easily configure Flex client

[flexcoders] don't highlight a datagrid?

2007-03-20 Thread tang81285
Hi, guys, I encountered a problem here, after we select a row on a datagrid, can we deselect(or do not highlight) this row when we mouse click on other parts(except the datagrid area) of screen? thanks.

[flexcoders] Re: Maven plugin outputDirectory is READONLY

2007-03-20 Thread romaindelfour
Hello Here is what you want : http://repo1.maven.org/maven2/net/israfil/mojo/maven-flex2-plugin/1.0-alpha-2/ I did it. I'm trying to patch it for my needs. Hope it helps you Regards

Re: [flexcoders] Apollo SDK

2007-03-20 Thread Tom Chiverton
On Tuesday 20 Mar 2007, learner wrote: I downloaded Apollo SDK zip and checked out its content. It contains : .. Now, I am using flex builder to develop flex application. You don't want the SDK download then, you want the plugin. and how do I install apollo runtime from SDK zip. You can't

AW: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-20 Thread Harald Dehn
You could extend ListItemRenderer for your custom itemRenderer and override updateDisplayList for your code to implement a custom background color. With this approach the icon should be displayed. Harald _ From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] flex builder and dreamweaver

2007-03-20 Thread Tom Chiverton
On Tuesday 20 Mar 2007, Chad Gray wrote: I am a big Dreamweaver fan, but I keep seeing Adobe going away from Dreamweaver and using Eclipse. Why pay engineers to maintain the underlying guts and features of an IDE when Eclipse will do it all for free. Do you see SVN access (for instance)

Re: [flexcoders] Re: LiveDocs Offline

2007-03-20 Thread Tom Chiverton
On Monday 19 Mar 2007, mtthwnthnyhys wrote: Yes!! It seems intermittent though... I get the Flex 2 Language Reference (at the moment) but not the Programming AS3 book. Says: Page Does Not Exist. Later, when I reload the same page, it'll work fine. WEIRDNESS! Gee, what could be sucking up

[flexcoders] Re: Automation API, Combobox and itemrenderer

2007-03-20 Thread pmotzfeldt
--- In flexcoders@yahoogroups.com, pmotzfeldt [EMAIL PROTECTED] wrote: Hi, I am playing with the automation API, to be able to automate events. I am having a problem with the Combobox. I have just created a simple combobox as shown below. I works great in the application. But my problem is

Re: [flexcoders] Apollo SDK

2007-03-20 Thread learner
I downloaded the Apollo SDK before downloading the plugin for flexbuilder. Now thinking that it should be possible to work with Apollo SDK and flexbuilder by copying the files from Apollo SDK to flex sdk in corresponding directory and replacing the mxmlc.jar in libs and version (as mentioned in

Re: [flexcoders] Apollo SDK

2007-03-20 Thread Andrew Muller
Mayur You'll save yourself a lot of time and grief if you were to download and install the plugin for Flex Builder, especially if you're already using Flex Builder for development. It's made to work seemlessly... Andrew On 20/03/07, learner [EMAIL PROTECTED] wrote: I downloaded the

Re: [flexcoders] Apollo SDK

2007-03-20 Thread Tom Chiverton
On Tuesday 20 Mar 2007, learner wrote: Now thinking that it should be possible to work with Apollo SDK and flexbuilder by copying the files from Apollo SDK to flex sdk in corresponding directory I installed a separate Flex SDK to the one that comes with Flex builder, and updated that one

Re: [flexcoders] Apollo SDK

2007-03-20 Thread learner
Thanks ! downloading the plugin . Thanks once again for quick Replies. Regards On 20 Mar 2007 03:46:42 -0700, Andrew Muller [EMAIL PROTECTED] wrote: Mayur You'll save yourself a lot of time and grief if you were to download and install the plugin for Flex Builder, especially if you're

Re: [flexcoders] Flex dates

2007-03-20 Thread Adam Royle
Hi Jeremy, I recommend converting your date into a native actionscript date object. This has many benefits which include all of the date manipulation methods available, the dateformatter class, correct date sorting in the datagrid, etc. You can use var date_from_db:String = ; var d:date =

Re: [flexcoders] Flex dates

2007-03-20 Thread Muzak
There's no conversion needed. Date's sent from ColdFusion become ActionScript date objects. What you need to do is call the DateFormatter.format method when needed, passing it the Date object. Here's an example of a RemoteObject fetching news from a MySQL database, which contains: - newsHeader

Re: [flexcoders] How to DataBind to DateField when Null Values come into play??

2007-03-20 Thread Sam Shrefler
Mike: What is the type of the property you are trying to bind to in your Value Object? A DateField selectedDate property can be sent to null and should give you an empty date. I've extended the DateField making my own DateField Component - EditDateField and I always use that whenever I use

Re: [flexcoders] Storing Dates Times in VO's

2007-03-20 Thread Sam Shrefler
Kevin: I dont' use AMFPHP so I can't specifically help you with that situation, but to your first question: I would recommend figuring out a way to get your PHP DateTypes to automatically transfer to Date type's in Flex. I went down both roads (Date and String in flex) and found that there is

[flexcoders] How to set remoteobject to reach a java(spring) bean in a remote machine

2007-03-20 Thread Eren Bali
Hi everybody, I have a very simple problem with setting RemoteObject to connect a spring bean in a remote machine. I tried at Fds-Tomcat test drive server by Christopher Coenraets. However those samples(and all other samples) were for using a web-tier mxml compiler. I have to connect a local

[flexcoders] AS3 Browser weirdness!!??

2007-03-20 Thread mtthwnthnyhys
Hey all, I'm working on some physics/game stuff... not typical Flex area of concern, but... well eventually I'll be making use of the Flex specific stuff, and for now I want to write in in AS3 and am on a Mac, so no AS3 Preview for me... :( Anyways, I wrote a little function to try and

RE: [flexcoders] www.codeapollo.com

2007-03-20 Thread Gordon Smith
I can't deal with forums. Is it possible to get all posts as individual emails? Sorry if this is a dumb question, but I know some forums don't support this. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of d3lix3 Sent: Monday,

Re: [flexcoders] Re: Apollo (Should Adobe Keep the Name)

2007-03-20 Thread Rich Tretola
By the way, here were the results from the weekends poll: http://blog.everythingflex.com/2007/03/18/apollo-name-vote-results/ On 3/19/07, Rich Tretola [EMAIL PROTECTED] wrote: ApolloWeaver is just painful to say. I hope they do better than that. :-) -- Rich Tretola mx:EverythingFlex/

Re: [flexcoders] Cairngorm for Apollo?

2007-03-20 Thread Johannes Nel
why can't you use cairngorm for appollo as it is? On 19 Mar 2007 07:24:54 -0700, João Fernandes [EMAIL PROTECTED] wrote: I think the subject says all, will be a cairngorm version for Apollo? Thanks, João Fernandes -- j:pn http://www.lennel.org

RE: [flexcoders] Icons on TabBar or ToggleButton Bar

2007-03-20 Thread Phil Chung
You should use the icon property of the containers in your ViewStack (in your example, Canvas). That should do the trick. If you wanted, you can also set the iconField property of your ToggleButtonBar or TabBar to use a custom property value (instead of icon). Phil -Original Message-

[flexcoders] An odd problem with the 'width' and 'height' of Sprite

2007-03-20 Thread celdi30
Hi all. (This is my first post in this group, so I'd like to give all of you a greeting .) As the title, I've met an odd problem with using Sprite class. Because I'm a novice of Flex, my problem may be so trivial. But Your helps would make me happy. The simple version of my code is below.

[flexcoders] Anybody have doc about flash.profiler,profile and flash.profiler.heapDump ?

2007-03-20 Thread derek.luo
Hi, everybody: I have noticed that there are 2 undocumented function in the package flash.profiler, named profile and heapDump. Does anybody know how to use them? Thanks in advance.

Re: [flexcoders] Cairngorm for Apollo?

2007-03-20 Thread Rich Tretola
There doesn't need to be any different as Apollo is simply a wrapper, so you can use the current version of Cairngorm without any issues. On 19 Mar 2007 07:24:54 -0700, João Fernandes [EMAIL PROTECTED] wrote: I think the subject says all, will be a cairngorm version for Apollo? Thanks,

[flexcoders] filterFunction and List selection problem

2007-03-20 Thread frank_sommers
I have a List with an ArrayCollection as the data provider. When I set a filter function on the collection, a strange thing happens: When clicking on a list item, the list elements re-arrange themselves in a strange way. The item selection occurs, but the selected item moves to another list

Re: [flexcoders] Storing Dates Times in VO's

2007-03-20 Thread Brian Dunphy
I would store it in a format that both PHP and Flex understand and can manipulate (i.e. epoch milliseconds). That way you can convert it to either a PHP date object or a Flex date object for convenience when you need to. Cheers, Brian On 3/20/07, Sam Shrefler [EMAIL PROTECTED] wrote:

Re: [flexcoders] recieve RTMP Stream in flex? This can't be this hard?

2007-03-20 Thread John Wilker
I'm having similar headaches!! :) I've handled onMetaData, but now I get an asyncherror about streamInfo, which I can't place anywhere. Were you able to get your video and videoDisplay to play nice? On 10/6/06, eccentricwade [EMAIL PROTECTED] wrote: I am trying to connect to an RTMP stream

[flexcoders] TabNavigator Filtering with Comparator class

2007-03-20 Thread ajudah987
I am using a tabnavigator with a Canvas and then a TileList in it. I have a horizontal slider similiar to the Flex store to filter products based upon price. My challenge is that when i adjust the slider the Comparator class adjusts the alpha of just the items visible in the tilelist. It does

[flexcoders] RE: Piechart doesnt show up in browser

2007-03-20 Thread jg75201
I am trying out tan example that I read in JDJ magazine, and somehow the piechart shows in design view but when the applicaiton is run in the browser, the pie chart does nto show up all the labels and number can be seen. Here is a snippet if anyone can help, I am not an expert in flex so any

[flexcoders] Flex Module for Apache

2007-03-20 Thread John Barrett
Hi, just to let everybody know that the Flex module for Apache is working! Christian from adobe help me out so much`-` It is so cool, you can view mxml files on the server(localhost) without them being compiled, I think that the server compiles them, if so very fast on my mac. You can download

[flexcoders] Re: List item selection with filterFunction

2007-03-20 Thread ben.clinkinbeard
I experienced this when checking a CheckBox itemRenderer inside a DataGrid a few motnhs back. I thought I had determined that it was a change in the underlying dataProvider that caused the problem, but if you're experiencing it just selecting an entire list item that sounds different (but

[flexcoders] Re: don't highlight a datagrid?

2007-03-20 Thread ben.clinkinbeard
myDataGrid.selectedIndex = -1; should do it. HTH, Ben --- In flexcoders@yahoogroups.com, tang81285 [EMAIL PROTECTED] wrote: Hi, guys, I encountered a problem here, after we select a row on a datagrid, can we deselect(or do not highlight) this row when we mouse click on other

Re: [flexcoders] Re: XML Attributes with a period in their name?

2007-03-20 Thread Claus Wahlers
Dots are not allowed in attribute names. I'd use underscore or dash. Where in the XML spec does it state periods are not allowed? Sorry, my mistake. Dots are indeed allowed in attributes. In any case, that is completely irrelevant to the problem at hand. The XML configuration files for the

[flexcoders] Re: XML Attributes with a period in their name?

2007-03-20 Thread not_a_coop
--- In flexcoders@yahoogroups.com, not_a_coop [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Claus Wahlers claus@ wrote: reg.1.user=1234 reg.1.server=192.168.0.1/ Dots are not allowed in attribute names. I'd use underscore or dash. Cheers, Claus. -- claus

Re: [flexcoders] Re: XML Attributes with a period in their name?

2007-03-20 Thread Tom Chiverton
On Tuesday 20 Mar 2007, not_a_coop wrote: field by a top manufacturer for a number of years already. I'm just working on an application that needs to be able to read and write their configuration files. So treat the XML as a plain string. -- Tom Chiverton Helping to preemptively syndicate

RE: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-20 Thread Merrill, Jason
Sorry man, just seemed like there was a lot of complaining on the list yesterday from lack of help. Sorry I made a joke and singled you out, and glad you found a solution. Sometimes it's so noisy in here, you do have to shout a little. I know I have. IMO I think this list is such

Re: [flexcoders] Re: XML Attributes with a period in their name?

2007-03-20 Thread Claus Wahlers
I CAN get to the attributes by doing the following: myAtt:XMLList = xmlData.reg.attribute(reg.1.user); but I would really like to use the E4X capabilities to make this easier. Is there an easy way to set the reg.1.user attribute? var xml:XML = root foo.bar=hello world / trace([EMAIL

[flexcoders] Re: XML Attributes with a period in their name?

2007-03-20 Thread not_a_coop
--- In flexcoders@yahoogroups.com, Claus Wahlers [EMAIL PROTECTED] wrote: I CAN get to the attributes by doing the following: myAtt:XMLList = xmlData.reg.attribute(reg.1.user); but I would really like to use the E4X capabilities to make this easier. Is there an easy way to set the

Re: [flexcoders] JAWS read order

2007-03-20 Thread Jason Goodwin
That did it. Thanks. On 3/19/07, Claus Wahlers [EMAIL PROTECTED] wrote: So here's what I'm running into: I have an HBox holding two VBoxes. I have a few Text fields inside. I'm thinking JAWS would read the contents of the first VBox in its entirety, then move on to the next VBox, but it

Re: [flexcoders] Re: XML Attributes with a period in their name?

2007-03-20 Thread Claus Wahlers
Perfect! I thought I tried every syntax trick I could think of, maybe just forgot to try square brackets. I couldnt find anything in the documentation about it. It's there, a bit hidden though: http://livedocs.adobe.com/flex/2/langref/operators.html#brackets_(XML) [ ] brackets (XML) operator

Re: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-20 Thread Greg Morphis
It's cool and I understand the volume of people posting here. I was frustrated that I couldn't get this work and I shouldn't have posted the 3rd time. I appreciate this list and everyone on it. They've helped me out numerous times. On 3/20/07, Merrill, Jason [EMAIL PROTECTED] wrote: Sorry

Re: [flexcoders] AS3 Browser weirdness!!??

2007-03-20 Thread Troy Gilbert
Not sure what you're specific problem may be, but to answer the question of what to do since there's no Key.isDown()... I borrowed this from Andre Michelle... works a charm. private var keyState:Array = new Array(); private function handleKeyDown(event:KeyboardEvent):void {

Re: [flexcoders] An odd problem with the 'width' and 'height' of Sprite

2007-03-20 Thread Troy Gilbert
Hi Cho, I assume in your example code below that TCellView was supposed to be CustomSprite (i.e. the constructor). This was mentioned recently so you could probably find some details in the archives, though I'm not sure what to suggest you search for, so I'll repeat what I learned as best as

Re: [flexcoders] Re: using itemRenderer with List, how can I set the icon?

2007-03-20 Thread Muzak
There's already an apollo list http://tech.groups.yahoo.com/group/apollocoders/ - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, March 20, 2007 2:35 PM Subject: RE: [flexcoders] Re: using itemRenderer with List, how can I set the

[flexcoders] Disabling Selectable Text for a ComboBox

2007-03-20 Thread Paul Whitelock
I've got a ComboBox in a Form and for some reason the text is selectable (i.e., the I-bar cursor is displayed when you move over the ComboBox and you can drag-select the text displayed for the currently selected list item). The editable property is not defined, and it doesn't make a difference if

[flexcoders] Apollo question here or there (was: Re: using itemRenderer with List, how can I set the icon?)

2007-03-20 Thread Merrill, Jason
Cool, I'm just one small voice in the cosmic fuge as Carl Sagan would say, but I would vote we moderate Apollo questions to head over there then - this list is already quite high volume with novice, intermediate, and advanced Flex/AS3 questions. At the same time, I understand though, Apollo

[flexcoders] Help: test EventDispatcher speed please

2007-03-20 Thread Francis Bourre
Hello list ! I noticed something weird about EventDispatcher execution speed in my mac player. EventDispatcher.dispatchEvent execution is slow compared to a custom dispatcher implementation (named EventBroadcaster). On Mac, EventDispatcher is slow: EventBroadcaster: 2925 EventDispatcher:

[flexcoders] Displaying 'No Data Found' message

2007-03-20 Thread Mehul Doshi
Is there a quick way to simply display a 'No Data Found' label on a chart? Thanks.

[flexcoders] WebService Fault Handling - Flash Player 9 Update

2007-03-20 Thread paulwelling
Hello, I just examined the latest FP9 Update Fixed Issues web page, and see no mention of the WebService Fault Handling Issue (fault body not passed to player) that has been discussed many times here... This is a really big issue for people not using a proxy, and I'm surprised that more of us

[flexcoders] Re: List item selection with filterFunction

2007-03-20 Thread frank_sommers
Thanks for the suggestion. In my case, I don't change the underlying data provider, though - I simply have an ArrayCollection set as the data provider for a List. When the filter function is set, the right thing happens: Only items in the list matching the filter criteria show. However,

[flexcoders] Re: Disabling Selectable Text for a ComboBox

2007-03-20 Thread ben.clinkinbeard
I actually discovered this same issue in my app a few days ago. I also have several other ComboBoxes (including one right next to the problematic one) that don't display the i-beam. After a bit of investigation, it seems that having enabled=false in the ComboBox's MXML tag (then enabling it at

[flexcoders] Help - Flex application no longer works!

2007-03-20 Thread Nick Durnell
I am getting the following runtime error when running my application: Error: Could not find resource bundle formatters at mx.resources::ResourceBundle$/getResourceBundle() at mx.formatters::DateBase$cinit() at global$init() at mx.formatters::DateFormatter/format()

[flexcoders] Re: error with HTTPService

2007-03-20 Thread danj520
Hi and thank you for your reply. Yes, I did bind the results like your example and it works great. Thank you! --- In flexcoders@yahoogroups.com, TCash21 [EMAIL PROTECTED] wrote: Did you try [EMAIL PROTECTED] --- In flexcoders@yahoogroups.com, danj520 danj520@ wrote: Hello, I'm trying

[flexcoders] Coldfusion FDS App Wizards for FB 2 ?

2007-03-20 Thread jamiebadman
Hi, Hopefully this is a quick'un! I've just installed CF developers edition and FDS single user SDK - I'd like to use the CF App Wizard from Eclipse - I'm *sure* it used to be an option to install it at some stage but I was offered no such option when I installed CF or FDS... any ideas ? I've

[flexcoders] Flex Caching Data?

2007-03-20 Thread Matt Maher
I have a component which downloads a list of credit card numbers for the customer to work through. This file is delivered to the container as a CSV then turned into a collection of DTO objects. Is there a way to MAKE SURE that flash does not leave this on the disk after the container closes

Re: [flexcoders] Coldfusion FDS App Wizards for FB 2 ?

2007-03-20 Thread Tom Chiverton
On Tuesday 20 Mar 2007, jamiebadman wrote: Perhaps it's part of the FB2 install ? If so, is there any way I can install the plugin without having to reinstall FB2 ? There should be a .zip in FB2's install directory. -- Tom Chiverton Helping to completely strategize holistic customers On:

Re: [flexcoders] Help: test EventDispatcher speed please

2007-03-20 Thread Tom Chiverton
On Tuesday 20 Mar 2007, Francis Bourre wrote: On Mac, EventDispatcher is slow: ... On Pc, EventDispatcher is faster. So you've discovered that different hardware, on a different O/S, runs the same code at different speeds ? Wow. -- Tom Chiverton Helping to continually coordinate

RE: [flexcoders] Coldfusion FDS App Wizards for FB 2 ?

2007-03-20 Thread Ben Forta
When you finished the DB install it should have popped up and asked you do you want to know how to install the CF Extensions?. Basically, there is a ZIP file on your machine, somewhere under where the FB installer bits put themselves, and you need to add that archive as a new Eclipse plug-in (in

[flexcoders] Re: Flex Caching Data?

2007-03-20 Thread Matt Maher
As a follow-up... I am not writing this to disk myself. I am using an HTTPService to download the file, then processing it in memory into a data-store. Never (by me) is either the downloaded file, nor the data-store intentionally written to disk. I think, because of this, the two files being

Re: [flexcoders] Coldfusion FDS App Wizards for FB 2 ?

2007-03-20 Thread Nick Collins
It is part of the FB2 install, though the installer does not do it for you. Assuming you're on Windows, if you look in your WINDOWS\Downloaded Installations\Adobe Flex Builder 2.0.1\ColdFusion Extensions for Flex Builder/ folder, you'll see the zip file. Just add it as an archived site via the

[flexcoders] Constant Variable declaration in Custom Component

2007-03-20 Thread madhukiranm
Hi, I need to declare a constant public variable in a custom component (say direction with values horizontal and vertical). When I use this custom component in any MXML, and try to assign the value for direction, it should give me the values horizontal and vertical so that the user selects one

[flexcoders] FlexBuilder Project Layout Help

2007-03-20 Thread Roscoe P Coltrane
Where does FB keep information about your workspaces? The reason I am wondering is because I have deleted my FB workspace from the file system but when I try to recreate it in FB, FB tells me the work space would overlap. It still thinks the old workspace is around. Maybe someone could tell me

RE: [flexcoders] Help - Flex application no longer works!

2007-03-20 Thread Giles Roadnight
Have you tried cleaning the project? I used resource bundles and had to clean the project nearly every time I compiled - I was getting compilation errors though not runtime errors. Giles Roadnight From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick Durnell Sent: 20

RE: [flexcoders] Re: Flex Caching Data?

2007-03-20 Thread Giles Roadnight
Have you looked in the browser temporary files folder to see if it has turned up there? I think that's the only place it'll be stored. I don't think Flash does any caching, it just relies on the browser cache. Giles Roadnight From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

Re: [flexcoders] FlexBuilder Project Layout Help

2007-03-20 Thread xmrcivicboix
You could simply go into the folder and physically delete the entire project folder that was there in the work space. This happens with you delete the work space and not the contents. Roscoe P Coltrane wrote: Where does FB keep information about your workspaces? The reason I am wondering is

[flexcoders] Re: Help - Flex application no longer works!

2007-03-20 Thread Nick Durnell
Hi Giles, Yes I've tried cleaning all my projects in Flex Builder but I still get the same problem. After a quick Google it sounds like this may be a locale issue. I have tried: - Setting my locale to US English (it is usually UK English); - Adding the compiler argument -locale en_US to my

[flexcoders] getObjectsUnderPoint problems

2007-03-20 Thread thirtyfivemph
Okay, this is really driving me crazy... I've got a UIComponent which is nested several layers deep in a layout. Inside that UIComponent I've got a series of sprites that are nested one inside of the other 4 or 5 levels deep with a Bitmap nested as the deepest level. In the top-level sprite of

[flexcoders] Re: Disabling Selectable Text for a ComboBox

2007-03-20 Thread Paul Whitelock
Thanks Ben, that helped a bit. I have two ComboBoxes on the Form and each had an enabled=false in the MXML. However, when I removed the enabled=false from the MXML I was still getting the i-beam and selectable text. In my code I'm also programatically changing the enabled state of the

RE: [flexcoders] WebService Fault Handling - Flash Player 9 Update

2007-03-20 Thread Matt Chotin
Unfortunately we cannot fix this without support from the browser vendors. We are in discussions with them to try to have the right information accessible to plugins in some of their next versions. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: Help - Flex application no longer works!

2007-03-20 Thread Alex Harui
Add a DateFormatter to the main app. If that solves the problem then you have a linker dependency issue. If you are using modules, rsls or otherwise using -extern options you might be excluding the locale data somehow. -link-report is helpful in these situations. -Alex

[flexcoders] Re: getObjectsUnderPoint problems

2007-03-20 Thread thirtyfivemph
Okay, found this in the archives: http://tech.groups.yahoo.com/group/flexcoders/message/48653 So, I tried out the function at the end of the thread. Seems the one thing I was doing wrong (?) was this: I called this.getObjectsUnderPoint(point); where this was a Sprite at the root of my

[flexcoders] Re: FlexBuilder Project Layout Help

2007-03-20 Thread Roscoe P Coltrane
that was what I originally did and FB still thinks it is there. So now I can't recreate it... --- In flexcoders@yahoogroups.com, xmrcivicboix [EMAIL PROTECTED] wrote: You could simply go into the folder and physically delete the entire project folder that was there in the work space. This

[flexcoders] Re: WebService Fault Handling - Flash Player 9 Update

2007-03-20 Thread Paul DeCoursey
I find it hard to believe that we can create our own implementation that would support this using sockets but the built in method requires browser vendor help. --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Unfortunately we cannot fix this without support from the

[flexcoders] Re: Apollo SDK

2007-03-20 Thread Shannon
Im not sure if this helps... You could probably hear me screaming last Saturday afternoon from my office in Cupertino, CA. The fact that it was beautiful outside didnt help. I searched the CD (The stuff that became available for Apollo over the weekend was a hand out at ApolloCamp on Friday

[flexcoders] Re: Disabling Selectable Text for a ComboBox

2007-03-20 Thread Paul Whitelock
I just discovered why the second ComboBox was not affected -- it's because I was disabling the ** Form item ** that wraps the ComboBox and not the ComboBox itself. I changed my code so that I enable and disable both ComboBoxes by setting the enabled property for the Form item rather than for the

[flexcoders] Re: Re: AS3 Browser weirdness!!??... Thanks!!

2007-03-20 Thread mtthwnthnyhys
Hey Troy, Thanks! That was totally it! Fixed the browser problem, and it's way less code... awesome! //Matt --- In flexcoders@yahoogroups.com, Troy Gilbert [EMAIL PROTECTED] wrote: Not sure what you're specific problem may be, but to answer the question of what to do since there's no

Re: [flexcoders] Re: Maven plugin outputDirectory is READONLY

2007-03-20 Thread Christian Gruber
I'll be getting back to it soon with some updates. Christian. On Mar 20, 2007, at 5:47 AM, romaindelfour wrote: Hello Here is what you want : http://repo1.maven.org/maven2/net/israfil/mojo/maven-flex2-plugin/ 1.0-alpha-2/ I did it. I'm trying to patch it for my needs. Hope it helps you

[flexcoders] Re: FlexBuilder Project Layout Help - add'ntl info

2007-03-20 Thread Roscoe P Coltrane
This is the message I get from FB when I try to create a new workspace: C:\Projects\ProjA overlaps the workspace location: C:\Projects\ProjA However, ProjA was previously deleted. --- In flexcoders@yahoogroups.com, Roscoe P Coltrane [EMAIL PROTECTED] wrote: Where does FB keep information about

[flexcoders] Dimension limit on Sprite or Displayobject?

2007-03-20 Thread nxzone
If a have a sprite and i draw a rectangle of more then 65535, all then content is repeated. (not working example) public class UserViewEntry extends Sprite { public function UserViewEntry(entryData:EntryData){ //create ONE label and add it this.addChild(label)

[flexcoders] Re: Maven plugin outputDirectory is READONLY

2007-03-20 Thread Frank
Thanks for the reply, Christian. Great plugin, BTW. I wanted to get access to the sources with the eclipse .project files so I can alter it to enable changing the default directory, but the SVN access is not working. Are going going to fix access to that? Thanks again, Frank P.S. If you need

Re: [flexcoders] amfphp problem - making more than 1 call at the same time :: fixed

2007-03-20 Thread Yiðit Boyar
i've migrated from amfphp1.2 to amfphp1.9beta2 and adodb to PDO in the server side and the problem is fixed... - Original Message From: Yiðit Boyar [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, March 19, 2007 10:28:09 PM Subject: [flexcoders] amfphp problem - making

[flexcoders] Re: WebService Fault Handling - Flash Player 9 Update

2007-03-20 Thread paulwelling
Hello, Thank you for the response. A malformed WSDL string set in the WebService will cause a 404 with the following error, that does get passed to the FlashPlayer: Unable to load WSDL. If currently online, please verify the URI and/or format of the WSDL. Is it only Faults - 500, that won't

Re: [flexcoders] Storing Dates Times in VO's

2007-03-20 Thread Kevin
thanks for the advice. I completely agree that I need to store them as dates. Unfortunately, my problem seems to be how to do that from the PHP end of things. As I understand it, becuase PHP is not a typed language, AMFPHP tries to guess as what the type is. Unfortunately, I can't figure

RE: [flexcoders] Dimension limit on Sprite or Displayobject?

2007-03-20 Thread Alex Harui
You have to stay within 2880 pixels. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14437 It is one of the reasons why the list classes virtualize the rows. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Event Dispatching through more than one component

2007-03-20 Thread qnotemedia
I'm still messing around with custom events. If I have a popup embedded within another popup and want to dispatch an event from the top-most component down to the parent application, do I have to dispatch it to the first popup, and then redispatch the same event to the parent app? Is there

[flexcoders] Re: Apollo (Should Adobe Keep the Name)

2007-03-20 Thread Nicolas Boulet-Lavoie
So funny, haha! --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: I must be old - I was thinking where I'd heard of Apollo before (besides mythology and the space program) and I remembered there used to be a range of unix servers called Apollo. Now I've completely

Re: [flexcoders] Event Dispatching through more than one component

2007-03-20 Thread Jon Hirschi
It doesn't happen automatically. You need to set this up, but it's not hard to do. the thing about popups is that they act essentially like their own application. so they don't normally pass events outside of the popup window. events originate and terminate with the popup. so for example,

[flexcoders] Re: Event Dispatching through more than one component

2007-03-20 Thread Paul DeCoursey
Have you tried setting bubbles to true on your event? You should be able to bubble the event and it will get up to the systemManager where it can be handled by your app. --- In flexcoders@yahoogroups.com, Jon Hirschi [EMAIL PROTECTED] wrote: It doesn't happen automatically. You need to set

Re: [flexcoders] Re: Apollo (Should Adobe Keep the Name)

2007-03-20 Thread Impudent1
The beta names are always cooler than the shipping names anyhow. I totally understand, they cannot sell chambants or big electric cats but they are still kinda fun :P Impudent1 LeapFrog Productions

RE: [flexcoders] Re: Event Dispatching through more than one component

2007-03-20 Thread Alex Harui
Each popup is parented by the systemManager so it won't bubble from one popup to the next. However, each popup can listen to the systemManager for the event to bubble to it, or listen in capture phase so you don't have to use bubbling. From:

[flexcoders] Using Flex to extract a phrase from a text file

2007-03-20 Thread João
I have one text file with about 100 lines of random text. Somewhere on the file, there is an URL for a SWF. The url has the .swf word in it, and it's between 's . The format of the file can change over time, and there is only one SWF file on the text file. I need to find the best algorithm to

RE: [flexcoders] Using Flex to extract a phrase from a text file

2007-03-20 Thread Alex Harui
How about: var pos:int = randomText.indexOf('.swf'); var url:String = randomText.substring(0, pos + 4); pos = url.lastIndexOf(''); url = url.substring(pos + 1); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Sent:

[flexcoders] ChangeWatcher question

2007-03-20 Thread pgp.coppens
Flex community, Would someone be willing to help out with the following two questions I have. 1. I need to keep track of a number of properties (about 20 per object) of a large number of objects (hundreds to thousand range). I can either use an army of ChangeWatcher instances or add some code to

Re: [flexcoders] Re: Maven plugin outputDirectory is READONLY

2007-03-20 Thread Christian Gruber
Yeah. Others have asked. I don't have a public svn repo right now. I'm going to try to set one up, but my current project has me pretty locked up. As soon as I can do, I'll get that going so others can contribute, patch their own, yadda yadda. Sorry for the delay on this. Christian.

  1   2   >