[flexcoders] PDF / Word Doc/ PPT to swf

2006-10-25 Thread omkarjoe
Hi, Does anyone know any java api available which will convert PDF, Word Doc, PPT at the serverside to SWF (may be Flash Paper)??? or if anyone has done dat before kindly let me know... Any relative comments are welcomed. Thanks in advance Omkar -- Flexcoders Mailing List FAQ:

[flexcoders] Re: FlexBuilder refusing to Build newer versions of .mxml files !!!

2006-10-25 Thread Mike Crowe
Is nobody else having this issue? This is happening almost every build for me, and it's driving me crazy. I'm getting sick of recreating a project, just to compile. Where does the system cache the byte-code? My application isn't that big, so I am willing to completely recompile all files.

[flexcoders] Simple Clock to digital?

2006-10-25 Thread Bill Long
Does anyone have a suggestion on how to write a digital clock instead of the good old analog that's shown in the /samples file. Thanks, -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] += operator is changing the encodings

2006-10-25 Thread Luis Eduardo
hi, In my app, when i use the += operator, the data inside xmls turns with diferent encoding. The and caracters become wierds like lt and gt respectively. How can i fix this? this is the code: public function doGravar():void { var xgravar:XMLList = new

[flexcoders] Flex Builder 2 Beta for Mac on Adobe Labs

2006-10-25 Thread John Olson
http://labs.adobe.com/technologies/flexbuilder2/ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] Viewstack / Navigator Filtering Best Practice?

2006-10-25 Thread oktay nba
i was stuck right in the same situation. i haver a linkbar binding from a viewstack. i want to be able to define which childs of viewstack will be visible in linkbar(i.e. want to filter dataprovider of linkbar) On 10/2/06, Jamie O [EMAIL PROTECTED] wrote: Hello,Looking for a little help as far

[flexcoders] Datagrid Cellrender performence issue

2006-10-25 Thread Yasovardhan Babu
Hi All, I have a problem with performence of Datagrid. My requirement is that I have a datagrid with many columns, with one column as checkbox column and two columns as editable columns. I am using text 1)If one of the editable column is changed then the other editable column should be updated

[flexcoders] bug in the XMLListCollection ?

2006-10-25 Thread Luis Eduardo
hello people, i am adding one XML item at one XMLListCollection but the collectionChange event dont fire. i am using the follow code: var xn:XML = new XML(); xn = TipoVeiculo Id= Nome={edtNome.text} Descricao={edtDescricao.text}/; XMLLC.addItem(xn); the XMLListCollection was

[flexcoders] Initialization and Configuration Help needed

2006-10-25 Thread Mike Crowe
Hi folks, I'm struggling with how to configure my system, and I'm drawing a blank. When my system is installed, it needs to communicate via HTTPService to the host. It can be to: http://localhost/index.php http://localhost/subdir/index.php http://www.somehost.com/index.php Things like

Re: [flexcoders] Re: hitData.item.(variable)

2006-10-25 Thread Tom Chiverton
On Tuesday 24 October 2006 15:05, jnewport wrote: So when trying to create your own dataTipFormat I am trying to find a way to get the [EMAIL PROTECTED], which of course does not work. Just fire up the debugger and inspect it. -- Tom Chiverton Helping to synergistically harvest B2B

[flexcoders] Re: bug in the XMLListCollection ?

2006-10-25 Thread Bela Hajzer
--- In flexcoders@yahoogroups.com, Luis Eduardo [EMAIL PROTECTED] wrote: hello people, i am adding one XML item at one XMLListCollection but the collectionChange event dont fire. i am using the follow code: var xn:XML = new XML(); xn = TipoVeiculo Id="" Nome={edtNome.text}

Re: [flexcoders] Flex 2 calendar framework announced

2006-10-25 Thread Tom Chiverton
On Tuesday 24 October 2006 19:10, maunger wrote: I haven't had much time to look thru it yet, but I was hoping for some kind of 'month view' which i haven't found yet. It's nice, but the PoC on

Re: [flexcoders] Flex Deployment Best Practices

2006-10-25 Thread Tom Chiverton
On Tuesday 24 October 2006 16:38, John Kirby wrote: Bingo! This is exactly my concern. I love Flex... but building a bloated application of 500k-- 1Mb for the consumer space is not attractive. I wouldn't want to inflict it on anyone as the first page of a site, no. -- Tom Chiverton Helping

