Re: [flexcoders] Re: SEO Compatibility

2006-12-18 Thread Ralf Bokelberg
Admin: Threads like that make a good start for a flexcoders wiki. This would also free JD from having to watch flexcoders during the night and at the weekend :) Any chance we get one? Cheers, Ralf. On 12/17/06, Mike Weiland [EMAIL PROTECTED] wrote: I was told this same information a couple

[flexcoders] DispatcherEvent

2006-12-18 Thread devisbalsemin
Hi to all, i wish to understand because if i change the value of my Class _cli.name this change will be reflect into dd.text. But if in my ClientiEvent i'm writing _cli=new Cliente(); the binding into my dd.text don't change can you help me Devis ?xml version=1.0 encoding=utf-8?

Re: [flexcoders] Re: Weird Binding Problem when using ModelLocator

2006-12-18 Thread Paolo Bernardini
I found the cause of my problem. if I try to bind model.assets.cartIcon to the icon property of a button, like this: mx:Button id=purchase icon={model.assets.cartIcon}/ I get a binding warning for that property and all other properties that are use in data binding. For example: mx:State

Re: [flexcoders] Re: An item renderer and data setting/binding question

2006-12-18 Thread Roman Protsiuk
Hi, Tim. Thanks for the advise. Though, it didn't help. Even calling super.invalidateDisplayList() I get no color change. R. On 12/16/06, Tim Hoff [EMAIL PROTECTED] wrote: Hi Roman, After you conditionally change the color, you have to redraw the itemRenderer. Try this: [Bindable]

[flexcoders] Re: An item renderer and data setting/binding question

2006-12-18 Thread Tim Hoff
Sorry that didn't work for you Roman. Here's an older example that has an itemRenderer that changes the color of the text; based on the value of the data. Hope that it helps. Sample http://www.cflex.net/showFileDetails.cfm?ObjectID=443Object=FileChann\ elID=1 Cheers, -TH --- In

Re: [flexcoders] Can I export XML from client to a new html page

2006-12-18 Thread Lachlan Cotter
Hi Vikas, It's possible to pass data between Flash and JavaScript, so theoretically, it is. My memory might be faulty but I have a vague idea that I've done something like this in the past in a situation where I wanted to include some data from an embedded SWF in a form submission along

Re: [flexcoders] Re: An item renderer and data setting/binding question

2006-12-18 Thread Roman Protsiuk
Hi, Tim. Thanks a lot for the help. I'll have a look at the example you sent. It's funny, but I've changed tactics a little bit and everything works now. The item renderer is following: public class FilesDataGridColumn extends Label { private const VALID_ITEM_COLOR : Number = 0x00;

