RE: [flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread Glenn Williams
are you asking how to reset an arraycollection back to zero values? Glenn From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Monday, April 07, 2008 5:30 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: How can I clear an

RE: [flexcoders] Re: Force skin state

2008-04-07 Thread Glenn Williams
Take a look at this http://www.asfusion.com/blog/entry/stateful-skins-in-flex-3e-color-transitio ns-in-buttons-now-possible Glenn From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jfrumar Sent: Sunday, April 06, 2008 11:03 PM To: flexcoders@yahoogroups.com

[flexcoders] Hi, there. Nice to meet you. I made somthing with FLEX

2008-04-07 Thread Sujin Jeong
I live in Tokyo. I made a FLEXed meta search site. Please, Check this http://www.metarace.net/ out. I'm hungry. Give me any comment about this site. Best Regards. ^^

[flexcoders] Profiling AIR apps

2008-04-07 Thread Vaan S Lanko
Hello Flexies, Can anyone tell me how to start the profiler for an AIR app or point me to a blog/page with some relevant information. After I hit the profile my app button, all I get after a few seconds is a 'Socket timeout.' message on the console. I have read the page at

Re: [flexcoders] Automated User Interface Testing

2008-04-07 Thread Tom Chiverton
On Friday 04 Apr 2008, kallebertell wrote: Is there some other options which I haven't looked into? The one that Adobe test the SDK with ? It's in the source repository. -- Tom Chiverton Helping to continuously transform interactive meta-services on: http://thefalken.livejournal.com

[flexcoders] AdvancedDataGrid performance poll

2008-04-07 Thread sreeni_r
Hi, I am conducting two performance polls for AdvancedDataGrid. If you don't mind spending a minute and provide valuable feedback please visit http://flexpearls.blogspot.com/2008/03/datechooser-with-support-for.html Thanks! Sreenivas

[flexcoders] Copying all data from one column of DataGrid to another column

2008-04-07 Thread Baljeet singh
Hi all, I am using an dataGrid control. I want to have a functionality by which i can copy the entire column of a DataGrid to another column of the same DataGrip. Any pointers / help will be highly appreciated. Thanks: Bali

Re: [flexcoders] Copying all data from one column of DataGrid to another column

2008-04-07 Thread Scott Melby
It seems the following should do it: //assuming this setup mx:DataGrid id=theGrid dataProvider={_dataGridAC} ... private function copyColumnData(ac:ArrayCollection, sourceDataField:String, destDataField:String):void { //you could use the real object type here instead of Object for

[flexcoders] Flex Soap and Https

2008-04-07 Thread Szabo Jean
Hello, Is it possible to call Soap service thru https, with WebService Class, il the server need Basic Authentication ? Thanks Jean

[flexcoders] Problem with OC4J web services and Flex3 SOAPEncoder

2008-04-07 Thread jannemaijanen
Hello! I got a problem trying to execute a web service running in Oracle OC4j 10.1.3.3, and a client side with Flex3. I generated the scripts for using the web service using Flex builder 3, but it's not making a valid call to web service. I debugged the call operation to the Flex SOAPEncoder

Re: [flexcoders] Hi, there. Nice to meet you. I made somthing with FLEX

2008-04-07 Thread Chitra S.Pai
Hi The site is very nice... The effects are super. Hope you will work better and make it perfect. Also I have a doubt, are you using RSS feeders to get those data If yes, How did you connect the RSS feeders to Flex.?.. And if I delete QA questions will it hide from my page or delete from

[flexcoders] Re: AIR app crashing on start

2008-04-07 Thread Joao Coelho
Hi Alex, yes, it appears hung and not crashed, bad choice of words in my part. Getting to the point, all files are visible, not a file permission problem also. Tried exporting a release build with all the files just in case and still no result, reinstalled runtime, still no luck... Also when

[flexcoders] Determining text control's height in a ListItemRenderer.

2008-04-07 Thread geraldshastri
Hi, I have made a custom control by extending the ListItemRenderer to use as an itemRenderer with a list control. This custom component has some images and text controls. But I am having trouble sizing the Text controls. The Text control can have a varying width depending upon the width of the

[flexcoders] XML Escape Charater handling

2008-04-07 Thread sohilrupani
Hi i m new to flex. I wanted to know is there any special way i can hadle Escape Character in Flex or i would have to write a wrapper myself to replace a with lt if it appears in my string .. Thanks Sohil

Re: [flexcoders] Re: Question about DisplayObject.hitTestPoint() and the shapeFlag

2008-04-07 Thread Jon Bradley
On Apr 4, 2008, at 5:54 PM, Eric Cooper wrote: FWIW, I decided to write my own hit test using dot products for concave polygons. I will need to do something a bit more involved for convex polygons, but I don't need that immediately. Give this a shot. This is from my AS3 boolean library

[flexcoders] Allow Muitlple Selection with shift key

2008-04-07 Thread jitendra jain
Hi friends, I want multiple selection with shift key instead of control key in component List. Control key is defaultly specified by Adobe. Thanks, with regards, JJain - You rock. That's why Blockbuster's offering you one month of Blockbuster

Re: [flexcoders] Re: Question about DisplayObject.hitTestPoint() and the shapeFlag

2008-04-07 Thread Jon Bradley
On Apr 7, 2008, at 8:46 AM, Jon Bradley wrote: /** * Point inside polygon using winding number method * q Point2d A point 2d structure with x,y properties * p Polygon A polygon as an array of points in clockwise order * returns

[flexcoders] Flex SuperTabBar skin not updated when selecting tab programmatically

2008-04-07 Thread rleuthold
I'm using several SuperTabNavigators (They 're awesome !) from flexlib (Thanxs for flexlib ! ) but I have one problem (not able to solve it since weeks). After loading the contents for the SuperTabNavigator I'd like to select the first tab - superTabNav.selectedChild or

Re: [flexcoders] TDD, code coverage, UI automation and what the neighbours are up to...

2008-04-07 Thread Tom Chiverton
On Saturday 05 Apr 2008, Barry Beattie wrote: wouldn't it be great if Flex apps could do the same within FlexBuilder? Leaving aside the QTP integration Flex has had since v2, UI automation is already in the source repository (check out the last steps of the build process). -- Tom Chiverton

[flexcoders] Re: Problem dropping items on a Canvas

2008-04-07 Thread Daniel
thanks man... but if I set alpha to 0, the items I drop in the Container are invisible ( also have alpha 0 ). any other ideas? --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: set the color then alpha=0; - Original Message From: Daniel [EMAIL PROTECTED]

[flexcoders] Re: Question regarding mx:List and itemRenderer

2008-04-07 Thread tchredeemed
Thank you very much tracy, I have been reading about it and it is working perfectly now. Of course have to set up a few different tweaks ;) --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Yes. Google: Alex Harui itemRenderer recycle You will find a full

Re: [flexcoders] Fail to apply UITextFormat to UITextField in custom Component

2008-04-07 Thread Daniel Freiman
Instead of using defaultTextFormat, try setting the text and then calling myText.setTextFormat(myFormat). Also calling addchild and then setting the formatting may make a difference but it's been a while since i looked at this stuff so it might not. If neither of these things help and i have

[flexcoders] BlazeDS + Jetty

2008-04-07 Thread VELO
Anyone had put BlazeDS to run inside Jetty? Look on google for this. Found almost nothing. VELO

Re: [flexcoders] Allow Muitlple Selection with shift key

2008-04-07 Thread Marcelo Savioli
Hello JJain, This component might help you: http://blog.dclick.com.br/2007/10/25/selecionando-multiplos-itens-sem-o-ctrl/ The content is not in English but the code is straightforward. All you have to change is a line in mouseDownHandler: from: event.ctrlKey = true; to: event.ctrlKey =

[flexcoders] Using Embedded and System Fonts in same text field

2008-04-07 Thread a.hawksworth230
Hi everyone, I'm having some trouble with embedded fonts. I have read many many threads/posts about embedded fonts and haven't really gotten anywhere so far. No matter what I have tried I cannot seem to apply an embedded font to a section of text and have a system font applied to another

[flexcoders] Re: AIR app crashing on start

2008-04-07 Thread Joao Coelho
Found the problem, sort of, I had monkeypatched FlexSprite and as soon as I rolled back to a version without the patch it worked fine. Maybe the patched FlexSprite class is not being properly compiled into the .air file, but shouldn't it work, since it works when running/debugging the application

[flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread Dmitri Girski
Hi Alex, I believe that there is a bug/feature with binding HTTPService result to a DataGrid. If HTTPService returns empty result (null), DataGrid won't be cleared from a previous values. To overcome this problem I had to use a dataProvider variable(ArrayCollection) which I clear every time

[flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Kevin Aebig
Hey all, I've looked at the documentation about 400 times now and can't seem to find myself an example of using a column of datatype Date within AIR SQL. I know that it's been customized to use Actionscript / JavaScript Date objects, but I can't get it to work properly for the life of me. Any

[flexcoders] Re: HttpService post error 2032:iostream error

2008-04-07 Thread Dmitri Girski
Install Wireshark sniffer and check the contents of the packets. I am inclined to think that this problem is on a server side. PS What is on the server side? --- In flexcoders@yahoogroups.com, longxjyh [EMAIL PROTECTED] wrote: When I use HttpService to send data by post method,I encounter a

Re: [flexcoders] Using Embedded and System Fonts in same text field

2008-04-07 Thread Daniel Freiman
I'm 99.9% sure that what you're attempting can't be done. The livedocs for TextField says that TextField has a flag (embedFonts) that indicates whether embeded or device fonts are used, so it's hard to see how both could ever be used at the same time. - Dan Freiman On Mon, Apr 7, 2008 at 9:52

[flexcoders] Re: GIS and Flex

2008-04-07 Thread elf1435
We are developing software system that includes flex-client and jboss- server communicating via SOAP-web services. Now we need to add GIS-functionality, that is we need to show some objects on the map on the flex-client. Our system will run in private network and customers will not have internet

[flexcoders] remoteObject and secureJSON on CF

2008-04-07 Thread Chad Gray
Is flex's remoteObject compatible with secureJSON, secureJSONPrefix and verifyClient() in ColdFusion? I was reading Ray's article on securing Ajax and I don't want to break my Flex/AIR applications if I start using these features/functions.

[flexcoders] Re: Datatip in datagrid not working properly

2008-04-07 Thread stuartward
Thank you very much for your reply. So it seems the documentation is not correct regarding datatips. Please help me understand your statement, Otherwise, it should require clipped text. --- Does this mean that if I used another function or property it would work as I want it to? How do I

[flexcoders] Re: flickr api key - callback url

2008-04-07 Thread Ben Throop
Are you using as3flickrlib? http://code.google.com/p/as3flickrlib/ --- In flexcoders@yahoogroups.com, slee_usa [EMAIL PROTECTED] wrote: I am trying to write a flex app which connects to flickr service. I need to make the authentication work, and provide the callback url. This url should

Re: [flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Fidel Viegas
On Mon, Apr 7, 2008 at 4:22 PM, Kevin Aebig [EMAIL PROTECTED] wrote: Hey all, I've looked at the documentation about 400 times now and can't seem to find myself an example of using a column of datatype Date within AIR SQL. I know that it's been customized to use Actionscript / JavaScript

[flexcoders] Runtime CSS Switching at App Startup

2008-04-07 Thread merrittwchapman
I have an application that needs to be styled based on a URL variable. I'm having trouble applying the style BEFORE the application starts displaying controls. When the app loads, a login Panel is displayed in the default look and feel (gray) until the StyleManager runs as part of an init

[flexcoders] Adding Shape Objects to Canvas control

2008-04-07 Thread Mike Anderson
Hello All, I am trying to add my custom shape objects (which create several different shape types), to a different type of container, and I am having some difficulties. From my experience, you can directly add a Shape (flash.display.shape) as children to UIComponents, but you cannot add them to

[flexcoders] Re: Text Styles In FLEX 2

2008-04-07 Thread Tracy Spratt
Well, you can also set the properties in AS, or extend the component to use a hard-coded value, or extend the component to set the values based on content or on some externally maintained value. What is your goal? Tracy --- In flexcoders@yahoogroups.com, Chris Kennon [EMAIL PROTECTED] wrote:

RE: [flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Kevin Aebig
Hi Fidel, Actually, the version of SQLite that AIR uses has been customized to implement dates as julian dates and stores them as REAL. My issue arises in that I'm getting the dates originally from a MySQL DateTime column and still want to be able to use that form of formatting to query the

RE: [flexcoders] how do you guys handle reporting?

2008-04-07 Thread Pavel Cristian Gabriel
I use an iFrame window, so the report is inside a panel that is inside the main application. If you want more please visit http://www.themidnightcoders.com/blog/2006/12/mixing-html-and-flex-using-ifr ame.html. Cristy From:

RE: [flexcoders] weird NumericStepper question / script

2008-04-07 Thread Tracy Spratt
I have a change event handler on each. It would perform the logic and adjust the other three. Or is it the logic itself you are asking about? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Saturday, April 05,

[flexcoders] Re: Connecting 2 mxml files in flex

2008-04-07 Thread Tracy Spratt
First we need to be understand your question. One does not connect two mxml files. mxml is a source code format, not a runtime entity. The source code files do not necessarily have any relation to the runtime architecture. You must phrase your question in terms of the runtime functionality

RE: [flexcoders] XML Escape Charater handling

2008-04-07 Thread Tracy Spratt
What is the context of your question? Sometimes you can use CDATA, sometimes escape()/unescape(), sometimes manually use HTML entities and sometimes it in not necessary to do anything. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] GroupBox component

2008-04-07 Thread Pat Buchanan
Fidel: You can find one in this library - source and all. http://code.google.com/p/jwopitz-lib/ Thanks -Pat www.datanotion.com On Thu, Apr 3, 2008 at 5:27 AM, Fidel Viegas [EMAIL PROTECTED] wrote: Hi all, Does anyone know how to emulate a GroupBox or knows of a ready made component?

Re: [flexcoders] Drop anywhere to remove

2008-04-07 Thread Troy Gilbert
that's what I was afraid of - anyone know of any other ways around it? You'll have to create a new DragProxy class to change this behavior. To do this, you'll need to monkey patch (google it, you'll find it) the framework's DragProxy class. Once you do that, you can change the logic it uses for

RE: [flexcoders] Re: Datatip in datagrid not working properly

2008-04-07 Thread Tracy Spratt
What he is saying is that if you simply enable dataTips, Then Flex should show the value of the column's dataField property, but only if it is too long to fit in the cell. However, If you are using a dataTipFunction, you are responsible for showing/not Showing the dataTip. Are you seeing

[flexcoders] Re: HttpService post error 2032:iostream error

2008-04-07 Thread Carlos Reyes
I believe I've run into the same problem. I haven't checked the length of the POST data, but I'll bet it's over 1022 bytes. This is under Windows XP, Internet Explorer, and the latest Flash (9,0,115,0). I'm seeing the same behavior with Opera under Windows. Firefox is fine, Apple Safari (under

[flexcoders] Re: HttpService post error 2032:iostream error

2008-04-07 Thread Carlos Reyes
I checked the packets with Charles (www.xk72.com/charles) under Windows. The request body is over 1KB. The response packet just says 204 No Content. There is no body. Obviously, the ActiveX wrapper is taking this to mean that something went wrong. Again, since I have no information other than

Re: [flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Vaan S Lanko
Hey Kevin, Heres an example of some sql text on a SQLStatement that I use in an AIR app I'm building. I use a dateformatter for the actual date output i.e '2008-04-06' and if I need the time component, I just build up and replace the end of the text with my vars, its not pretty but it works

[flexcoders] Example of connecting to Microsoft Olap server

2008-04-07 Thread Phil Jeary
Hi all, I have found posts stating that Flex can connect to an Olap server. I have found examples of Flex connecting to Xml data for Olap. What I am looking for is Flex connecting to Olap directly using msmdpump.dll I'd like to see what it can do. Do I specify what dimensions, members,

RE: [flexcoders] Determining text control's height in a ListItemRenderer.

2008-04-07 Thread Tracy Spratt
When I did this, I did not extend ListItemRenderer, but rather copied it an modfied the code. ListItemRenderer does properly handle height and width measurement. You could look at the code, specifically in the measure() method, to see what you need to do to duplicate the functionality. Tracy

[flexcoders] Local file access

2008-04-07 Thread Steve Mathews
One of the noticeable differences between Silverlight and Flash is the way they handle local file access. In Flash we have to upload a file to the server before we can gain access to the file's contents. In Silverlight you get access to the file as soon as it is selected by the user. My question

RE: [flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread Tracy Spratt
I have used AC API method removeAll() to clear an AC, and it properly updates the UI. Assigning an empty AC should do it as well, though. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Monday, April 07,

RE: [flexcoders] Re: Datatip in datagrid not working properly

2008-04-07 Thread Alex Harui
Most of the time, folks just need to pick out one field from the data object, often the same as the label. Leaving dataTipFunction as null and setting dataField works for those situations. If dataTipFunction is not null, the datatips are always shown. If you must use dataTipFunction, I would

[flexcoders] Error building Flex through Ant

2008-04-07 Thread Nicholas Watson
We are attempting to build our project using Ant so that we can include Flex in our continuous build process. We are getting a strange namespace error when attempting to build using the mxmlc compiler. We created a simple HelloWorld project to verify the error was not in our project structure.

Re: [flexcoders] Profiling AIR apps

2008-04-07 Thread Vaan S Lanko
In the words of Dr Evil 'throw me a frikkin bone here ok'. Cmon someone must be using the profiler on AIR apps out there. I'm not asking for hand holding, just a confirmation that it even works would be start. Is there someting I need to config, coz at the moment all i get is socket timeout

RE: [flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread Alex Harui
I ran a simple test of DataGrid binding to arraycollection. If I set an empty array collection, the DataGrid resets properly. If the HTTPService returns an empty ArrayCollection I would expect the DG to also reset, but I don't have time to test that out. If it returns null, I'm not sure what

RE: [flexcoders] Query related to ItemRenderer

2008-04-07 Thread Alex Harui
Look at the examples on my blog (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Monday, April 07, 2008 7:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Query related to

RE: [flexcoders] Determining text control's height in a ListItemRenderer.

2008-04-07 Thread Alex Harui
You should set the Text's width to some portion of the item renderer's explicitWidth before measuring the Text. Note that ListItemRenderer already does wordwrapping and uses TextField instead of the heavier Text component. From: flexcoders@yahoogroups.com

RE: [flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Kevin Aebig
Hi Vaan, Thanks... I just found references to using a specific date function which I'm going to try out. convert string to datetime object: strftime('%Y-%m-%d %H:%M:%S','timeStringShouldGoHere','localtime') Cheers, !k -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Profiling AIR apps

2008-04-07 Thread Kevin Aebig
It works. I use, Run Profile AppName and it starts the profiler as well as your application after you set the options. !k _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Vaan S Lanko Sent: Monday, April 07, 2008 11:24 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Muzak
CREATE TABLE tbl_test ( testID INTEGER PRIMARY KEY AUTOINCREMENT , field1 DATE ) All of the following work: INSERT INTO tbl_test (field1) VALUES ('now') INSERT INTO tbl_test (field1) VALUES ('2008-04-07 20:57:44') INSERT INTO tbl_test (field1) VALUES ('2008-04-07') INSERT INTO tbl_test (field1)

[flexcoders] Blazeds sqladmin processing resultSet List data

2008-04-07 Thread netdeep
I'm trying to get ArrayCollection mapped to an array using the Blazeds turnkey sample code. In the sqladmin example, they are creating a List object in the Java code by executing the SQL query and storing it like this: // relevant code... while (rs.next()) { row=new

[flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread Dmitri Girski
Assigning an empty AC should do it as well, though. Nope, it didn't work for me. I had this problem with both DataGrid AdvancedDataGrid and ended up with intermediate ArrayCollection.

[flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread jmfillman
removeAll() should do exactly what you are looking for, but only if your dataGrid's dataprovider is bound to the arrayCollection. If your dataGrid is not bound to the arrayCollection, the dataGrid will not change as data in the arrayCollection changes (unless you have accounted for this

[flexcoders] Re: how do you guys handle reporting?

2008-04-07 Thread jmfillman
I would love to see a report builder/formater added to FlexBuilder, much like what is available for ColdFusion. --- In flexcoders@yahoogroups.com, Pavel Cristian Gabriel [EMAIL PROTECTED] wrote: I use an iFrame window, so the report is inside a panel that is inside the

RE: [flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Kevin Aebig
Hey Muzak, I've actually tried a few of those from references at SQLite websites but to no avail. I think it has something to do with the way the DB is handling data typing as I've heard that SQLite will actually allow unique datatypes to each cell instead of column. Thanks a lot for the

[flexcoders] Re: HttpService post error 2032:iostream error

2008-04-07 Thread Dmitri Girski
OK, guys, I'll try to summarise my painful experience with HTTPService. Things which could go wrong: - HTTPService settings, i.e. type of the parameters object. You should check that if you send XML, the type of the object is XML and content-type is application/xml - I had a lot of mysterious

RE: [flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread Alex Harui
Well, it worked for me in a simple test. I'd be interested in your scenario to see why it was different. Maybe you had bindings that overwrote your manual updating. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dmitri

RE: [flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread Alex Harui
If you've assigned an arraycollection (as opposed to an array) to the DataGrid but are not using binding, the DataGrid will refresh when you call removeAll(). Whether you use binding or not, once the DG has a reference to an arraycollection instance and you change that instance, the datagrid will

[flexcoders] Re: Question about DisplayObject.hitTestPoint() and the shapeFlag

2008-04-07 Thread Eric Cooper
jon, thanks! my polygons are only triangles and quadrilaterals at this point, but your method works beautifully for concave quads. I did have to change one line (which appears a few times) in order to compile: w += 2 * ( p[ip].y p[i].y

[flexcoders] Re: Error building Flex through Ant

2008-04-07 Thread Nicholas Watson
We are only getting this error when building from Eclipse. --- In flexcoders@yahoogroups.com, Nicholas Watson [EMAIL PROTECTED] wrote: We are attempting to build our project using Ant so that we can include Flex in our continuous build process. We are getting a strange namespace error when

[flexcoders] Flex 3 GA Designer doesn't work with my modules

2008-04-07 Thread dbronk
In Flex 3 Beta I had no issues doing this, in Flex 3 GA it does not work and I'm wondering if any of you have seen this issue. I have extended Module to MyModule and added code that I need. My Flex builder is setup into three projects. AppProject, ModuleProject, and FrameworkProject. My

[flexcoders] Air and linking out from a minibrowser

2008-04-07 Thread djhatrick
I have a mini-browser air client, when a user hits a link, i want them to be linked out with their preferred browser. I hear this requires javascript, any tutorials on this? Thanks, Patrick

[flexcoders] Package installs and Air

2008-04-07 Thread djhatrick
I have the air client already, when somebody doesn't have an air client is the package install for the air runtime included automatically? If not, how do I include it, please? Thanks, Patrick

Re: [flexcoders] Re: how do you guys handle reporting?

2008-04-07 Thread Derrick Anderson
i signed up for a jira account but have yet to receive my confirmation email, else i'd go in there and submit a feature request. On Mon, Apr 7, 2008 at 3:01 PM, jmfillman [EMAIL PROTECTED] wrote: I would love to see a report builder/formater added to FlexBuilder, much like what is available

[flexcoders] Re: Unable to send HTTP parameters via Socket Digest Auhtorization

2008-04-07 Thread e_baggg
I am not sure why but I am using HTTP/1.1 and sending the request string with '/r/n/r/n' at the end sends the request and I receive the response...but the TCP socket is not closed. Thus the request just hangs for 5 seconds until finally the socket is killed on one end. Any ideas why the socket is

[flexcoders] Re: HttpService post error 2032:iostream error

2008-04-07 Thread Carlos Reyes
I found a workaround. I can tell Amazon S3 that I want to do a redirect. Now the response code is 303 See Other, which does not generate the error. Opera under Windows suffers from the same problem (not Firefox), although it apparently does not use the ActiveX adaptor. It uses the PlugIn. I don't

[flexcoders] AMF development with remote dev server

2008-04-07 Thread Richard Rodseth
I'm just getting started with AMF. WebOrb backend, but I'm on a Mac. Is it possible to set up a FlexBuilder 3 project so I can connect to the remote endpoint. All the instructions I've found talk about running a local server. Can I copy server-config.xml somewhere in my project? Or just web

[flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-07 Thread Dmitri Girski
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I ran a simple test of DataGrid binding to arraycollection. If I set an empty array collection, the DataGrid resets properly. well, I am pretty sure it did not work with AdvancedDataGrid - it was a first time I've bumped

[flexcoders] Re: HttpService post error 2032:iostream error

2008-04-07 Thread Carlos Reyes
Thank you for your reply. I've done a lot of research on this problem. None of the usual causes/solutions to 2032 errors appear to apply. This is an HTTP POST without using SSL. It's not a caching problem. Caching is an issue with GET commands, I know that the request really goes out, and the

Re: [flexcoders] Re: Question about DisplayObject.hitTestPoint() and the shapeFlag

2008-04-07 Thread Jon Bradley
On Apr 7, 2008, at 2:30 PM, Eric Cooper wrote: w += 2 * (( p[ip].y p[i].y ) ? 1 : 0) - 1; Ah yup. I didn't compile that bit yet. That was my reference code from the previous project and just copy/ pasted it with the change for function name and comments. I guess I shouldn't be surprised

Re: [flexcoders] Runtime CSS Switching at App Startup

2008-04-07 Thread Igor Costa
Marrittw For your solution I guess you could call applicationComplete Handler. And works most of time. For your function unload the default and than load yours. Regards Igor Costa On 4/7/08, merrittwchapman [EMAIL PROTECTED] wrote: I have an application that needs to be styled based on a

Re: [flexcoders] AIR SQL - Datatype issues

2008-04-07 Thread Muzak
I'm working on an (AIR) SQLite Admin tool, and the examples are what I use (in the app) so they do work. The DB's used however are created with the app itself, so maybe that has something to do with it. If you're interested in trying the app (still a work in progress) shoot me a mail:

Re: [flexcoders] Flex Code Behind issue

2008-04-07 Thread Igor Costa
Very Stange behavior. I´ve tested your code and couldn´t get same error. Log a bug for it. Regards Igor Costa On 4/6/08, firdosht [EMAIL PROTECTED] wrote: Hey guys, so I have created a simple flex proj mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] BlazeDS + Jetty

2008-04-07 Thread Igor Costa
Velo Once the Jetty is found in JoNas and JBoss, it´s just a matter of Libraries to start running. Same configuration you have to install in JBoss will works fine in Jetty too. Regards Igor Costa www.igorcosta.org On 4/7/08, VELO [EMAIL PROTECTED] wrote: Anyone had put BlazeDS to run

Re: [flexcoders] Flex SuperTabBar skin not updated when selecting tab programmatically

2008-04-07 Thread Igor Costa
Rico If you´re trying using the Flex 3 SDK, this problem happens. Please Check out the last sources from the project. Maybe Doug already fix it. That´s because of StyleProxy acomming to Flex 3 SDK. Flex 2 works smooth. Regards Igor Costa www.igorcosta.org On 4/7/08, rleuthold [EMAIL

Re: [flexcoders] Flex Soap and Https

2008-04-07 Thread Igor Costa
Jean This Could help your for while http://weblogs.macromedia.com/lin/archives/2008/04/how_to_access_f.cfm Regards Igor Costa www.igorcosta.org On 4/7/08, Szabo Jean [EMAIL PROTECTED] wrote: Hello, Is it possible to call Soap service thru https, with WebService Class, il the server

[flexcoders] Re: how do you guys handle reporting?

2008-04-07 Thread Don Kerr
I continue to use CF Report Builder, cfdocument, etc. for reporting in my Flex apps. I create a flex report using AdvancedDataGrid, etc. and then use the same CFCs to generate cf reports. I simple add a button bar at the top of the Flex report that opens the CF reports in a new browser tab. Works

[flexcoders] datagord sorting

2008-04-07 Thread hworke
Hello all. once the datagrid is populated if any column header is clicked the datagrid is sorted. Now how can I take it back to its original state. The original state means the way the data was displayed when it was first loaded in the data grid. Regards...

[flexcoders] Re: AMF development with remote dev server

2008-04-07 Thread Mark Piller
Hi Richard, Copy the config xml files from /weborb30/WEB-INF/flex to your local box and compile the project with the local version of the files. The only change you need to make is in services-config.xml. Locate the my-anf channel and change the endpoint URI to be an absolute URL pointing to your

Re: [flexcoders] Re: AMF development with remote dev server

2008-04-07 Thread Richard Rodseth
Thanks for the suggestion, Mark. Do you mean I should just create a server-less FlexBuilder project, and place those files inside my src directory? Someone else suggested that one can ignore the config files completely, and build up the RemoteObject from scratch in ActionScript. On Mon, Apr 7,

[flexcoders] FontWeight of Selected Item in DataGrid

2008-04-07 Thread Ethan Miller
Greetings - Any way to change the fontWeight of the selected cell in a dataGrid? Seems like there ought to be... cheers, ethan

[flexcoders] FontWeight of Selected Item in DataGrid

2008-04-07 Thread Ethan Miller
Greetings - Any way to change the fontWeight of the selected cell in a dataGrid? Seems like there ought to be... cheers, ethan

Re: [flexcoders] Re: GIS and Flex

2008-04-07 Thread Paul Hastings
elf1435 wrote: so the requirements for solution we are looking for, are as follows : 1. flex GIS API for client side 2. server that can be installed in private network and can handle all necessary GIS data 3. GIS data (digital cartographic maps and aerial/satellite imagery) for specific

[flexcoders] Re: AMF development with remote dev server

2008-04-07 Thread Mark Piller
Yes, either one of the approach is valid. I do prefer to have config files in place as it results in fewer lines of code. You do not have to put the config files into src, just somewhere on the computer. When you reference services-config.xml in the -services compiler argument, make sure to use

[flexcoders] Adding a UITextField to a UIComponent

2008-04-07 Thread esaltelli
I have a component that extends UIComponent. I am adding several display objects to it--a FlexShape, Image, and UITextField. I've overridden createChildren() to construct each of the component objects. However at run-time the addChild call for the UITextField is throwing an RTE indicating

RE: [flexcoders] datagord sorting

2008-04-07 Thread Tracy Spratt
Try re-assigning the dataProvider. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hworke Sent: Monday, April 07, 2008 6:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] datagord sorting Hello all. once the

[flexcoders] CVS server and flex builder

2008-04-07 Thread hworke
Did any one installed CVS server on his/her desktop and used it with Flex builder? Was that difficult to configure?

RE: [flexcoders] Adding a UITextField to a UIComponent

2008-04-07 Thread Alex Harui
Search the archives. Someone else had this problem recently. I don't remember the resolution. The global style selector has a default fontAntiAliasType. Unless you've overridden it, or somehow found a way to get validateNow to run before the styles are hooked up, you shouldn't get this

  1   2   >