Re: [flexcoders] Can I dock anything to the BOTTOM of the screen

2006-10-25 Thread Tom Chiverton
On Monday 23 October 2006 17:09, boy_trike wrote: I have an application bar docked to the top of the screen. Is there any way to dock anything to the BOTTOM of the screen? Something like top={Application.height-this.height} maybe ? -- Tom Chiverton Helping to administratively expedite

Re: [flexcoders] Can I dock anything to the BOTTOM of the screen

2006-10-25 Thread Igor Costa
Yeap bruceCheck this outmx:Style ApplicationControlBar { bottom:0; }/mx:Style mx:ApplicationControlBar cornerRadios=0 width=100%/Regards.On 10/23/06, boy_trike [EMAIL PROTECTED] wrote: I have an application bar docked to the top of the screen. Is there any

Re: [flexcoders] Simple Clock to digital?

2006-10-25 Thread Igor Costa
Why don't you extend that?You can do that using Flash to create the apperance of you digital clock. acceing the members of symbol library.Regards.On 10/24/06, Bill Long [EMAIL PROTECTED] wrote: Does anyone have a suggestion on how to write a digital clock

Re: [flexcoders] += operator is changing the encodings

2006-10-25 Thread Igor Costa
Hi LuizIsn't the operator that's wrong, you just missed out how to pass String and concatening in both side of wall.Check out this heck of how could be done.public function myList():void{ var myXML = new XMLList(dsRQrootrequest//root/dsRQ); szCommand = insert; if( [EMAIL PROTECTED] = szCommand

Re: [flexcoders] Initialization and Configuration Help needed

2006-10-25 Thread Igor Costa
Mike are you trying to access your .swf from localhost too?What problem happens? didn't get your point.Regards.On 10/24/06, Mike Crowe [EMAIL PROTECTED] wrote: Hi folks, I'm struggling with how to configure my system, and I'm drawing a blank. When my

Re: [flexcoders] update an itemrenderer from outside

2006-10-25 Thread Igor Costa
Jesusyou have to create a function to do that, but in the case of update the grid after you change in the numeric stepper you just have an a scope problem. To acess a member outside an itemrender you have to choose the item outerDocument.functionyouCreate() in the tigger click.So, that's you

Re: [flexcoders] Viewstack / Navigator Filtering Best Practice?

2006-10-25 Thread Igor Costa
Jamie just change from private to public in your function, and it will works.Regards.On 10/2/06, Jamie O [EMAIL PROTECTED] wrote: Hello, Looking for a little help as far as best practices for filtering a navigator (togglebuttonbar, buttonbar) from a viewstack

Re: [flexcoders] pseudo clipping

2006-10-25 Thread Igor Costa
Did you see the properties called hidechildrens at the tag you are trying to do that?Check this and you could solve your problem.Regards.On 10/24/06, Daniel Freiman [EMAIL PROTECTED] wrote: Does anyone know of a way to accomplish an effect similar to setting

Re: [flexcoders] Toggling DataGrid Row from editable=false, to true?

2006-10-25 Thread Igor Costa
Mike this is also nativily at DataGrid Componentyou just put some enachments to get start working .Just using itemEditor you could set if the row was edited or not, then you create some pice of if else than voila. It will works. Regards.On 10/24/06, Mike Anderson [EMAIL PROTECTED] wrote:

Re: [flexcoders] FlexBuilder refusing to Build newer versions of .mxml files !!!

2006-10-25 Thread Igor Costa
MikeThis is know issue of Flex Builder 2.0.Always when you do a clean project, you really need to disable the option in the top of project menu ' build automaticly'. Then you can clean up the project. If you do not disable this, the Flex Builde intend to delete the entire file and then, doesnt

Re: [flexcoders] Datagrid Cellrender performence issue

2006-10-25 Thread Igor Costa
The cellrender no longer exist in Flex 2.0You could also check out at the live docs in the terms of ( itemrender and itemeditor).You will figure out how to do your project.Regards. On 10/25/06, Yasovardhan Babu [EMAIL PROTECTED] wrote: Hi All, I have a

[flexcoders] Flex for mac public beta is out!

2006-10-25 Thread hank williams
Flexbuilder for the mac beta is out!!! http://labs.adobe.com/technologies/flexbuilder2/ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit

Re: [flexcoders] bug in the XMLListCollection ?

2006-10-25 Thread Igor Costa
Does this compile?On 10/24/06, Luis Eduardo [EMAIL PROTECTED] wrote: hello people, i am adding one XML item at one XMLListCollection but the collectionChange event dont fire. i am using the follow code: var xn:XML = new XML(); xn = TipoVeiculo Id=

Re: [flexcoders] Flex for mac public beta is out!

2006-10-25 Thread Hasan Otuome
Thanks guys!! Already importing-n-compiling...=) P E A C E Hasan hank williams wrote: Flexbuilder for the mac beta is out!!! http://labs.adobe.com/technologies/flexbuilder2/ __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Re: bug in the XMLListCollection ?

2006-10-25 Thread Bela Hajzer
see bellow pls --- In flexcoders@yahoogroups.com, Igor Costa [EMAIL PROTECTED] wrote: Does this compile? On 10/24/06, Luis Eduardo [EMAIL PROTECTED] wrote: hello people, i am adding one XML item at one XMLListCollection but the collectionChange event dont fire. i am

Re: [flexcoders] Re: FlexBuilder refusing to Build newer versions of .mxml files !!!

2006-10-25 Thread Tom Chiverton
On Wednesday 25 October 2006 06:45, Mike Crowe wrote: Is nobody else having this issue? This is happening almost every build for me, and it's driving me crazy. I'm getting sick of recreating a project, just to compile. And there's another reason to just use mxmlc yourself. -- Tom Chiverton

RE: [flexcoders] update an itemrenderer from outside

2006-10-25 Thread Jesús Iglesias
Hi and thanks Igor. I think I haven't understand what you said. outerDocument is used inside the itemRenderer, but what I want to do is just the opposite, in the main app update the renderer "value". I update the data provider and when I do that I need the numericstepper to be updated

Re: [flexcoders] Re: remote object help

2006-10-25 Thread golamudi ramana
hai doug, i have changed the dataprovider property as u have mentioned but i have got the same problem again. Ramana - Original Message From: Doug Lowder [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Wednesday, October 25, 2006 2:45:25 AMSubject: [flexcoders] Re: remote object

Re: [flexcoders] pseudo clipping

2006-10-25 Thread Daniel Freiman
What I'm trying to do is visually gray out part of a UIComponent that is outside the bounds of it's parent Container, and only the part of the UIComponent that is outside those bounds. The rest of the UIComponent is unaltered. So hiding the children won't work as a solution. But thanks for the

[flexcoders] FireFox popup blocker bug with navigateToURL

2006-10-25 Thread pl_colby
Hi all, I'm expreiencing a strange bug with FireFox... I have a click handler that contains only the following line of code: navigateToURL(new URLRequest(home.shtml)); Now, it works perfectly in both IE and FF when run locally, but once uploaded and viewed from the webserver (Apache2) FireFox

[flexcoders] How do I make the chart legend wrap?

2006-10-25 Thread Daniel Tuppeny
Im having trouble getting my legend to wrap. I want it to scroll vertically, but not horizontally. Cod elooks like this: mx:Canvas width=172 height=230 x=188 y=10 mx:Legend dataProvider={myChart} width=100 /mx:Legend /mx:Canvas Ive tried everything, scrolling policies on the

Re: [flexcoders] Flex for mac public beta is out!

2006-10-25 Thread Stefan Ernst
Awesome! Now it'd be interesting to know if I'm going to be able to use my Windows license for the mac version later. :p Cheers, Stefan. Flexbuilder for the mac beta is out!!! http://labs.adobe.com/technologies/flexbuilder2/ -- Flexcoders Mailing List FAQ:

[flexcoders] BitDefender does not like Flex AMF3 remoting

2006-10-25 Thread Benoit Hediard
FYI, it looks like the latest release of BitDefender (www.bitdefender.com)does not like AMF3 remoting by default. Pretty annoying if firewalls start to block Flex/Flash Remoting capabilities... I've not been able to reproduce the problem but it was reported by one of our user, after an

[flexcoders] Why doesn't the object assignment work.

2006-10-25 Thread boy_trike
code snippet private function nextProspectResults(event: ResultEvent) : void { model.currentProspect = new Prospect( event.result ); model.currentProspect.sicCode = event.result.sicCode;

Re: [flexcoders] Google Flex Development Search Engine

2006-10-25 Thread Tom Chiverton
On Tuesday 24 October 2006 14:28, Jamie O wrote: you setup a unique list of websites you want search results to be pulled from. I've created a new one focused on Flex 2, Cairngorm and It is rather good, isn't it :-) Took 5 minutes to make one where a search for 'internet explorer' returned

[flexcoders] HTTPService url problem

2006-10-25 Thread jbbec_fr
Hi all, I am a newbie in flex and i apologize if my posts seem tobe dummies one... I want to populate a datagrid and i use HTTPService to do it. The url parameter is like this : url=http://testdrive.local.net/cgi-bin/get_warnings_data.cgi? code=MApcode=TO when i save the file i get an error : The

[flexcoders] Flex for mac public beta install error

2006-10-25 Thread John Kirby
Title: quote Anyone else getting the error that the installer can't install in the Application folder because of permissions? The installer should prompt you for user/password (like a regular install)? .j Stefan Ernst said the following: Awesome! Now it'd be interesting to know

Re: [flexcoders] Flex for mac public beta is out!

2006-10-25 Thread John Kirby
Title: quote Thank God! Now I can develop on my Mac. Ditto on the license transfer... I hope so :-) .j Stefan Ernst said the following: Awesome! Now it'd be interesting to know if I'm going to be able to use my Windows license for the mac version later. :p Cheers, Stefan.

Re: [flexcoders] HTTPService url problem

2006-10-25 Thread Prakaz
try this: mx:HTTPService id=myservice url=""> http://testdrive.local.net/cgi-bin/get_warnings_data.cgi showBusyCursor=true useProxy=false method=POST result=loginSuccessHandler(); fault=loginErrorHandler(); /public function callService():void{ var objParameters:Object=new Object();// Collect

[flexcoders] FlexBuilder 2.0 - null pointer exception when you try to create a new project

2006-10-25 Thread Libby
This is happening to multiple developers when they try to create a new Flex Project on the shared server. Flex Builder takes you thru the entire dialog, then when you click OK, churns for a minute, then pops up a message - Failed to create project and in the details it helpfully says

[flexcoders] A file found in a source-path must have the same package structure

2006-10-25 Thread Libby
I am attempting to migrate a very big Flex 1.5 project and this is one of the issues I am hitting. I have stripped out all of the files in the package, and all of the code in the offending file, but still get this message. I can only assume that I am not understanding what package structure

RE: [flexcoders] HTTPService url problem

2006-10-25 Thread Dirk Eismann
use amp; instead of in the URL (you have to escape this character in MXML) Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jbbec_fr Sent: Wednesday, October 25, 2006 3:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] custom preloaders question

