[flexcoders] Apollo SDK

2007-03-19 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 - samp

[flexcoders] Add image into Accordion Header?

2007-03-19 Thread Dan
Hi, I want to build a accordion header with an image and label on the right handside, while with the header on the left. I try the headerrenderer of Accordion, and find that it must be an inheritance of button. For button, i can add the icon, however, then it has no way to have label as header

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

2007-03-19 Thread Claus Wahlers
> Dots are not allowed in attribute names. I'd use underscore or dash. Cheers, Claus. -- claus wahlers côdeazur brasil http://codeazur.com.br/ http://wahlers.com.br/claus/blog/

[flexcoders] Re: Apollo Project Wizard Error

2007-03-19 Thread johnesocko
--- In flexcoders@yahoogroups.com, "sam5654295" <[EMAIL PROTECTED]> wrote: > > Be sure that you update FB before in the FB extensions. > how? I have 2.01 but I get the same error?

[flexcoders] www.codeapollo.com

2007-03-19 Thread d3lix3
I've created a user-based community for Adobe Apollo, I felt this is a fit place to post this kind of thing. I am looking for a few dedicated people that can help push this and actually contribute, if you feel that you can--you'll be rewarded with moderator positions on the forum Let me know at t

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

2007-03-19 Thread not_a_coop
I am working on an application that reads and edits XML configuration files for VoIP phones. Some of these XML files contain attributes with periods in their names. An example: Is there any way to "dot down" to these attributes using the E4X capabilities of ActionScript 3? I've tried every

RE: [flexcoders] ignore-- basic web service communication help -- ignore

2007-03-19 Thread Chad Gray
I figured this one out... please ignore... It took so long for the post to reach public I eventually beat my head against the wall enough that I figured it out. When I posted from the web site it said it was moderated. Is this what is slowing things down? -Original Message- From: fl

[flexcoders] codeapollo.com

2007-03-19 Thread d3lix3
CodeApollo.com has launched with the intent in creating a enormous community one day for Adobe's Apollo RIA extension. If you're interested in learning or know anything currently, this is a place for you. Check it out: http://www.codeapollo.com

[flexcoders] Icons on TabBar or ToggleButton Bar

2007-03-19 Thread forrestmaready
Could someone let me know how they've succesfully populated the tabs on a TabBar or the buttons on a ToggleButtonBar with icons? I've tried putting the styleName tag on everything to no avail. Thanks! http://www.adobe.com/2006/mxml " layout="horizontal" width=

[flexcoders] YAHOO SLOOOOWW!

2007-03-19 Thread Chad Gray
Holy cow.. I sent to email this morning and they are not here... I send them at like 10am! I will check the yahoo web site maybe it is faster.

[flexcoders] Flex Dev guru needed for start-up social networking platform

2007-03-19 Thread re_castle
Help invent the next generation of social networking. Wallop is a privately held startup in San Francisco building the next generation of social networking products and technology. Wallop leverages ground breaking technology, a unique business model and is built entirely in Flash/Flex by people

Re: [flexcoders] JAWS read order

2007-03-19 Thread Claus Wahlers
> 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 is not. JAWS is reading what is displayed, right to left. Try giving your

RE: [flexcoders] E4X descendent operator return type?

2007-03-19 Thread Greg McCreath
The result is an XMLList. check its length() to see if you had any matching XML elements or not. var myXMLList: XMLLst = e.result..user; if (myXMLList.length() != 0) // we've got one ... G. _ From: tddclare [mailto:[EMAIL PROTECTED] Sent: Tuesday, 20 March 2007 7:48 AM To: flexcode

[flexcoders] JAWS read order

2007-03-19 Thread Jason Goodwin
AWK- 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 is not. JAWS is reading what is displayed, right to left.

[flexcoders] Re: DataGridColumn not handling property.property references in Webservice Resul

2007-03-19 Thread paulwelling
Thanks Alex for the fast response..! Much appreciated. I'll checkout the labelFunction. I had been reading Adobe Flex 2, Training from the Source, and on page 269 they have a "tip" that says the DGColumn can resolve property.property references so I was trying to make that work... Paul --- In

[flexcoders] flex builder and dreamweaver

