RE: [flexcoders] Working with date/Time in FB

2010-06-27 Thread Tracy Spratt
Instead of binding, use a result handler and inspect the actual xml. Have you set resultFormat="e4x"? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Sunday, Jun

[flexcoders] Job opportunity in Atlanta

2010-06-06 Thread Tracy Spratt
flexcoders who might have noted my absence, this is why, I am crazy busy! Tracy Spratt Contact: David Holley dhol...@johnsonoutdoors.com

RE: [flexcoders] ResultEvent from HttpService not parsing xml

2010-04-22 Thread Tracy Spratt
ourXML is already at the node. Try: var name:String = ourXML.two.name.text(); //the text() is not always necessary When in doubt view the xml by doing: trace(ourXML.toXMLString()); Tracy Spratt, Lariat Services, development services available _ From: flexcoders

RE: [flexcoders] Re: Problems With my XML Created Array Collection

2010-04-20 Thread Tracy Spratt
; Var acResult:ArrayCollection = new ArrayCollection(); Var xmlCategory:XML; For (var i:uint=0;imailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Tuesday, April 20, 2010 12:39 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Problems With my XML Created Array

RE: [flexcoders] Re: Problems With my XML Created Array Collection

2010-04-20 Thread Tracy Spratt
converted to a number, removing trailing and leading zeros and such, and sometimes this is not desired. Using e4x and looping over the categories.category XMLList is very simple. XMLLists are never null, but empty nodes just result in a zero length, which is easy to test for. Tracy Spratt

RE: [flexcoders] Re: How to clear cache for all major browsers (IE, Mozilla, Safari and Chrome)

2010-04-20 Thread Tracy Spratt
Yes. Manually incrementing the version at each build will be more work for you, but will be a better experience for your users. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of handitan

RE: [flexcoders] What is the best Way - Multiple DataProvider's or one?

2010-04-20 Thread Tracy Spratt
rendering complete will be. Knowing when a screen is fully rendered is not a simple thin, but I do not think you have to get the very latest event, just late enough to prevent clicking on stale data. Tracy Spratt, _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com

RE: [flexcoders] Tilelist Populated by Remote XML Only showing Data from files with > 1 Node

2010-03-30 Thread Tracy Spratt
the result object to determine what it contains. You can also use the toArray() function. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of James Sent: Tuesday, March 30, 2010 3:

RE: [flexcoders] XML Problem ? how to retreive children from XML without having the same attributs of the principal object

2010-03-24 Thread Tracy Spratt
Very interesting, thanks! Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Oleg Sivokon Sent: Wednesday, March 24, 2010 12:46 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

RE: [flexcoders] XML Problem ? how to retreive children from XML without having the same attributs of the principal object

2010-03-24 Thread Tracy Spratt
Be aware that the @AttrName syntax is a bit risky. All of the examined nodes must have the attribute or the line will error. Only use it when you have complete and permanent control of the xml A safer syntax is attribute(“AttrName”). Tracy Spratt, Lariat Services, development services

RE: [flexcoders] Re: Loading swf in "child" window?

2010-03-24 Thread Tracy Spratt
x.net/showFileDetails.cfm?ObjectID=690 Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of newflexer Sent: Wednesday, March 24, 2010 10:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoder

RE: [flexcoders] Using Server Stored Images In An Air Application?

2010-03-21 Thread Tracy Spratt
You should be able to use mx:Image and set the source to the url of the image on the server. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gary Moorcroft Sent: Monday, March 22, 2010

RE: [flexcoders] Re: Problem reading an XML file

2010-03-21 Thread Tracy Spratt
. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of valdhor Sent: Friday, March 19, 2010 8:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problem reading an XML file I am not

RE: [flexcoders] Using Server Stored Images In An Air Application?

2010-03-21 Thread Tracy Spratt
Sure, load the images dynamically. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of James Sent: Sunday, March 21, 2010 1:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using

RE: [flexcoders] Rendering HTML table in a rich text editor

2010-03-16 Thread Tracy Spratt
If you are talking about the Flex RichTextEditor, it will only support the limited tags that the htmlText filed will support, and that does not include tables. Doing full html in browser hosted Flex is a headache. Tracy Spratt, Lariat Services, development services available _ From

RE: [flexcoders] xml parsing

2010-03-16 Thread Tracy Spratt
The double colon is the namespace accessor. But I do not really understand that example. Unless you can use a wildcard as a namespace? I have managed to mostly avoid dealing with namespaces so far. Tracy Spratt, Lariat Services, development services available _ From

RE: [flexcoders] Re: I need some basic ActionScript help that I'm stumped on

2010-03-16 Thread Tracy Spratt
en processing that xml into an ArrayCollection of strongly typed value objects. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of valdhor Sent: Monday, March 15, 2010 12:53 PM To: flex

RE: [flexcoders] sending email from actionscript / flex REFdn6005077818

2010-03-14 Thread Tracy Spratt
Yes (or some other server technology), in which case the server is actually sending the email. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of dennis Sent: Wednesday, March 10, 2010 1

RE: [flexcoders] Convert ArrayCollection to Array

2010-03-14 Thread Tracy Spratt
You are getting the array, so the issue is further along the line. For any data more complex than simple values, I pass data using xml, so I do not even know how an array gets serialized/deserialized by HTTPService. If you look at that parameter in PHP, what is actually in it? Tracy Spratt

RE: [flexcoders] Re: HTTPService not returning ArrayCollection...

2010-03-14 Thread Tracy Spratt
nto an Array Collection of strongly typed VOs. And to clarify, with the default resultFormat conversion, you are getting Array, not ArrayCollection. Note Steve's code. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:

RE: [flexcoders] How do I set the borderStyle in Flex

2010-03-14 Thread Tracy Spratt
The first is the correct syntax. If it is not working, perhaps there is another style that needs to be set also, like width or color. Have you tried this using the flex StyleExplorer? Tracy Spratt, Lariat Services, development services available _ From: flexcoders

RE: [flexcoders] Automatically update ValueObjects...

2010-03-14 Thread Tracy Spratt
to specify "MyworkingFolder"? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Ivan Wang Sent: Saturday, March 13, 2010 7:46 PM To: flexcoders@yahoogroups.com Subject: Re: [flexc

RE: [flexcoders] SWC not getting updated everytime

2010-03-08 Thread Tracy Spratt
This is not normal behavior. Usually it happens when there is an error in the code. In that case a swf will not be compiled. Have you looked at the Problems pane? Also, try menu, Project, Clean Tracy Spratt, Lariat Services, development services available _ From: flexcoders

RE: [flexcoders] Load files on the fly?

2010-03-08 Thread Tracy Spratt
Search on "Web tier Compiler". Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of newflexcoder Sent: Monday, March 08, 2010 5:24 PM To: flexcoders@yahoogroups.com Subject: [

RE: [flexcoders] How to access web page on own web site.

2010-03-05 Thread Tracy Spratt
You want to use Flex to navigate to html pages? If so, that is a serious waste of Flex RIA technology. But you can call navigateToUrl(). Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

RE: [flexcoders] Where can I find a lot of Flex 3 & AS3 examples?? Code that from other people?

2010-03-02 Thread Tracy Spratt
Got me again on that one! And I was truly thinking at the time, “and don’t forget google…” Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Igor Costa Sent: Sunday, February 28, 2010 10

RE: [flexcoders] Accessing checkbox inside a Datagrid ItemRenderer

2010-02-26 Thread Tracy Spratt
nce to the dataProvider item, and set the property value as desired. You cannot directly access a control in a renderer because they are re-cycled. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf

RE: [flexcoders] addPopUp above application but below component

2010-02-25 Thread Tracy Spratt
Don't use PopUp, but rather a normal component, so you can control the order in the display list, which determines the "z-order". Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On B

RE: [flexcoders] advanced datagrid in popped up titlewindow issue

2010-02-25 Thread Tracy Spratt
Probably a timing issue. Binding is difficult to debug. Make sure your dataSource var is bindable. Initialize might be too early. Test the content in a handler function and also check it in a creationComplete handler. I rarely use initialize for any data oriented work. Tracy Spratt, Lariat

RE: [flexcoders] Do I need a crossdomain policy file?

2010-02-25 Thread Tracy Spratt
I think you will. Flash Player is very strict about what it considers the same domain. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of dogra_daman Sent: Thursday, February 25, 2010 8

RE: [flexcoders] Strategies for switching between testing and deployment addresses

2010-02-22 Thread Tracy Spratt
Or pass the IP address in via flashvars from the wrapper. You just need one wrapper for production and one for development. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Peeyush Tuli

RE: [flexcoders] Re: Still getting Security Sandbox violations...

2010-02-20 Thread Tracy Spratt
Also be aware that there are a couple additional lines required in the crossdomain file in some circumstances, especially for webservce: I'm with you on despising the constraints of security. But resistance is futile. Tracy Spratt, Lariat Services, development services avai

RE: [SPAM] [flexcoders] Re: Get Rid of [SPAM] tag

2010-02-16 Thread Tracy Spratt
Dang. I have checked both goDaddy and my local Norton, but both say spam protection is "off". I will keep looking. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of va

RE: [SPAM] Re: [SPAM] RE: [SPAM] [flexcoders] Component Data Calls

2010-02-15 Thread Tracy Spratt
Is it just me? I hate it myself, but don't know where it is coming from. I have googled the issue and found no clear solutions. I am using outlook through an email account a goDaddy. I will keep trying to stop that. Tracy Spratt, Lariat Services, development services avai

RE: [SPAM] Re: [SPAM] [flexcoders] How to stop execution?

2010-02-15 Thread Tracy Spratt
I hear that. The non-blocking, single threaded, asynchronous data calls nature of Flex takes a bit of getting used to. OT, Laurence, I am nearly a neighbor. I live in Carrollton, and am currently commuting to Alpharetta 3-4 days a week. Tracy Spratt, Lariat Services, development

RE: [SPAM] [flexcoders] How to stop execution?

2010-02-14 Thread Tracy Spratt
action you need based on the event.detail. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Laurence Sent: Sunday, February 14, 2010 10:32 PM To: flexcoders@yahoogroups.com Subject: [SPAM] [

RE: [SPAM] [flexcoders] Killing a Singleton

2010-02-14 Thread Tracy Spratt
You could add a method newInstance() that sets the internal instance variable to a new instance; Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: Sunday, February 14

RE: [SPAM] RE: [SPAM] [flexcoders] Component Data Calls

2010-02-14 Thread Tracy Spratt
I believe you will want to use Modules for that. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Dan Pride Sent: Sunday, February 14, 2010 11:28 AM To: flexcoders@yahoogroups.com

RE: [SPAM] [flexcoders] Component Data Calls

2010-02-14 Thread Tracy Spratt
Yes, certainly. I normally do all of my data access in a special component and then update a local model with the data. I use binding and ChangeWatchers to respond to updates to the model. I typically use the singleton pattern for my model. Tracy Spratt, Lariat Services, development

RE: [SPAM] Re: [flexcoders] Adding dynamic LinkButtons and views (modules)

2010-02-14 Thread Tracy Spratt
I would suggest using repeater for this, instead of manually using addChild. You will find that much easier when the time comes to change the buttons, especially if there are any other children in navACB. Use your logic to manipulate the dataProvider for the repeater. Tracy Spratt, Lariat

RE: [SPAM] Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-13 Thread Tracy Spratt
If you can get what you need easily from a "rendered" renderer, then it sounds like the hidden DG with all of the rows rendered might be the way to go. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoo

RE: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-12 Thread Tracy Spratt
screen and see beyond the edges. You must do wok like this using the dataProvider. What are you trying to do? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mike Sent: Friday, F

RE: [SPAM] [SPAM] [flexcoders] Re: Air File Is Damaged Error

2010-02-12 Thread Tracy Spratt
Im my case it was an image file in the assets folder. Look in the app install log. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of James Sent: Friday, February 12, 2010 2:36 PM To

RE: [SPAM] [flexcoders] Re: Air File Is Damaged Error

2010-02-12 Thread Tracy Spratt
Yes, look at the appinstall log. I don't recall exactly how to do that so just google it. In my case it was a bad character in the filename, an ampersand if I recall correctly. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroup

RE: [SPAM] [flexcoders] Re: navigateToURL error

2010-02-12 Thread Tracy Spratt
for that in the repeater's parent. Use event.target.itemData(or whatever you named the public var) to get the text of the link and then build the full argument to navigateToeURL. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups

RE: [SPAM] Re: [flexcoders] Re: Flex Project Hosting

2010-02-10 Thread Tracy Spratt
I have used GoDaddy to host a large data-deriven app, using their hosted sql server and it works very well. I do not have anything in production hosted, though. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod

RE: [SPAM] [flexcoders] Re: Problem with dealing with loads of XML data

2010-02-10 Thread Tracy Spratt
Me too. Plus, be aware that with a large number of renderers visible on screen at once (spreadsheet for example) there is a significant performance issue with XML items as compared to a VO item with strongly typed properties. Tracy Spratt, Lariat Services, development services available

RE: [SPAM] [flexcoders] Re: Custom ItemRenderer still not working...

2010-02-09 Thread Tracy Spratt
at correct? Did you try directly assigning the dataProvider instead of binding as I suggested earlier? Yes, use commitProperties. Find an example, mine on www.cflex.net <http://www.cflex.net/> is one, there are many others. Tracy Spratt, Lariat Services, development se

RE: [SPAM] [flexcoders] Re: Custom ItemRenderer still not working...

2010-02-07 Thread Tracy Spratt
If I am understanding your problem, Array should be fine. The problem with array is when you update elements. The change events should get fired when the entire array is replaced. Besides, it sounds like the list part is working correctly. Tracy Spratt, Lariat Services, development

RE: [SPAM] [flexcoders] Re: Custom ItemRenderer still not working...

2010-02-07 Thread Tracy Spratt
tting selectedIndex every time. Finally, I strongly suggest you move that work into commitProperties() The set data() function gets called much more often than you may realize. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:fl

RE: [SPAM] [flexcoders] Size of an application

2010-02-06 Thread Tracy Spratt
I doubt that that question can be answered. Someone would have had to survey the size of a large number of applications, and I have never participated in such a survey. Most of my apps are larger than that, but I have never had swf size as a significant requirement. Tracy Spratt, Lariat

RE: [SPAM] [flexcoders] rendering HTML markup in AdvancedDataGrid

2010-02-06 Thread Tracy Spratt
Item Renderers are only created for the visible rows plus a few buffers. Performance is primarily determined by the rendering and item data access. Be aware that htmlText only renders a small subset of html tags. Tracy Spratt, Lariat Services, development services available

RE: [SPAM] [flexcoders] checkbox code like yahoo check box

2010-02-06 Thread Tracy Spratt
examples if you search for them. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of charles_aug15 Sent: Friday, February 05, 2010 11:27 PM To: flexcoders@yahoogroups.com Subject: [SPAM

RE: [SPAM] [flexcoders] Re: Issue in TabNavigator component

2010-02-06 Thread Tracy Spratt
Use TabBar and ViewStack instead, and stop that crazy manipulation of the children. Just control access by manipulating the dataProvider of the TabBar only. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod

RE: [SPAM] Re: [flexcoders] Encoding XML Character Entity References *properly*

2010-02-06 Thread Tracy Spratt
free test and have used a combination of manual replacement and controlling the allowed input characters. You will need to choose the solution that best fits your needs. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com

RE: [SPAM] [flexcoders] Re: Custom ItemRenderer still not working...

2010-02-06 Thread Tracy Spratt
to be generic: http://www.cflex.net/showFileDetails.cfm?ObjectID=767 Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Laurence Sent: Saturday, February 06, 2010 4:29 AM To: flexc

RE: [SPAM] Re: [flexcoders] Loading XML

2010-02-02 Thread Tracy Spratt
Yes, the physical location is not what matters, it is the domains. Post the error message, it will tell us a lot. Often times people will launch their app using a file url, an then try to access a resource via a net url, this will produce a security error. Tracy Spratt, Lariat Services

RE: [SPAM] [flexcoders] filter out empty rows

2010-01-31 Thread Tracy Spratt
There are three ways I know of to handle this. First, change the xml generation to not put in the empty nodes. Second, preprocess the xml and remove the empty nodes, and third, create a custom dataDescriptor. Tracy Spratt, Lariat Services, development services available _ From

RE: [SPAM] [flexcoders] popup dialog with grow ability?

2010-01-31 Thread Tracy Spratt
I don't have one handy but google will. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of MicC Sent: Saturday, January 30, 2010 7:10 PM To: flexcoders@yahoogroups.com Subject:

RE: [SPAM] [flexcoders] popup dialog with grow ability?

2010-01-31 Thread Tracy Spratt
I don't have one handy but google will. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of MicC Sent: Saturday, January 30, 2010 7:10 PM To: flexcoders@yahoogroups.com Subject:

RE: [SPAM] Re: [SPAM] [flexcoders] using a one slider to filter two different price ranges

2010-01-30 Thread Tracy Spratt
Like you would set any other property on anything. What are you asking? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of ZIONIST Sent: Friday, January 29, 2010 1:31 AM To: flexcoders

RE: [SPAM] [flexcoders] using a one slider to filter two different price ranges

2010-01-28 Thread Tracy Spratt
Have the checkbox(I'd use RadioButton) change event set a instance variable identifying the filter. Also have it set the min, max and step properties of the slider. Have the slider change event call a handler function. In the handler, examine the variable and respond accordingly

RE: [SPAM] [flexcoders] Load/parse XML file stored in flex project

2010-01-28 Thread Tracy Spratt
If you want the xml compiled in to the swf, use If you want the xml read at runtime, use HTTPService. The url can be relative url=" assets/links.xml " HTTPService is asynchronous. You will want to use a result handler function. Tracy Spratt, Lariat Services, developmen

RE: [SPAM] [flexcoders] MenuEvent causes 1046 error

2010-01-25 Thread Tracy Spratt
I bet it is because you used "MenuEvent" for your click handler function name and there is a name collision with the built-in MenuEvent. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

RE: [SPAM] Re: [SPAM] [flexcoders] Reading URL arguments from within initApp()

2010-01-24 Thread Tracy Spratt
Try the link I posted previously, or google this. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Penny Laus Sent: Sunday, January 24, 2010 4:43 PM To: flexcoders@yahoogroups.com

RE: [SPAM] Re: [SPAM] [flexcoders] Reading URL arguments from within initApp()

2010-01-24 Thread Tracy Spratt
What is the problem with the wrapper? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Penny Laus Sent: Sunday, January 24, 2010 5:33 PM To: flexcoders@yahoogroups.com Subject: [SPAM] Re

RE: [SPAM] Re: [SPAM] [flexcoders] Reading URL arguments from within initApp()

2010-01-24 Thread Tracy Spratt
Yes. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of David Adams Sent: Sunday, January 24, 2010 4:39 PM To: flexcoders@yahoogroups.com Subject: [SPAM] Re: [SPAM] [flexcoders] Reading

RE: [SPAM] [flexcoders] Reading URL arguments from within initApp()

2010-01-24 Thread Tracy Spratt
get the URL information instead of using the javascript, google for examples of that. I found this component that seems to encapsulate that functionality: http://www.flexpasta.com/index.php/2008/03/15/getting-url-parameters-host-na me-port-in-flex-actionscript/ Tracy Spratt, Lariat

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

2010-01-24 Thread Tracy Spratt
Sure. States can be very useful, but I reserve them for more minor changes the content of a component. They are very powerful, but messy to code and understand, compared to a viewstack. And I do see occasional reports of strange behaviors interactions with them. Tracy Spratt, Lariat

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

2010-01-23 Thread Tracy Spratt
will still be in the ViewStack, but its tab will not be visible, thus the view will be unavailable. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Penny Laus Sent: Saturday, January 23

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

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

RE: [SPAM] [flexcoders] How to parse xml with namespaces

2010-01-21 Thread Tracy Spratt
Google this there are several detailed discussions. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of luketvanderfluit Sent: Thursday, January 21, 2010 10:04 PM To: flexcoders@yahoogroups.c

RE: [SPAM] Re: [flexcoders] DataGrid is blank

2010-01-20 Thread Tracy Spratt
I think I would create a composite component with a header and either a List or a VBox and a repeater. Instead of using DataGrid Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex

RE: [SPAM] [flexcoders] Re: Flex, SOAP and Process Flow

2010-01-20 Thread Tracy Spratt
One simple way to do this is to use the result and fault handlers in the service, put an identifying key in the asyncToken on send, extract that key in the result, and use it in a switch to determine processing. Tracy Spratt, Lariat Services, development services available _ From

RE: [SPAM] Re: [SPAM] [flexcoders] e4x to Datagrid not removing the tags when rendered

2010-01-20 Thread Tracy Spratt
].text(); voRepeat.value1 = xmlItem.value[0].text(); . myArrayCollection.addItem(voRepeat) } MydataGrid.dataProvider = myArrayCollection; Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

RE: [SPAM] [flexcoders] Animating items in a tilelist when filtering arraycollection

2010-01-18 Thread Tracy Spratt
Try filtering a separate ArrayCollection then re-assignng the dataProvider. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of ZIONIST Sent: Monday, January 18, 2010 4:11 AM To: flexcoders

RE: [SPAM] [flexcoders] e4x to Datagrid not removing the tags when rendered

2010-01-17 Thread Tracy Spratt
then you need to use the @ symbol. Example: dataField="@myAttribute". Hope this helps. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Quintjer Sent: Sunday, January 17,

RE: [SPAM] [flexcoders] How long does it take to learn Flex and get a job?

2010-01-17 Thread Tracy Spratt
flexcoders can make me look a lot smarter than I really am! Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of fred44455 Sent: Saturday, January 16, 2010 9:43 PM To: flexcoders@yahoogroups

RE: [SPAM] [flexcoders] What server do I put my crossdomain.xml file on?

2010-01-14 Thread Tracy Spratt
he url, though. When in doubt, put a completely open crossdomain everywhere until it works, them remove them until it breaks. Then close up the domain and port specs as needed. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:f

RE: [SPAM] Re: [flexcoders] registration points

2010-01-12 Thread Tracy Spratt
You can also do this using Transform, but I usually just use the offset approach myself. Google "Flex rotate around center" for some examples of both. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mail

RE: [SPAM] [flexcoders] Multiple linkbuttons added through datagrid itemrenderer actionscript

2010-01-12 Thread Tracy Spratt
Basing the renderer on UIComponent is most performant, but you have to do a lot of work yourself. You can do: datagrdcol.itemrenderer = new ClassFactory(MyCustomRenderer) Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mail

RE: [SPAM] [flexcoders] Multiple linkbuttons added through datagrid itemrenderer actionscript

2010-01-12 Thread Tracy Spratt
Basing the renderer on UIComponent is most performant, but you have to do a lot of work yourself. You can do: datagrdcol.itemrenderer = new ClassFactory(MyCustomRenderer) Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mail

RE: [SPAM] Re: [flexcoders] HTTPService Responder ResultEvent -- how to know when the JSON data sent via HTTP are complete?

2010-01-12 Thread Tracy Spratt
You are using Firefox, I bet. I have sent this behavior and I think it is just a bug in FF. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tim Romano Sent: Tuesday, January 12, 2010 4

RE: [SPAM] [flexcoders] Flex:how to count online user and record user visits?

2010-01-11 Thread Tracy Spratt
Flex runs on the client, in a browser. It cannot count anything on the server. It can display a count by getting the data from a server. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [SPAM] [flexcoders] How to get all tree node parents upon select

2010-01-11 Thread Tracy Spratt
d to an XML node return an XML node, Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of eric v Sent: Sunday, January 10, 2010 5:14 AM To: flexcoders@yahoogroups.com Subject: [SPAM] [flexcoders] Ho

RE: [SPAM] [flexcoders] Override private ComboBox function

2010-01-11 Thread Tracy Spratt
Copy the ComboBox code into a new component and modify it as you need. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Warren Sent: Monday, January 11, 2010 9:17 AM To: flexcoders

RE: [SPAM] RE: [SPAM] [flexcoders] How to get all tree node parents upon select - sorry about the duplicates

2010-01-10 Thread Tracy Spratt
Sorry about the duplicates, Outlook had a seizure. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Sunday, January 10, 2010 1:58 PM To: flexcoders@yahoogroups.com

RE: [SPAM] RE: [SPAM] [flexcoders] How to get all tree node parents upon select - sorry about the duplicates

2010-01-10 Thread Tracy Spratt
Sorry about the duplicates, Outlook had a seizure. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Sunday, January 10, 2010 1:58 PM To: flexcoders@yahoogroups.com

RE: [SPAM] [flexcoders] Single Record Tables

2010-01-10 Thread Tracy Spratt
ngle object. You can test result using, if I recall correctly, "if (result is Array)". But best practice is to use e4x and then build your ArrayCollection of own strongly typed VOs. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@y

RE: [SPAM] [flexcoders] Banner in Flex

2010-01-10 Thread Tracy Spratt
What exactly do you mean by "banner"? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Christophe Sent: Sunday, January 10, 2010 7:56 AM To: flexcoders@yahoogroups.com Subj

RE: [SPAM] [flexcoders] Single Record Tables

2010-01-10 Thread Tracy Spratt
ngle object. You can test result using, if I recall correctly, "if (result is Array)". But best practice is to use e4x and then build your ArrayCollection of own strongly typed VOs. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@y

RE: [SPAM] [flexcoders] How to get all tree node parents upon select

2010-01-10 Thread Tracy Spratt
If your dataProvider is XML, you can use parent() to recursively traverse the ancestors. If it is XMLListCollection, I am not sure, but would expect there to be some kind of parent property. Tracy Spratt, Lariat Services, development services available _ From: flexcoders

RE: [SPAM] [flexcoders] Banner in Flex

2010-01-10 Thread Tracy Spratt
What exactly do you mean by "banner"? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Christophe Sent: Sunday, January 10, 2010 7:56 AM To: flexcoders@yahoogroups.com Subj

RE: [SPAM] [flexcoders] How to get all tree node parents upon select

2010-01-10 Thread Tracy Spratt
If your dataProvider is XML, you can use parent() to recursively traverse the ancestors. If it is XMLListCollection, I am not sure, but would expect there to be some kind of parent property. Tracy Spratt, Lariat Services, development services available _ From: flexcoders

RE: [SPAM] [flexcoders] How to get all tree node parents upon select

2010-01-10 Thread Tracy Spratt
If your dataProvider is XML, you can use parent() to recursively traverse the ancestors. If it is XMLListCollection, I am not sure, but would expect there to be some kind of parent property. Tracy Spratt, Lariat Services, development services available _ From: flexcoders

RE: [SPAM] [flexcoders] How to get all tree node parents upon select

2010-01-10 Thread Tracy Spratt
If your dataProvider is XML, you can use parent() to recursively traverse the ancestors. If it is XMLListCollection, I am not sure, but would expect there to be some kind of parent property. Tracy Spratt, Lariat Services, development services available _ From: flexcoders

RE: [SPAM] [flexcoders] How to get all tree node parents upon select

2010-01-10 Thread Tracy Spratt
If your dataProvider is XML, you can use parent() to recursively traverse the ancestors. If it is XMLListCollection, I am not sure, but would expect there to be some kind of parent property. Tracy Spratt, Lariat Services, development services available _ From: flexcoders

RE: [SPAM] Re: [SPAM] [flexcoders] Properly display html entities in datagrid

2010-01-10 Thread Tracy Spratt
n you will have to manipulate it manually. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of s_grollins Sent: Saturday, January 09, 2010 6:09 PM To: flexcoders@yahoogroups.com Subject:

RE: [SPAM] [flexcoders] Adaptation of an application to the screen size

2010-01-09 Thread Tracy Spratt
"By setting all the width and height values in percentage ?" Yes. You will find you want particular components to have a minimum size, though. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogrou

RE: [SPAM] [flexcoders] HTTPService & Internet Explorer

2010-01-09 Thread Tracy Spratt
This is almost certainly a caching issue. If you are using GET as the HTTPService method try POST. Then if that does not work, you can append some random string to the url to prevent client side caching. There will be many code examples if you search for them. Tracy Spratt, Lariat Services

  1   2   3   4   5   6   7   8   9   10   >