2006-10-25 Thread bhaq1972
hi everyone. in my test app i have a custom preloader defined. mx:Application preloader=CustomPreloader how do i get a reference to this CustomPreloader. mx:Application preloader=CustomPreloader initialize=trace (preloader) preloader is defined as null. any ideas. -- Flexcoders

Re: [flexcoders] A file found in a source-path must have the same package structure

2006-10-25 Thread Owen van Dijk
Hi Libby,Although in a different context i ran into the same 'bug' today. I found out that when i called mxmlc from within Ant it had problems compiling my source-code. After a bit of Googling i learned that it requires a lowercase disk letter ( ie c:\Program Files instead of C:\Program Files

Re: [flexcoders] A file found in a source-path must have the same package structure

2006-10-25 Thread Hasan Otuome
I always took that to mean that one of my files, myClass.as for example: class org.thesourcecode.utils.myClass{ public function myClass(){} } } wasn't converted to the new structure: package org.thesourcecode.utils { public class myClass{ public function myClass(){} } } P E A C E

[flexcoders] FlashPaper in SWFLoader

2006-10-25 Thread Nick Collins
I'm having problems loading a FlashPaper document into a SWFLoader. It loads just fine, but the scaling isn't as I'd like it. Instead of scaling like it does when you load it into a browser window, where the controls stay the same height and just the viewing area scales, the FlashPaper