2007-03-19 Thread Chad Gray
I am a big Dreamweaver fan, but I keep seeing Adobe going away from Dreamweaver and using Eclipse. Will Flex Builder ever be integrated into Dreamweaver? How about Spry? Why re-invent the wheel with Eclipse when Dreamweaver exists? Is Dreamweaver dying a slow death that I should not purchase

[flexcoders] Storing Dates & Times in VO's

2007-03-19 Thread Kevin
Should Dates & Times be stored as Strings in Flex VO's? If not, what is the proper way to assign a value from the server (which generally comes in as a string) to a Date type in a Flex VO? I have been struggling with this. I am using AMFPHP and mapping my PHP objects to Flex for calls return

RE: [flexcoders] how can I know what browser my app is in?

2007-03-19 Thread Alex Harui
This is being used in some cases: /* Autodetect browser type; sets browser var to 'IE', 'Safari', 'Firefox' or empty string. */ function getBrowser() { var name = navigator.appName; var agent = navigator.userAgent.toLowerCase(); if (name.indexOf('Microsoft') != -1) {

Re: [flexcoders] Mistake on Adobe's Page for Flex builder?

2007-03-19 Thread John Barrett
Hi Matt, Thanks for clearing this up for me, I am jazzed`-` John - Original Message From: Matt Chotin <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, March 19, 2007 3:36:49 AM Subject: Re: [flexcoders] Mistake on Adobe's Page for Flex builder?

RE: [flexcoders] List component and custom ItemRenderer

2007-03-19 Thread Tracy Spratt
I was going to suggest: text="{PlayListItem(data).label} Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Monday, March 19, 2007 6:15 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] List component and cus

Re: [flexcoders] Cast Object (Assoc Array) to Array Collection...

2007-03-19 Thread Kevin
did the for loop. worked fine.Thanks, Kevin On Mar 19, 2007, at 7:30 PM, Tracy Spratt wrote: An associative array IS an Object. If order does not matter, use a for..in loop to build the ArrayCollection. If it does, well, use XML. Tracy From: flexcoders@yahoogroups.com [mai

Re: [flexcoders] List component and custom ItemRenderer

2007-03-19 Thread Weyert de Boer
Working now! Inspectable != Bindable ;)

[flexcoders] Is it possible to drag and scroll contents of a container while setting scrollPolicy to off?

2007-03-19 Thread Phil Chung
Is there a way to "drag and scroll" content in a container without having the scrollbars visible? For example, lets say i want to have a large map that users can drag and scroll around but not have any visible scrollbars. I'd love to be able to just use verticalScrollPosition and horizontalScrollP

[flexcoders] List component and custom ItemRenderer

2007-03-19 Thread Weyert de Boer
Hello, I would like to fix a warning message when I am using my custom ItemRenderer together with a instance of the List component. I am using a array of PlaylistItem instances as the dataprovider. Now I made the public variables inspectable (label, and type). And of course initialize it in the

[flexcoders] Flex and full-text search

2007-03-19 Thread Enos, Katherine
Anyone know if there is a relatively simple way to implement a full-text search mechanism in a Flex application running on an intranet? It's for an in-house website that serves technical documention. The documentation must be searchable. Thanks. Katherine

[flexcoders] basic web service communication help

2007-03-19 Thread Chad Gray
Im trying to send data to a web service that has a function in it called "echoString" and return a result from the web service. Here is what I have so far... http://demo.dev/test.cfc?wsdl";> hello world

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

2007-03-19 Thread John Mark Hawley
No one is forced to help anyone on here -- people do it when they can, and don't when they can't. Copping an attitude is a way to ensure less people are willing to help. If you want to demand help, pay someone. Call Adobe. Do anything but fuss and whine here. > > From: "Greg Morphis" <[EMAIL

[flexcoders] test from web site.... ignore

2007-03-19 Thread rchadgray
test 123

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

2007-03-19 Thread jeffjvroom
I'm not sure why this is happening unfortunately. In both of those stack traces, the line of code looks like: String uri = request.getRequestURL().toString(); So either request is null or the request.getRequestURL() method is returning null? I'm not sure why either of those would h

[flexcoders] Looking for Beta Testers

2007-03-19 Thread iko_knyphausen
Hello everyone, we just started the beta for the pro version of our task management tool (written in Flex with ASP backend) and are looking beta testers. If you are interested, drop me a quick line. You can participate online, or install on you own box. P.S. Main features: Organize and share t

RE: [flexcoders] how can I know what browser my app is in?

2007-03-19 Thread Tracy Spratt
Are you using ExternalInterface to talk to javascript in the html wrapper? I haven't worked with browsers enough recently to remember what javascript knows about the host browser. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf O

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

2007-03-19 Thread Tracy Spratt
Perhaps a ternary conditional? "{(myDateProperty) ? myDateProperty : someDefaultDate}" Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Anderson Sent: Monday, March 19, 2007 3:06 PM To: flexcoders@yahoogroups.com Subject: [fl

[flexcoders] how can I know what browser my app is in?

2007-03-19 Thread Mike Collins
I have looked up userAgent, user-agent, browser, browser type, etc. and can not find anything that will allow me to tell what browser is hosting my app. Can anyone tell me if and where something like this may be? Thanks, Mike

RE: [flexcoders] Cast Object (Assoc Array) to Array Collection...

2007-03-19 Thread Tracy Spratt
An associative array IS an Object. If order does not matter, use a for..in loop to build the ArrayCollection. If it does, well, use XML. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Monday, March 19, 20

RE: [flexcoders] Re: error with HTTPService

2007-03-19 Thread Tracy Spratt
Yes, but without the @, since your dataProvider item is an Object, not XML. I’d advise against binding, since it is hard to debug. Set the url in a changeHandler function. You are going to need to call send() in there anyway. Tracy From: flexcoders@y

RE: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread Tracy Spratt
For an inline data provider it will be something like [EMAIL PROTECTED] = this.selected. Not sure about the "this", you may need to use the id of the checkbox, I don't do many in-line renderers. Here is an example of a checkbox renderer implemented in mxml: http://www.cflex.net/showfiledeta

[flexcoders] Re: Configuring FDS + Tomcat + activeMQ + JOTM

2007-03-19 Thread klumikaze
Read through the following thread: http://tech.groups.yahoo.com/group/flexcoders/ message/40033 Hope that helps! Brian --- In flexcoders@yahoogroups.com, "huangnankun" <[EMAIL PROTECTED]> wrote: > > I downloaded the excellent Christophe Coenraets' flex 30 min test > drive here and started mess

[flexcoders] Configuring FDS + Tomcat + activeMQ + JOTM

2007-03-19 Thread huangnankun
I downloaded the excellent Christophe Coenraets' flex 30 min test drive here and started messing with some of the cool examples. However when i tried to set up my own tomcat, nothing works. Even when i copy over chris's ROOT folder in his distro into my own tomcat's webapp folder and overwrite it

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

2007-03-19 Thread Greg Morphis
This is solved. Thanks! On 3/19/07, Greg Morphis <[EMAIL PROTECTED]> wrote: I apologize, I'm not seeing the replies. To answer your question, no. I am just using itemRenderer eg

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

2007-03-19 Thread Greg Morphis
I apologize, I'm not seeing the replies. To answer your question, no. I am just using itemRenderer eg I'll look at ListItemRenderer, I wasnt even aware of it. On 3/19/07, Ale

[flexcoders] Re: logout user after cookie expires (state change)

2007-03-19 Thread Shannon
I suggest letting the server tell you if the session has expired. You are sending the cookie anyway either in the request header or in the url. If the server always returns a status node with code and severity, you can check the value of severity (0=success, 1=warning, 2=error, 3=fatal) and ac

[flexcoders] Re: E4X descendent operator return type?

2007-03-19 Thread Geoffrey Williams
It returns an empty XMLList. //var result : XML = XML (e.result); //var result : XML = ; var result : XML = ; if (result.user.length ()) trace("Yippee!"); if (result.fault.length ()) trace("Boo!"); t

RE: [flexcoders] DataGridColumn not handling property.property references in Webservice Result

2007-03-19 Thread Alex Harui
That dg columns don't support dot-path expressions. Most places in Flex don't as it requires an eval and slows things down. You can use labelFunction to dig deeper. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of paulwelli

RE: [flexcoders] Cast Object (Assoc Array) to Array Collection...

2007-03-19 Thread Alex Harui
Doubt it. How would it know what order? How do you know the order? You could make a custom assocarraycollection. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: Monday, March 19, 2007 12:44 PM To: flexcoders@yahoogroups.com

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

2007-03-19 Thread tddclare
I think by using an itemrenderer you are taking away the default ability for the list's "default" renderer to show the icons. How about taking your icon function code and move it into your item renderer. You can do conditionals inside the item renderer code based on the "data" parameter, which is

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

2007-03-19 Thread Alex Harui
Greg, I replied the same day, and Ben replied today. Are you extending ListItemRenderer? -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Monday, March 19, 2007 1:42 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] E4X descendent operator return type?

2007-03-19 Thread tddclare
I'm trying a simple test, and either it's monday or my brain is broken... maybe both... I'm writing a login component, and fire off a HTTP service that returns XML as E4X. The response XML is a tag with either a tag or a tag inside of it. All I want to do is test if there is a user or fault i

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

2007-03-19 Thread Greg Morphis
Screw you dude.. I've waited fairly patiently for a reply... On 3/19/07, Merrill, Jason <[EMAIL PROTECTED]> wrote: >>Anyone know where I can go and actually maybe get a response from >>someone? good grief.. http://en.wikipedia.org/wiki/The_Whiners -- *From:* fle

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

2007-03-19 Thread Merrill, Jason
>>Anyone know where I can go and actually maybe get a response from >>someone? good grief.. http://en.wikipedia.org/wiki/The_Whiners From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis Sent: Monday, March 19,

[flexcoders] Re: Virtually add item to combobox

2007-03-19 Thread nxzone
Thank you for your help! Finaly, the http://www.cflex.net/showFileDetails.cfm?ObjectID=415&Object=File&ChannelID=1 option. The logic of this thing is to copy the collection in a array and push the reset value in. If the collection change, we need to repopulate de fake array. //MAIN

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

2007-03-19 Thread Greg Morphis
Anyone know where I can go and actually maybe get a response from someone? good grief.. On 3/19/07, Greg Morphis <[EMAIL PROTECTED]> wrote: > Can anyone offer any help with this please? > > On 3/16/07, Greg Morphis <[EMAIL PROTECTED]> wrote: > > Normally List has a iconFunction, I'm using an itemR

RE: [flexcoders] Flex & AJAX source-path problems FABridge

2007-03-19 Thread Duke, Alfred W [YOH Contractor for Sprint]
Tanya, I must rebuild your project by.. Closing the project by right-clicking on it Move all files from the project folder to a temp location like Desktop Go to Project uncheck Build Automatically Go to Project-> Build Project and move project files back From: fle

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

2007-03-19 Thread Yiðit Boyar
hi all; i'm using amfphp1.2-cairngorum. (and postgres to store data) when i try to call 2 or more service calls at the same time; none of them can succeed; but if i call them one after another; there is no problem... what can cause this error ? or is this an error or a property of amfphp ? (actu

[flexcoders] Re: error with HTTPService

2007-03-19 Thread TCash21
Did you try [EMAIL PROTECTED] --- In flexcoders@yahoogroups.com, "danj520" <[EMAIL PROTECTED]> wrote: > > Hello, > I'm trying to bind the returned results from a ComboBox to a url in > HTTPService. Flex returns a "Value must be quoted" error with this > statement: > > result="productServ

Re: [flexcoders] Re: Urgent call for Flex Portlet (Flex Taglibs) specialists (Ja

2007-03-19 Thread John Mark Hawley
No one here is paid to help anybody. If you want to demand help, call Adobe > > From: "johan.wasserman" <[EMAIL PROTECTED]> > Date: 2007/03/19 Mon AM 08:21:12 CST > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Urgent call for Flex Portlet (Flex Taglibs) > specialists (James Ward, h

[flexcoders] Flex & AJAX source-path problems FABridge

2007-03-19 Thread TCash21
I can't seem to get the FABridge to work. I've followed the readme to a tee, as well as tried other solutions.. is it because I don't have a main src folder? My main mxml app file is just in the top directory, I then tried adding a src folder to the build-path called 'bridge' which should allow m

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

2007-03-19 Thread Matt Chotin
Hi Johan, If you're willing to way less than 48 hours we'll be putting some new things up that I think will make life easier for you. Stay tuned! Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of johan.wasserman Sent: Monday, March

[flexcoders] Re: logout user after cookie expires (state change)

2007-03-19 Thread TCash21
I've been having trouble getting AJAX and Flex to work... I've followed the readme exactly, I can get the few methods available from FABridge, but I keep getting this error: Access of possibly undefined property flash through a reference with static type Class it's coming from this line public

RE: [flexcoders] Converting AS3 class into XML

2007-03-19 Thread Peter Farland
See: http://livedocs.adobe.com/flex/2/langref/mx/utils/ObjectUtil.html#getCla ssInfo() Look for the "properties" property on the resulting class info Object. Pete From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tungchau81 Sent: Mond

[flexcoders] Re: Converting AS3 class into XML

2007-03-19 Thread pgp.coppens
You could try using describeType (I think that only returns public though). Changed what is below on the fly from something similar I had that only serialized accessors, so there might be syntax and other errors in public static function toXml(obj:Object):XML { var oDescrCache:Descri

[flexcoders] Re: Date format - internal and external

2007-03-19 Thread boy_trike
I do this by formatting it the data with no commas, no currency sign: so before I want to save the data I execute: model.webOrder.customerQty = int (nf.format(txtQty.text)); where nf is defined as: bruce

Re: [flexcoders] Re: using videoDisplay with netstream (FMS)

2007-03-19 Thread John Wilker
Stephen, SOrta, I've seen that. However I'm dealing with getting the feed dynamically. I call an HTTP address which returns an XML file with streamname and url. But it seems to me that if the rtmp doesn't look like "rtmp://localhost/videodisplay/bike.flv" I get no love. For something that stra

[flexcoders] Re: E4X - Copy attributes

2007-03-19 Thread pgp.coppens
Thanks! Appreciate your help, Peter. --- In flexcoders@yahoogroups.com, "Geoffrey Williams" <[EMAIL PROTECTED]> wrote: > > You want to use brackets not braces and use the name () method. > > for each (var a : XML in [EMAIL PROTECTED]) { > [EMAIL PROTECTED] ()] = a; > } > > --- In flexcode

[flexcoders] Cast Object (Assoc Array) to Array Collection...

2007-03-19 Thread Kevin
i just ran into a problem where I am sending back a list of Objects from the server. Originally everything was working fine since the objects were sent as a standard Array with internal objects retrievable as myArray[0], myArray[1],myArray[2],myArray[3] However, for other reasons, I am now

Re: [flexcoders] Re: using videoDisplay with netstream (FMS)

2007-03-19 Thread John Wilker
are livedocs down? I get a page not found with that link On 3/16/07, Stephen Gilson <[EMAIL PROTECTED]> wrote: There is an example in the doc showing this: http://livedocs.adobe.com/flex/201/html/controls_059_20.html Was that helpful? Stephen -- *From:* flexc

Re: [flexcoders] Re: using videoDisplay with netstream (FMS)

2007-03-19 Thread John Wilker
just needed a few hits of the refresh key On 3/16/07, Stephen Gilson <[EMAIL PROTECTED]> wrote: There is an example in the doc showing this: http://livedocs.adobe.com/flex/201/html/controls_059_20.html Was that helpful? Stephen -- *From:* flexcoders@yahoogrou

[flexcoders] Important question about FABridge license

2007-03-19 Thread zenwarden
Can someone from Adobe tell me WHICHliecnse is the actual license for the Flex Ajax bridge? There is a license included in the download zip that is very restrictive AND there is also a license in the code (both js and as files) that is the exact oppsite and completely none restrictive. The Adobe b

[flexcoders] DataGridColumn not handling property.property references in Webservice Result

2007-03-19 Thread paulwelling
Hello, I have a WebService that returns an ArrayCollection of ObjectProxys. Each ObjectProxy in the collection contains primative data types as well as other complex ObjectProxys. I have no problem accessing the primative data types at the top level in an ObjectProxy, for the 'datafield' of the

[flexcoders] error with HTTPService

2007-03-19 Thread danj520
Hello, I'm trying to bind the returned results from a ComboBox to a url in HTTPService. Flex returns a "Value must be quoted" error with this statement: Here's my code for theComboBox.

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

2007-03-19 Thread Mike Anderson
Hello All, What is the proper way to bind Data to a DateField? I ask this, because I get an error when I bind a Variable contained within a ValueObject (which contains a Null Value), to a DateField Control. Is it safe to say, that this DateField doesn't act like a TextField? Do I require a regu

[flexcoders] Converting AS3 class into XML

2007-03-19 Thread tungchau81
Hi, I need to convert an AS3 class into XML based on all the public/private properties that the AS3 class has. However, I have not been able to find a way or any API that allow me traverse through all properties that a class has. This should be a generic way that can be applied to any AS3 class

[flexcoders] Re: Apollo Project Wizard Error

2007-03-19 Thread sam5654295
Be sure that you update FB before in the FB extensions.

[flexcoders] Re: LiveDocs Offline

2007-03-19 Thread mtthwnthnyhys
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! If it helps at all, I'm on one of those new-fangled Intel MacBook Pros, lo

RE: [flexcoders] Datagrid column width bug? flex 2.0.1

2007-03-19 Thread Alex Harui
There are a number of column width bugs fixed in an updater due out soon. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of munene_uk Sent: Monday, March 19, 2007 8:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datag

[flexcoders] data grids and font formating

2007-03-19 Thread gboro54
Data grids are very column oriented it seems but i need to do more work with indivuidal cells and rows. I want the text of certain parts of a row to be different for a different value depending on the user input.(i.e lets set the value 1 means arhived i want the whole row to become italized.) I

Re: [flexcoders] Cairngorm for Apollo?

2007-03-19 Thread Rich Tretola
Perhaps something built in to manage windows? On 19 Mar 2007 08:02:44 -0700, João Fernandes < [EMAIL PROTECTED]> wrote: I know that current cairngorm works fine with Apollo but at MAX they mentioned that the roadmap was also extend it to support Apollo, so, I guess is somehow to use some Apol

[flexcoders] LiveDocs Offline

2007-03-19 Thread lostinrecursion
Is anyone else experiencing issues accessing LiveDocs for all Adobe technologies today? So far, I am having issues with CF and Flex. I am receiving page not found errors and strange loading of the docs. I did a Google and can't believe that if it is the case, we have not been notified somehow.

[flexcoders] Re: ComboBox & URLs

2007-03-19 Thread danj520
Hi Alex, Thank you for your great help...one question..how would I pass "appName.selectedItem.url" as a string to the HTTPService? --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I would expect you would set it up something like this: > > > > change="dispatchFil

[flexcoders] Re: Date format - internal and external

2007-03-19 Thread darylgmyers
What about when the data has been changed by the user? The TextInput.text is now the formatted data. How do I access the raw data and keep my model up to date with the raw data? --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > The formatter should just format t

[flexcoders] Re: Date format - internal and external

2007-03-19 Thread darylgmyers
What about when the data has been changed by the user? The TextInput.text is now the formatted data. How do I access the raw data and keep my model up to date with the raw data? --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > The formatter should just format t

Re: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread subeesh a
Thanks Tracy, That was a great help. Can u please explain in detail in how can i update the dataprovider Subeesh - Original Message From: Tracy Spratt <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 19 March, 2007 10:29:16 PM Subject: RE: [flexcoders] Checkbox in Data

RE: [flexcoders] Re: Date format - internal and external

2007-03-19 Thread Tracy Spratt
The formatter should just format the display, using a renderer or a labelfunction. The underlying data in the dataProvider will still be a plain number. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of darylgmyers Sent: Monday, March

RE: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread Alex Harui
FWIW, by writing even more code, you can avoid the looping. You'd have to have a known central registry that customized checkboxes notify when clicked. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Monday, March 1

[flexcoders] Re: Unbelievably embarassing question - making components talk (and modules) amongst

2007-03-19 Thread shawn.gibson
Yikes, I never saw this. I think I am linking to these things wrong. I just subscribed to the digest because I was getting hundreds of emails. Thanks Tracy, I spent the whole weekend on this, got nowhere. I will have this up and running ASAP, hopefully. Here's where I ended up at the end, but

RE: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread Tracy Spratt
When the user clicks a checkbox in the itemRenderer, the renderer must update a "selected" property on the dataProvider item with the value of the checkbox selected property. This is required. Editable renderers must be driven from the dataProvider. Then, you can loop through the dataProvi

[flexcoders] Re: logout user after cookie expires (state change)

2007-03-19 Thread TCash21
Any chance it's possible without using AJAX? --- In flexcoders@yahoogroups.com, "Duke, Alfred W [YOH Contractor for Sprint]" <[EMAIL PROTECTED]> wrote: > > Tanya, > You can all of this using AJAX with flex > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL

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

2007-03-19 Thread Matt Chotin
your first email arrived 5 hours earlier than this in the middle of the night for most folks in north america, so give folks a little time :-) I'll see if anyone on the enterprise team knows anything. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTE

[flexcoders] Re: Date format - internal and external

2007-03-19 Thread darylgmyers
Still need help: I have to assume that this functionality is needed all the time when using Flex with a database application. I must be overlooking the solution. I have a currency field which is retrived via a remoting service and the data is 123.45. When I display it in a form I need to for

RE: [flexcoders] generated html wraper to pass args to swf?

2007-03-19 Thread Tracy Spratt
You pass values into the swf loading in the FlashPlayer using "flashvars". If you are using the wrapper generated by Flex Builder, then look at the code of that html. You will see that the Flash Player is actually intantiated in code in a .js file, in order to avoid the IE7 "click to use" prom

RE: [flexcoders] programmatically adding a new column to the datagrid

2007-03-19 Thread Alex Harui
newColumn.headerRenderer = new ClassFactory(myHeaderRenderer); MXMLC generates this code for you when you say headerRenderer="myHeaderRenderer" in MXML. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark McCray Sent: Monday, March

RE: [flexcoders] logout user after cookie expires (state change)

2007-03-19 Thread Duke, Alfred W [YOH Contractor for Sprint]
Tanya, You can all of this using AJAX with flex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of TCash21 Sent: Monday, March 19, 2007 11:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] logout user after cookie expires (state chang

RE: [flexcoders] Re: Unbelievably embarassing question - making components talk (and modules) amongst

2007-03-19 Thread Tracy Spratt
First, "bigImage.source="{data.piclink}"; will not work. You cannot use binding braces in AS code. Second, where is the "data" object you reference in that line? I suspect you really want something like: public function thumbChanged(event:Event):void { var xmlData:xml = XML(event.

RE: [flexcoders] logout user after cookie expires (state change)

2007-03-19 Thread Duke, Alfred W [YOH Contractor for Sprint]
using onreadystatechange From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of TCash21 Sent: Monday, March 19, 2007 11:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] logout user after cookie expires (state change) Hi all, I'm using

[flexcoders] logout user after cookie expires (state change)

2007-03-19 Thread TCash21
Hi all, I'm using PHP + Flex, and I'm pretty new to using sessions and session data. I've figured out how to create a cookie, make it expire, etc... I need to check the session ID with every HTTPService request, and if it's not valid, log the user out (make a state change in Flex). Also, if the

[flexcoders] programmatically adding a new column to the datagrid

2007-03-19 Thread Mark McCray
Hey there, I'm adding columns to the "columns" array for a datagrid without any difficulty. Except for when i try to specify the Header Renderer. We're building a new column object by writing AS code like : newColumn.dataField = columnObj.dataField; newColumn.wordWrap = columnObj.wordWrap; A

[flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread subeesh a
Hi All, Can anyone help me with this If i place chek boxes in datagrid column by inline item renderer how can il put al the items in the datagrid in wich the check boxes are ticked to an array. Thanks Subeesh __ Yahoo

[flexcoders] Affinitiz V3.2: english version released!

2007-03-19 Thread Benoit Hediard
Hi everyone! A quick message to inform you that we just launched the English version of our platform (even if the English is certainly not perfect yet.). Affinitiz is a web publishing platform that allows you to easily share all your contents on Internet (text, pictures, video, audio, opinions

[flexcoders] Re: Browser Print - Print Preview for Flex apps

2007-03-19 Thread mjharris73
Apparently, IE supports printing of Flex content. Its just Firefox which prints the blank page. We don't want to put a print button on each page of our app, so i'm hoping the flash player group will be able to find out why printing from Mozilla doesn't work. Mike --- In flexcoders@yahoogroups.

[flexcoders] Datagrid column width bug? flex 2.0.1

2007-03-19 Thread munene_uk
in my application i can toggle a certain number of columns' visibility through this code: private function displayOptions(item:Number):void { var visible:Boolean; if(dg.columns[item].visible==true) {

[flexcoders] Issue Drag and drop of Flex 2 Chart with Javascript in IE (See demo) Post 2

2007-03-19 Thread Claude Hussenet
I am building an application using the excellent Flex 2 Chart framework. I have currently an issue when I drag and drop a flex chart in IE using Javascript. In order to pinpoint the issue,I created a simple demo with 2 charts samples from Adobe. The demo is located at : http://c

  1   2   >