Re: [flexcoders] why AMFPHP , i still can not get the point :(

2006-12-18 Thread Lachlan Cotter
Hi Yioit, I believe AMFPHP was originally created to work with remoting in Flash (not Flex). The XML handling abilities of Flash are not in the same league as Flex, so XML was a huge pain. AMFPHP definitely makes a big difference for Flash Development. Since Flex is so much better with

Re: [flexcoders] Re: An item renderer and data setting/binding question

2006-12-18 Thread Roman Protsiuk
Hi, Tim. Thanks for a great example. R. On 12/18/06, Tim Hoff [EMAIL PROTECTED] wrote: Sorry that didn't work for you Roman. Here's an older example that has an itemRenderer that changes the color of the text; based on the value of the data. Hope that it helps.

[flexcoders] Creates Duplicacy in Datagrid

2006-12-18 Thread Gaurav Jain
Hi All, I have a Datagrid in my application and I can change the position of the rows by dragging a particular row and dropping it at required position. But whenever I press Ctrl key and drag and drop the row (i.e. Ctr l+ Drag-Drop) it creates a duplicate row at that position. Can

Re: [flexcoders] More control on datagrid

2006-12-18 Thread Tom Chiverton
On Friday 15 December 2006 17:24, Sandeep Malik wrote: am not able to find any method which gives me a control on a cell of a datagrid. I know since DataGrid extends from a ListBase, there might Look up custom item renderers. -- Tom Chiverton Helping to ambassadorially leverage

[flexcoders] Creates Duplicacy in Datagrid

2006-12-18 Thread Gaurav Jain
Hi All, I have a Datagrid in my application and I can change the position of the rows by dragging a particular row and dropping it at required position. But whenever I press Ctrl key and drag and drop the row (i.e. Ctr l+ Drag-Drop) it creates a duplicate row at that position. Can any one

Re: [flexcoders] why AMFPHP , i still can not get the point :(

2006-12-18 Thread Marcelo de Moraes Serpa
AMFPHP makes remoting for Flash painless and costless. Yioit, Flash Remoting is about calling methods via RPC. You define your service classes on the server side, and then call them on the client-side defining call-backs for the results, then you wait for the results (if any) - i.e: You don't

[flexcoders] Re: Setting dataprovider to itemrenderer in datatagrid.

2006-12-18 Thread Tero Pikala
Hi This really doesn't work - that was the reason I originally asked the question!). It gives error message Access of undefined property selectData After reading docs more carefully I noticed that I can use mx:ComboBox dataProvider={parentApplication.selectData} which seems to make sense for

[flexcoders] Passing flash vars to embedded swf doesn't work

2006-12-18 Thread mikey_wilko
Hi all I have a flex app that has a swfLoader. I am loading different swf's in to the swfloader and they're all working fine. With one particular swf, it requires a flashvar. I've tried the following format : swfLoader.source=xxx.swf?id=2. This just doesn't work. However, running from

Re: [flexcoders] Flex project with apache server setup?

2006-12-18 Thread Tolis Christomanos
Thanks for the replies!! I think Steve Hagenlock is correct. I save the flex project to an apache httpdocs and i set the output path as http://localhost/flex/tests.html for example and it works fine. I dont need the flex data services yet so its fine by me.

Re: [flexcoders] why AMFPHP , i still can not get the point :(

2006-12-18 Thread Webdevotion
When using amfphp or flash remoting for that matter, you'll find out that you Actionscript code understands your AMFPHP objects and vice versa. No need to parse data into native Actionscript objects. Agreed, E4X etc has made this less harsh to use, but you'll still gain a lot on the client side

[flexcoders] Re: TabNavigator and SWFLoaders problem

2006-12-18 Thread durnelln
Thanks Angus. I checked my code and I am not setting width/height on the SWFLoader before setting percentHeight and percentWidth. However despite setting them both to 100% on the SWFLoaders, the loaders on all tabs apart from the first one end up with width=0 and height=0 once loaded. Can

Re: [flexcoders] why AMFPHP , i still can not get the point :(

2006-12-18 Thread Webdevotion
Marcello, Just a little remark: AMFPHP is heading towards AMF3 support, including RemoteObject. In alpha stage now, but I don't think it will take long for a final release any more. Also check out the new service browser live demo: here.http://5etdemi.com/amfphp2/browser/

Re: [flexcoders] How to align text in middle in a row ?

2006-12-18 Thread eren bali
set that label 100% width, and textAlign=center if this does not work use it inside a vbox On 12/18/06, arpan srivastava [EMAIL PROTECTED] wrote: Hi, How can i center the text horizontally inside a row in a datagrid. I have also created an itemrenderer which extends Label, but you can

Re: [flexcoders] why AMFPHP , i still can not get the point :(

2006-12-18 Thread Marcelo de Moraes Serpa
Hello Webdevotion, Wow, that's some great news! Seems like I've spent too much time on my last flash8 RIA and forgot to read my RSS feeds. Marcelo. On 12/18/06, Webdevotion [EMAIL PROTECTED] wrote: Marcello, Just a little remark: AMFPHP is heading towards AMF3 support, including

Re: [flexcoders] why AMFPHP , i still can not get the point :(

2006-12-18 Thread eren bali
merhaba yigit, Typically there are 3 choices for server integration via RPC: - SOAP webservices (WSDL) - RemoteObject's (AMFPHP?) - Basic HttpServices None of these 3 is a best choice, we are using all these approaches in our projects. SOAP Web services(you can use nusoap.php for this): pros:

[flexcoders] Content Change

2006-12-18 Thread Daniel
Hi All! This time I'm having problems with an object that I can't actually bind to because it is updated with a Web Service and it takes a while to get the information some other object needs, due to the asynchronous call. Is there a way to add an listener to this object that as soon as it

Re: [flexcoders] Content Change

2006-12-18 Thread Roman Protsiuk
Hi. If the object somehow based on an EventDispatcher then while listening to response from your remote call: [Bindable(event=someFieldChange)] pulbic function get someField() : Object { return _someField; } private function responseHandler(result : Object) : void { _someField = result;

Re: [flexcoders] dynamic xpath

2006-12-18 Thread Daniel Freiman
Your code works for me when user is strongly typed as XML. The only other things I can think of is that you're expecting to result to be the first node found when really it's is an XMLList of all nodes found. If neither of those issues fix the problem I'd try simpler searches and seeing where

[flexcoders] help needed with TextFields (not updating)

2006-12-18 Thread sp0rarb3jd3r
I'm working with a textfield. I wan't to be able to display textcontent only of a specific width and abbreviate the contents whenever the original text exceeds my chosen width. Say I want to write havannahhotdog, and the widthparamameter will only let me fit havannahh then the textfield string

[flexcoders] problems with drag/zoom and levels

2006-12-18 Thread Alain Thibodeau
Hi All, I hope someone will be able to help me with some issues I am having. I need to load an external swf and control its display with drag and zoom. The loaded swf has to be inside a white box (container), it must be draggable/zoomable beyond the parameters of the box, but the excess

[flexcoders] FW: Linking to external images or css files?

2006-12-18 Thread jason.proulx
Hey All, First post to flexcoders. I'm trying to link to a css file in a Flex Library project and I can't seem to figure out how to get it to work. MXML files and AS Classes work without a hitch, but I can't seem to either @Embed() images or reference stylesheets. I've tried a bunch

[flexcoders] Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread Webdevotion
Hello Flexcoders, Is it allright to use Cairngorm for AS 3 projects? I'm getting up to speed with Flex and AS 3.0 and want to start learning some relevant frameworks. Which ones are among the best choices for strictly AS 3 projects ? Bram

Re: [flexcoders] help needed with TextFields (not updating)

2006-12-18 Thread Daniel Freiman
If this text display is only one line, then you might want to use a label and set truncateToFit = true. It has the effect you want. Otherwise you might just want to use a UITextField instead of a TextFieldAsset. This seems to fix the problem. Using TextFieldAsset is unusual and really

Re: [flexcoders] How to align text in middle in a row ?

2006-12-18 Thread arpan srivastava
Sorry, I want to place the text vertically aligned in the middle. - Original Message From: eren bali [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, December 18, 2006 7:17:55 PM Subject: Re: [flexcoders] How to align text in middle in a row ?

[flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread edeustace
Hi, The most recent versions of Cairngorm works perfectly with AS3/flex 2 projects. be sure to download version 2 or 2.1. http://labs.adobe.com/wiki/index.php/Cairngorm later ed --- In flexcoders@yahoogroups.com, Webdevotion [EMAIL PROTECTED] wrote: Hello Flexcoders, Is it allright to

Re: [flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread hank williams
I think he meant AS3 without Flex - right Bram? Hank On 12/18/06, edeustace [EMAIL PROTECTED] wrote: Hi, The most recent versions of Cairngorm works perfectly with AS3/flex 2 projects. be sure to download version 2 or 2.1. http://labs.adobe.com/wiki/index.php/Cairngorm later ed --- In

[flexcoders] Ctrl+Enter causes line break in TextInput in IE!

2006-12-18 Thread Sergey Kovalyov
Hi All! Pressing Ctrl+Enter causes line break in TextInput in IE! How to fix this bug without subclassing TextInput? Sergey.

[flexcoders] Difficulty when @embedding FP9/AS3 SWFs

2006-12-18 Thread Troy Rollins
I'm not having any problems accessing frame labels, etc. in FP9/AS3 swfs which are dynamically linked at runtime within a swfloader component, but if I try to @embed those same swf files, I lose all my ability to interact with them. Shouldn't I be able to do continue to reference their frame

RE: [flexcoders] Difficulty when @embedding FP9/AS3 SWFs

2006-12-18 Thread Alain Thibodeau
Perhaps this will help you, even if it's not embed: http://www.bridel.org/flex/example/swfimport/swfloadasdemo.html http://www.bridel.org/flex/example/swfimport/srcview/index.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy Rollins Sent: Monday,

[flexcoders] Print Datagrid Columns Dynamically Based on User Selection

2006-12-18 Thread rob_scio
We are looking for suggestions on how to handle the following: We need to print a DataGrid with DataGrid columns chosen by a user at runtime in a dynamic fashion. The app that's been written utilizes the mx.printing.FlexPrintJob method to accomplish this task. Specifically, the code already

Re: [flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread Webdevotion
That's correct Hank, AS 3 only projects.

[flexcoders] multiple HTTP Requests

2006-12-18 Thread Sudha Hariharan
hi, I am rather new to flex and this is one of my amateur attempts at building RIAs. My application at present includes a tree menu, items of which when dropped onto a canvas opens up window components. Each window sends a http request that gets the appropriate data onto the display of the

[flexcoders] Re: FlexPrintJob PrintJob

2006-12-18 Thread Uday M. Shankar
Just to make it more clear - Though PrintJobOptions allows me to set orientation and works with PrintJob, I am unable to set PrintJobOptions to FlexPrintJob. Thats where I am stuck. Anybody? Any ideas? --- In flexcoders@yahoogroups.com, Uday M. Shankar [EMAIL PROTECTED] wrote: Hi, How do I

[flexcoders] Set Print Layout of Datagrid Automatically

2006-12-18 Thread rob_scio
Another print datagrid query from a Flex newbie... need to have the print layout of a Flex datagrid default to an orientation of Landscape when printinga datagrid. We see that the PrintJob class has an orientation property but the FlexPrintJob class does not. Anyone have an example of how to do

RE: [flexcoders] want to load multiple XML files to populate various controls

2006-12-18 Thread Tracy Spratt
You can have multiple HTTPServices, but I don't think you should. Instead, use the AsyncToken. You can assign a identifier to each query when you send it, and use that identifier in a switch statement in a handler function to determine how to handle the result. Or you can directly assign a

RE: [flexcoders] multiple HTTP Requests

2006-12-18 Thread Tracy Spratt
First, don't use URLLoader, HTTPService is easier. Second, you *can't* use the result in the same function in which you invoke send(), you must do that work in the handler function. Third, use the AsyncToken. You can assign a identifier to each query when you send it, and use that

RE: [flexcoders] Making objects vs extending objects and their properties

2006-12-18 Thread Tracy Spratt
Yes, and the dynamic part is not inherited from the parent object. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lachlan Cotter Sent: Monday, December 18, 2006 1:51 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

[flexcoders] Flash9 Player Penetration Rates

2006-12-18 Thread dj
Is it really only 40%, that's the impression that people here are under. I need a current please so I can fight the good fight for flash 9 since I don't want to have to develop for flash 8 in eclipse. Thanks, Patrick

[flexcoders] FDS Plugin (Peter's) and Tomcat 5.5

2006-12-18 Thread Douglas Knudsen
Ok, I'm learning the whole eclipse J2EE thing here. I got Peter's plugin installed. I can create a dynamic app and all following his sample here But everytime Tomcat starts up, the console log in eclipse has a error: [Flex] RTMP-Server failed to start up: java.net.BindException: Address

Re: [flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread hank williams
I dont think you can use Cairngorm without flex. I dont know the source code, but it seems to rely on elements of the flex framework in order to work. This would mean using at minimum the core flex library which I think is about 100+ k without doing much of anything. So the issue is whether you

RE: [flexcoders] multiple HTTP Requests

2006-12-18 Thread Steve Kellogg @ Project SOC
Tracy, I've been wondering about AsyncToken. Is there any way to use it with WebService objects that are defined in mxml? I currently define the WebService, and then call myService.myOperationName();, but I haven't figured out any way to inject an AsyncToken into that procedure.

Re: [flexcoders] Flash9 Player Penetration Rates

2006-12-18 Thread John Dowdell
[EMAIL PROTECTED] wrote: Is it really only 40%, that's the impression that people here are under. I need a current please so I can fight the good fight for flash 9 since I don't want to have to develop for flash 8 in eclipse. Adobe Flash Player 9 was released on June 27 2006:

RE: [flexcoders] multiple HTTP Requests

2006-12-18 Thread Peter Farland
As with other RPC services, an instance of AsyncToken is returned when you call myService.myOperationName(). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg @ Project SOC Sent: Monday, December 18, 2006 1:06 PM To:

Re: [flexcoders] FDS Plugin (Peter's) and Tomcat 5.5

2006-12-18 Thread Carlos Rovira
You have more than one FDS deployed and th RTMP port is in use. Try both to remove one app or change the RTMP port in your app for another one On 12/18/06, Douglas Knudsen [EMAIL PROTECTED] wrote: Ok, I'm learning the whole eclipse J2EE thing here. I got Peter's plugin installed. I can

[flexcoders] Re: Idle Timeout

2006-12-18 Thread Daniel
Have you come with any solution yet? Im having the same need. --- In flexcoders@yahoogroups.com, app.developer [EMAIL PROTECTED] wrote: Anyone dealt with a need to watch for an idle timeout for a user in a flex/flash application? I need something that will watch for key stroke and mouse

Re: [flexcoders] Content Change

2006-12-18 Thread Ralf Bokelberg
Binding works perfectly with asynchronous updates of the bindable. What kind of problems do you see? Cheers, Ralf. On 12/18/06, Daniel [EMAIL PROTECTED] wrote: Hi All! This time I'm having problems with an object that I can't actually bind to because it is updated with a Web Service and it

[flexcoders] scheduled functions

2006-12-18 Thread Mark McCray
Hey there, Could anyone point me in the right direction with the following task: Is it possible to create events that happen at specific times while the app is running? Something like cron but for a client side flex app? Can make some function that runs in its own thread or runs in the

RE: [flexcoders] scheduled functions

2006-12-18 Thread Gordon Smith
You could do this using the Timer class in the flash.utils package. I'd create a Timer that fires once a minute, determines the clock time, and checks to see if there are any alarms to display. The Flash Player doesn't have multiple threads. - Gordon

RE: [flexcoders] scheduled functions

2006-12-18 Thread Brian Holmes
Start a Timer() when the application loads with it's delay property from the time the app starts till the time you wish to fire an event. For example the app starts at 8:00 am, and you want to show a pop up at 5pm to remind the user to go home, You just take the difference in time which is 9h

Re: [flexcoders] scheduled functions

2006-12-18 Thread Mark McCray
Awesome!!! that's exactly what i needed. I was searching for the wrong words :) Thanks! On Dec 18, 2006, at 4:00 PM, Gordon Smith wrote: You could do this using the Timer class in the flash.utils package. I'd create a Timer that fires once a minute, determines the clock time, and checks

Re: [flexcoders] Making objects vs extending objects and their properties

2006-12-18 Thread David Harris
Thanks Lach, that is most helpful! On 12/18/06, Lachlan Cotter [EMAIL PROTECTED] wrote: Hi David, As I was recently reminded, you can only loop over properties this was when they are dynamically created, as in your first example. To enumerate the declared properties of your custom class, I

RE: [flexcoders] Re: Idle Timeout

2006-12-18 Thread Tracy Spratt
There is nothing built-in to do this but it is not difficult to do. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Monday, December 18, 2006 3:13 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Idle

[flexcoders] Re: Amfphp with AMF3 support: testers wanted

2006-12-18 Thread Jamie O
Hello, I am able to do a stand-alone .mxml project using the samples you have provided and connect well to my php methods / backend database. The issue I have is when trying to deploy this as part of a Flex Data Services / Cairngorm app I can't get the remote object to allow compile or usage

Re: [flexcoders] Passing flash vars to embedded swf doesn't work

2006-12-18 Thread greg h
Mike, I have not had to address this myself and don't have time this moment to test the following possible solution. I googled and the following Flash realated link suggests you might try using the SWFLoader's complete event to setting the loaded SWFs params:

RE: [flexcoders] Re: How do I reset itemRenderer inside DataGrid when dataProvider is updated?

2006-12-18 Thread Tom Lee
Ben, Did you ever find a satisfactory answer to this? I'm facing the same issue. Thanks, -tom -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, July 20, 2006 11:59 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] why AMFPHP , i still can not get the point :(

2006-12-18 Thread Yiðit Boyar
thanks a lot for your detailed explanations , they are really useful. by the way; i built EasyReq class for local applications that do not need security; but i'm aware that , if i want to spread it; i'll have to take care for the security issue. For eren bali's suggest (sending sql directly) :

RE: [flexcoders] Print Datagrid Columns Dynamically Based on User Selection

2006-12-18 Thread Dimitrios Gianninas
Easy :) I just did this myself... I allow my users to select the columns to display in one particuliar inbox, so it updates automatically. 1) If you notice the columns property on the datagrid is just an array of DataGridColumns objects. So what I do I created a component to hold these arrays

Re: [flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread greg h
Bram, Yes, Cairngorm has been used on Flash only projects (although not by me ;-). Following are 3 links related to 2 occasions that this question came up last month on the FlashCoders list. http://chattyfig.figleaf.com/pipermail/flashcoders/2006-November/175801.html

Re: [flexcoders] SEO Compatibility

2006-12-18 Thread John Dowdell
sanjaypmg wrote: Is Flex SEO Compatible? If yes, How can I my flex application SEC compatible? so that it can be easily available for search engines available. This was the original question. Other topics came up during discussion. I'd like to confirm that I have the correct understanding

[flexcoders] Re: How do I reset itemRenderer inside DataGrid when dataProvider is updated?

2006-12-18 Thread ben.clinkinbeard
Hey Tom, This thread is pretty old and I don't have time to read through it all again to gain context, but I can offer a quick recap of what (I think) I am doing differently these days. It seems to make things a lot easier if you use ArrayCollections as your dataProvider rather than

Re: [flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread hank williams
Hmm... in looking at those links, they all seem to be about cairngorm .95 i.e. the version for as2. In any case the author was, with some modification able to get things to run without flex by making some mods to cairngorm. I would strongly suspect that with some mods to the current version of

RE: [flexcoders] Re: Idle Timeout

2006-12-18 Thread Tracy Spratt
Here is a simple example: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=578 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Monday, December 18, 2006 4:10 PM To:

RE: [flexcoders] scheduled functions

2006-12-18 Thread Tracy Spratt
Here is a time-out example: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=578 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark McCray Sent: Monday, December 18, 2006 4:12 PM To:

Re: [flexcoders] SEO Compatibility

2006-12-18 Thread hank williams
On 12/18/06, John Dowdell [EMAIL PROTECTED] wrote: sanjaypmg wrote: Is Flex SEO Compatible? If yes, How can I my flex application SEC compatible? so that it can be easily available for search engines available. This was the original question. Other topics came up during discussion. I'd

Re: [flexcoders] Can I export XML from client to a new html page

2006-12-18 Thread Lachlan Cotter
It appears that in my old Flash based app, I used LocalConnection and a gateway SWF to call JavaScript functions. This info might put you on the right track for doing something similar in Flex: http://www.adobe.com/devnet/flex/articles/analytic_app_05.html Cheers, Lach On 18/12/2006, at

Re: [flexcoders] Creates Duplicacy in Datagrid

2006-12-18 Thread Lachlan Cotter
Hi Gaurav, That's the standard and intended behaviour in pretty much all applications. If you really want to change it, you need to define your own custom drag handler methods on the DataGrid. Cheers, Lach On 18/12/2006, at 10:44 PM, Gaurav Jain wrote: Hi All, I have a Datagrid in

[flexcoders] Using an ID String as an Object Reference

2006-12-18 Thread Paul Whitelock
I have a ColdFusion component that passes a string with the id of an Flex component to a Flex application (the component is instantiated in the Flex application). I want to call a method in the Flex component by using the id contained in the string. Is there any way to use the string value to

[flexcoders] weird flex compiler issue

2006-12-18 Thread Dimitrios Gianninas
Hope someone is around to read this, if not see you after the holidays :) Compiling my app using 2.01 for weeks now and all is well until today I discover from other people that it doesn't on their machine. They get this error: [echo] using /dev/libraries/fxcore/2.01/sdk/bin/mxmlc [exec]

[flexcoders]Live preview of swfs

2006-12-18 Thread dorkie dork from dorktown
Is there any way to see a live preview of swfs at design time? I exported a vector image to Flash so I can scale my logo as large or as small as I want without it losing quality but when I bring it into Flex it shows a little swf icon but not the image. I am losing the benefit by not being able

Re: [flexcoders] Re: SEO Compatibility

2006-12-18 Thread Kevin Newman
I just wanted to chime in with some ideas, and to suggest that Claus's answer is the right one. First, this is a problem of standards. Adobe with Flex and Flash, try to keep things as open ended as possible, and so you can build your Flex/Flash apps in many ways to draw the data from some

[flexcoders] how to change the custom Components 's image?

2006-12-18 Thread saicn_1205
hi ,everybody . i have a question. i created a custom componets by flash9. i created a swf from flash9 based actionscript 9,then i placed it into my flex project. and created a custom componets. now ,i can use it as a normal custom componets. i can set its width , height, label. but , i cant

Re: [flexcoders] FDS Plugin (Peter's) and Tomcat 5.5

2006-12-18 Thread Douglas Knudsen
thanks Carlos. So to reiterate, forgive my obvious n00bness with Tomcat: 1) you can't use a context for a new FDS app that exists under webapps. Doesn't matter what you set the rtmp ports to either and can't set different in eclipse then in webapps folder either. 2) if you have two FDS

Re: [flexcoders] Re: SEO Compatibility

2006-12-18 Thread hank williams
Kevin, I had a few inline comments on some of what you wrote since I had a few differences of opinion. On 12/18/06, Kevin Newman [EMAIL PROTECTED] wrote: I think that's great and don't necessarily think Adobe needs to fix the problem, since I don't think it's Adobe's problem - I like the

Re: [flexcoders] How to align text in middle in a row ?

2006-12-18 Thread arpan srivastava
textAlign attribute will place the text in horizontally in center , I want to place it vertically in center of the row. it's like in a text box text always starts from top left corner, i want to start it from vertically middle of the text box - Original Message From: david_gal-reyniez

[flexcoders] Re: DataService with admin

2006-12-18 Thread benjidudu
I think I get it now. I should make two destinations, one for the admin with read and write functions and one for the clients with read-only functions (fill). Am I on the right path? --- In flexcoders@yahoogroups.com, benjidudu [EMAIL PROTECTED] wrote: I am doing two applications accessing the

[flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread cluebcke
It does rely on the Flex framework, true, although I believe this is related to FDS/RemoteObject support. Keep this in mind, though: The source code for Cairngorm is freely available, and there really isn't that much to it. You may even be able to do it without altering any of the Cairngorm source

RE: [flexcoders] Re: How do I reset itemRenderer inside DataGrid when dataProvider is updated?

2006-12-18 Thread Tom Lee
Hi Ben, Thanks for your advice - as is so often the case, we have no answer to the question at hand (why does a dataChange event fire when the datagrid is scrolled?), but I was able to work around the problem by completely changing my mindset regarding the data model. and probably made my app

Re: [flexcoders] Using an ID String as an Object Reference

2006-12-18 Thread Patrick Mineault
this[componentIdName].reload(), although I think sending component names from ColdFusion is a terrible idea. Patrick 2006/12/18, Paul Whitelock [EMAIL PROTECTED]: I have a ColdFusion component that passes a string with the id of an Flex component to a Flex application (the component is

Re: [flexcoders] Re: Amfphp with AMF3 support: testers wanted

2006-12-18 Thread Patrick Mineault
Could you post the services_config.xml file you have? Patrick 2006/12/18, Jamie O [EMAIL PROTECTED]: Hello, I am able to do a stand-alone .mxml project using the samples you have provided and connect well to my php methods / backend database. The issue I have is when trying to deploy this

[flexcoders] double clic problem

2006-12-18 Thread ecpmaz
Hie, Sorry but i can't find the problem in this stupid code : i can't catch any double click event : ## ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=init(); mx:Script ![CDATA[

RE: [flexcoders] scheduled functions

2006-12-18 Thread Gordon Smith
Having a single long Timer interval is worth trying, but I'm worried that Timer time might not match clock time over a long interval. That's why my recommendation was to make a Timer that fires every minute and checks the clock time. - Gordon From:

Re: [flexcoders] Re: Cairngorm for Actionscript 3.0 projects

2006-12-18 Thread Webdevotion
thank for the interesting links ; )

Re: [flexcoders] SEO Compatibility

2006-12-18 Thread Doug McCune
Yes, this was certainly my concern. In addition to allowing a search to return the address of the interface I think people also want the capability to allow deep-linking, so the address could make the interface load a particular content item from the database. I'd also like to point out that

[flexcoders] PopUpMenuButton with radio items

2006-12-18 Thread Sean
Does anybody have any experience using the PopUpMenuButton component with radio items in the menu? There seems to be some sort of bug where the radio icons intermittently dissappear and reappear (usually they dissappear) on the menu, and it only seems to happen when the radio options are in

Re: [flexcoders] SEO Compatibility

2006-12-18 Thread Kevin Newman
I'm going to insert my 2 cents (I thought I did already this afternoon, but for some reason, that email never showed up in the thread). hank :williams wrote In my thinking, what would be really good (needed?) is something that requires some server side code. The idea is that certain urls need

[flexcoders] seeding arraycollection from a web service

2006-12-18 Thread khascall
Hello all, I believe I'm following the docs precisely (the Binding a result to an ArrayCollection object doc in the Flex IDE Help), but my app isn't working. What I'd like to do is map the results of a web service call into an ArrayCollection, but the ArrayCollection comes up empty when I try.

Re: [flexcoders] SEO Compatibility

2006-12-18 Thread hank williams
I'm not as convinced that this is a problem that Adobe could solve. Flex and Flash are so open ended, that there are dozens of combinations of server and client technologies that can be used to produce a Flex or Flash (or Ajax for that matter) application. I don't think a single product could be

[flexcoders] Re: Amfphp with AMF3 support: testers wanted

2006-12-18 Thread Jamie O
For the stand-alone basic .mxml I used a copy of the basic example Renaud gave - with a different URL for the gateway which is located on a separate server. For the cairngorm / FDS version, here are the changes I made to the default FDS .xml files 1) In services-config.xml, add the service to the

[flexcoders] how to start editing a datagridcolumn programmatically

2006-12-18 Thread Pan Troglodytes
How can I create a button click event that will start editing of the selected grid column? I want to have a rename button for clarity (for those users who won't guess to click on the item to rename it). -- Jason

Re: [flexcoders] double clic problem

2006-12-18 Thread Manuel Saint-Victor
You have to set the doubleClickEnabled property to true http://livedocs.macromedia.com/flex/2/langref/flash/display/InteractiveObject.html M On 12/18/06, ecpmaz [EMAIL PROTECTED] wrote: Hie, Sorry but i can't find the problem in this stupid code : i can't catch any double click event :

[flexcoders] Flex App w/ColdFusion to search PDF content?

2006-12-18 Thread Mike Anderson
Hello All, I was wondering if it was possible, for ColdFusion to scan a subdirectory of PDF files, read in each file, and then perform a Full-Text search - bringing back a list of files containing the search criteria? I know ColdFusion has some type of built-in PDF capabilities, but I think that

Re: [flexcoders] Re: Amfphp with AMF3 support: testers wanted

2006-12-18 Thread Patrick Mineault
Dang. I really don't know what to tell you man, it looks like everything is in order. Unfortunately the services config file format is little documented and uses new meanings for old terms which makes it completely cryptic and unreadable, IMHO. Patrick 2006/12/19, Jamie O [EMAIL PROTECTED]:

Re: [flexcoders] Flex App w/ColdFusion to search PDF content?

2006-12-18 Thread Brendan Meutzner
ColdFusion has a search solution called Verity which allows you search PDF documents... it comes built in with CF. Brendan On 12/18/06, Mike Anderson [EMAIL PROTECTED] wrote: Hello All, I was wondering if it was possible, for ColdFusion to scan a subdirectory of PDF files, read in each

  1   2   >