[flexcoders] Methods in ModelLocator - or not?

2006-10-25 Thread Samúel Jónasson
Hi, what is the recommended way when many commands need to do perform the same action on a model. - Do I write the methods in my model? - Do I make special commands for this? If so, how would I call these commands from other commands? - Do I do this some other way? In my case the model is a

[flexcoders] Re: Flex 2 calendar framework announced

2006-10-25 Thread maunger
Yea, thanks for rubbing it in ;) I've been to the last 4, yet this year my 'new' boss (i've had 5 in the last 4 years heehee) said that we didn't have the budget for it - but if i put it in my 'goals' for next year i should get to go. But management gets to travel whenever they want - it isn't

[flexcoders] A DataGrid with selectable *cells*

2006-10-25 Thread Tom Chiverton
Has anyone else already got a DataGrid component that high lights cells when you click on them, before I go reinventing the wheel ? -- Tom Chiverton Helping to greatly entrench out-of-the-box patterns This email is sent for and on behalf of

Re: [flexcoders] custom preloaders question

2006-10-25 Thread Tom Chiverton
On Wednesday 25 October 2006 16:10, bhaq1972 wrote: mx:Application preloader=CustomPreloader initialize=trace (preloader) I would guess this is because the preloader runs before the application. -- Tom Chiverton Helping to interactively unleash sexy IPOs

Re: [flexcoders] General question about bindings and similarities with Cocoa bindings?

2006-10-25 Thread Owen van Dijk
On 10/11/06, Matt Chotin [EMAIL PROTECTED] wrote: When you dispatch the myEventName event it indicates that the variable that had the [Bindable("myEventName")] metadata has been re-assigned. So it is not the invoice object that dispatches that event,

[flexcoders] Re: remote object help

2006-10-25 Thread Doug Lowder
In ViewuserVO.java, make sure you have cname and email declared public String. If they aren't declared public, those properties of the Java class won't be visible to Flex. --- In flexcoders@yahoogroups.com, golamudi ramana [EMAIL PROTECTED] wrote: hai doug, i have changed the dataprovider

[flexcoders] Re: A file found in a source-path must have the same package structure

2006-10-25 Thread Libby
Yeah, me too. I have confirmed (about 10 times) that everything has been converted... -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your

Re: [flexcoders] A DataGrid with selectable *cells*

2006-10-25 Thread Mark McCray
Isn't this the default behaviour of the datagrid?On Oct 25, 2006, at 11:53 AM, Tom Chiverton wrote:Has anyone else already got a DataGrid component that high lights cells when you click on them, before I go reinventing the wheel ?-- Tom ChivertonHelping to greatly entrench out-of-the-box

[flexcoders] three and a half FlexBuilder bugs that drive me buggy

2006-10-25 Thread Pan Troglodytes
Okay, I have to mention this before all hope is lost of getting it fixed in the next patch. I keep putting it off and putting it off.First:Occasionally, when I'm holding down shift and using the up/down arrow keys to highlight blocks of text, FB loses the first line of text. I might have:

[flexcoders] Re: Flex 2 calendar framework announced

2006-10-25 Thread maunger
Thanks Tom, that indeed is awesome! Can't wait to get my hands into this. Mitch --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 24 October 2006 19:10, maunger wrote: I haven't had much time to look thru it yet, but I was hoping for some kind of 'month

Re: [flexcoders] FlashPaper in SWFLoader

2006-10-25 Thread Darron J. Schall
If you're using Flex 1.5, use the FlashPaperLoader class from Matt Chotin: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=117 If you're using Flex 2, it's a lot trickier. Normally, you resize the FlashPaper.swf by using the FlashPaper API [1], and just calling the

[flexcoders] Re: Methods in ModelLocator - or not?

2006-10-25 Thread jamesdustinmercer
I don't see anything wrong with the approach you are taking. I do the same thing (that's probably why I don't see anything wrong with it :). I think of it this way, if the methods you need to add directly correspond with the data, and they are ambiguous of any commands or other business

Re: [flexcoders] three and a half FlexBuilder bugs that drive me buggy

2006-10-25 Thread Nick Collins
I have also noticed occassionally the cursor tends to jump when I'm typing. Like I'll click into one tag, and begin to type an attribute or something, and in mid-type the cursor will sometimes jump up or down several lines, putting the rest of what I'm typing at that new location. On 10/25/06,

[flexcoders] Re: proxy servlet reuse for flex 2?

2006-10-25 Thread tinkiknit
Been offline for a few days... Is it possible to use a Flash Player proxy to do the same thing? Reason I ask is that we are concerned about cost of the FDS if all we need it for is the proxy capability... (Please pardon my ignorance of this subject since I'm a basic newbie) Thanks! Christine

[flexcoders] Binding the backgroundColor of a DataGridColumn

2006-10-25 Thread Alexander Lamb
Hello list,Here is a wonderfull small datagrid:mx:DataGrid id="dg" dataProvider="{patients}" x="283" y="104" editable="false" mx:columns mx:DataGridColumn headerText="Last name" dataField="lastName"/ mx:DataGridColumn headerText="First name" dataField="firstName"/ mx:DataGridColumn

Re: [flexcoders] Re: Methods in ModelLocator - or not?

2006-10-25 Thread Samúel Jónasson
Thank you for your responses. I had thought about utility classes - just wasn't sure how that fitted within cairngorm. I think both methods make sense but using utility classes probably fits cairngorm better than having methods inside the model. But, then again - do what works - even if it

Re: [flexcoders] Binding the backgroundColor of a DataGridColumn

2006-10-25 Thread Clint Tredway
You will need to extend the datagrid to do this.. The good thing is, someone has already done this, Mike Nimer.http://www.mikenimer.com/index.cfm/2006/10/3/BackgroundRowColor-DataGrid-component I have used this and it works great.On 10/25/06, Alexander Lamb [EMAIL PROTECTED] wrote:

[flexcoders] Re: Flex for mac public beta install error

2006-10-25 Thread jrunrandy
It may not be the same thing, but... Are you getting this error as part of the Flex Builder install or the Flash Player Plugin install? When I installed, the Flex Builder install works fine, but I get an Access Error at the very end of the Flash Player Plugin install. Flex Builder and the

[flexcoders] Help understanding AMF vs Socket?

2006-10-25 Thread Rick Schmitty
What is the difference between AMF and Socket connections? Is AMF itself a socket connection that does the serialization of webservices on a 'standard' port? Is there constant chatter over the line when using AMF or socket? By chatter I mean, does the server and client continually check that

RE: [flexcoders] Help understanding AMF vs Socket?

2006-10-25 Thread Peter Farland
AMF is a format for serializing ActionScript objects in a compact binary form - it is used in a number of places in the Flash Player. It is not, in itself, an API that makes connections but rather something thatcan beused over connections to represent data. For example,

[flexcoders] Problem with Filereference.download

2006-10-25 Thread damien.cardine
Hi, I'm trying to download a file on webdav from a flex application. But many path containt some escapable characters like é (%e9). Majority of escapable characters are well interpreted by the function download but not all. All files with simple paths (simple characters and spaces) are donwload

[flexcoders] Re: HTTPService url problem

2006-10-25 Thread jbbec_fr
thank you for your help !! JB :-) --- In flexcoders@yahoogroups.com, Prakaz [EMAIL PROTECTED] wrote: try this: mx:HTTPService id=myservice url=http://testdrive.local.net/cgi-bin/get_warnings_data.cgi; showBusyCursor=true useProxy=false method=POST

Re: [flexcoders] Help understanding AMF vs Socket?

2006-10-25 Thread Rick Schmitty
Thank you very much for that response, Peter!On 10/25/06, Peter Farland [EMAIL PROTECTED] wrote: AMF is a format for serializing ActionScript objects in a compact binary form - it is used in a number of places in the Flash Player. It is not, in itself, an

Re: [flexcoders] Re: Flex for mac public beta install error

2006-10-25 Thread John Kirby
Title: quote No on the install. If you look at a typical mac install ... like a package install... if the installing application needs write permissions to the Application folder you get prompted with a dialog box to enter user/password. On the install program it tells you don't have

[flexcoders] AS2 XML to Value Object decoder

2006-10-25 Thread Valy Sivec
Hello,Is there any xml decoder that will help me translate a XML document to a value object in AS3? other than manually transfering XML elements to the VO?.Thanks,Valy Stay in the know. Pulse on the new Yahoo.com. Check it out. __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Cairngorm, dispatching application events and managing states

2006-10-25 Thread Derrick Grigg
Here's a question for any Cairngorm devotees to weigh in on. I have an application that has many seperate parts that function independently of each other. Each part uses the centralized Cairngorm fare (FrontController, ModelLocator, Commands etc). For most parts using the ModelLocator and bound

Re: [flexcoders] FlashPaper in SWFLoader

2006-10-25 Thread Nick Collins
Yeah, I did something similar to that but ran into problems with it loading multiple instances of that flashpaper loader swf where it kinda crapped out, so I was looking for a way to just load in the Flashpaper swfs (cfreport generated) directly. On 10/25/06, Darron J. Schall [EMAIL PROTECTED]

[flexcoders] Re: IE Only: Error #2032 (Flex 2.0)

2006-10-25 Thread zenwarden
I think you may be wrong about the problem. I have now confirmed that am able to get back content that has an Expires: 0 header. I think the Content-Encoding: gzip is the problem. Not the header, but the actual encoding itself. I have seen several reports of this on the web. see:

[flexcoders] Re: IE Only: Error #2032 (Flex 2.0)

2006-10-25 Thread zenwarden
I have now confirmed that (in my case at least) gzip encoding was the problem NOT Expires: 0. I have a working example with the following header information: HTTP/1.0 200 OK Server: httpd/1.00 Cache-Control: no-cache Expires: 0 Content-Type: text/xml which worked. the original response which

[flexcoders] Cairngorm / Webservice / E4X XML Output

2006-10-25 Thread Jamie O
I've tried pretty much every sample I can find out there on the interweb and just can't seem to get things to play nice with my web service to allow me to get at individual nodes / elements using E4X. If anyone can suggest something, it would be REALLY appreciated. I've got: -an event

RE: [flexcoders] Cairngorm, dispatching application events and managing states

2006-10-25 Thread Dustin Mercer
Out of curiosity, what is it you want to do when the login happens. I have only found a few things that were difficult to do from within a command. If you can tell me what you want to do, I can tell you what I have done in the past and how I accomplished it from within a command. In my

Re: [flexcoders] FlashPaper in SWFLoader

2006-10-25 Thread Darron J. Schall
The solution I used was to just create a unique id when you want to load a FlashPaper.swf, and pass that value to the loader. The AVM1/AVM2 communication channels then use that specific id so that you can load multiple isntances of them without interfering with each other. As and aside, we're

[flexcoders] sort TileList or Tile/Repeater, with animation?

2006-10-25 Thread jmcmahon89
I've got to believe there's an easier way to do this than the reams of code in the Adobe Store sample. I just want to be able to sort or filter the contents of either a TileList or a Tile with a Repeater, and have the tiles slide around using the Move effect. I can sort the ArrayCollection

[flexcoders] Re: FlexBuilder refusing to Build newer versions of .mxml files !!!

2006-10-25 Thread Bill Long
i've done the same things more than i wish to recount. my hack was to blow away the .metadata file in the workspace which forces flex to rebuild the ws; then, create another project and import the mxml i was working on. i think it's a good idea to turn off the save automatically feature and

Re: [flexcoders] Re: bug in the XMLListCollection ?

2006-10-25 Thread Luis Eduardo
thx for your answer Bela! i found the error and you are rigth about this isnt be a bug. in the init() function of my mxml i put a code like this: XMLLC = new XMLListCollection( new XMLList( one xml here ) ) but i couldn't realize that this would override the XMLListCollection

[flexcoders] what is valid event type for image load monitoring

2006-10-25 Thread Robert Was
Code in my component: ... image=new Image() addChild(image) image.addEventListener(Event.COMPLETE ,evImageLoadComplete) image.source=image.jpg ... private function evImageLoadComplete(e:Event):void{ -breakpoint there } Debugger tell me that image width=0, is any other event

Re: [flexcoders] += operator is changing the encodings

2006-10-25 Thread Luis Eduardo
Igor, thx for your answer, but i think something isnt clear... my problem is on the += operator in this line of code: xgravar.root.request += XMLLC; the XMLLC object is declared as: mx:XMLListCollection id=XMLLC

Re: [flexcoders] Flex for mac public beta install error

2006-10-25 Thread Stefan Ernst
It did ask me for the password and installed just fine. Anyone else getting the error that the installer can't install in the Application folder because of permissions? The installer should prompt you for user/password (like a regular install)? -- Flexcoders Mailing List FAQ:

[flexcoders] datagrid checkboxes getting checked dynamically

2006-10-25 Thread Jack OMelia
Hi All, I have one column in a datagrid populated with checkboxes. The checkboxes are part of a dataGridCell itemRenderer called checkBoxRendererSummary: mx:Component id=checkBoxRendererSummary mx:VBox horizontalAlign=center paddingLeft=10 mx:CheckBox id=ckBoxBusCharge

Re: [flexcoders] Binding the backgroundColor of a DataGridColumn

2006-10-25 Thread Luis Eduardo
i wonder why this why i need to extend my datagrid to make this functionality to work. so many people asks for this... it appear to be so obvious that people would need it. will adobe make this issue on the next patch for flex 2.0 ? (is there some place that we can asks for this?)

[flexcoders] Re: HTTPService url problem

2006-10-25 Thread maunger
Is it ok if I sorta hijack this thread a tiny bit? I'm wanting to access data on a website that requires that I log in... (this is just one of many...) http://www.stockxpert.com/index.phtml i cannot figure out how to get their site to let me log in. It has the standard username and password

[flexcoders] Re: Cairngorm / Webservice / E4X XML Output

2006-10-25 Thread ben.clinkinbeard
Does the Alert.show(postcodeXML) display the xml and you're just not able to get nodes within it? Does the returned xml contain namespaces? If you can post the resulting xml and the code you're using to try and access individual nodes it will be easier to diagnose your issue. Ben --- In

Re: [flexcoders] Binding the backgroundColor of a DataGridColumn

2006-10-25 Thread Pan Troglodytes
Looking at what you're doing, you may also find Tim Hoff's excellent RowColorDataGrid useful.http://www.cflex.net/showFileDetails.cfm?ObjectID=487Object=FileChannelID=1 On 10/25/06, Clint Tredway [EMAIL PROTECTED] wrote: You will need to extend the datagrid to do this.. The good thing is,

[flexcoders] Re: datagrid checkboxes getting checked dynamically

2006-10-25 Thread ben.clinkinbeard
Is it because the checkbox is expecting a Boolean and getting text? That would be my guess. What does it do if you change the code to: mx:CheckBox id=ckBoxBusCharge selected='{data.cdrBusinessCharge == true}' / ? --- In flexcoders@yahoogroups.com, Jack OMelia [EMAIL PROTECTED] wrote: Hi All,

RE: [flexcoders] datagrid checkboxes getting checked dynamically

2006-10-25 Thread Iko Knyphausen
Try the outerDocument prefix in you databinding...this may be a scope issue -Iko Hi All, I have one column in a datagrid populated with checkboxes. The checkboxes are part of a dataGridCell itemRenderer called checkBoxRendererSummary: mx:Component id=checkBoxRendererSummary

RE: [flexcoders] Why doesn't the object assignment work.

2006-10-25 Thread Gordon Smith
To answer that for sure, we'd have to see the code for your Prospect class. Did you write code to set these three properties, either in the var declaration (e.g., var sicCode:int = 3) or in the constructor? Have you stepped through the constructor? - Gordon From:

Re: [flexcoders] Binding the backgroundColor of a DataGridColumn

2006-10-25 Thread Clint Tredway
this basically does the same thing as Mike Nimers code. I am not sure why Adobe didnt make this do able by default, but its do able with the code above.On 10/25/06, Pan Troglodytes [EMAIL PROTECTED] wrote: Looking at what you're doing, you may also find Tim

[flexcoders] Re: datagrid checkboxes getting checked dynamically

2006-10-25 Thread Jack OMelia
That did the trick! Many thanks! I knew there must be a way to give the checkbox the boolean data but couldn't see it. Thanks again. Is it because the checkbox is expecting a Boolean and getting text? That would be my guess. What does it do if you change the code to: mx:CheckBox

[flexcoders] Re: Cairngorm, dispatching application events and managing states

2006-10-25 Thread Derrick Grigg
The biggest things I need to do are update/change the state of views within the application. For instance, when a user has logged in certain buttons get enabled, or certain panels become visible that would not be so when the user is logged out. I was thinking along the lines of using Commands,

Re: [flexcoders] Re: FlexBuilder refusing to Build newer versions of .mxml files !!!

2006-10-25 Thread Luis Eduardo
FlexBuilder will not compile if there are, even a minimal error issue. to me ensure all compile is really made, i put a label with a number that i increase everytime i have some doubt about the compilation. []'s, Luís Eduardo. Tom Chiverton escreveu: On Wednesday 25

[flexcoders] DataService-ArrayCollectionissue

2006-10-25 Thread Dylan Schorer
Hi, When using an ArrayCollection populated using a DataService.fill command, the length and .itemAt methods behave differently than with a manually populated array. When I call ds.fill on an ArrayCollection, the data is successfully retrieved, and can be displayed in a data grid. Though, if I

  1   2   >