Re: [flexcoders] My website Project

2008-02-17 Thread yiğit boyar
you need to compile pages with to seperate swf files and use the Loader class to load them. don't include them in the main swf! On Feb 17, 2008 9:17 AM, bornaeon [EMAIL PROTECTED] wrote: Hi all. how do you do? I'm working on my personal website, and that's a full Flex website. I have a

Re: [flexcoders] My website Project

2008-02-17 Thread Jehanzeb Musani
Hello, You can use the following two options to load rest of the features of your application. 1. Modules 2. RSL (Runtime Shared Libraries) Both of the aforementioned techniques will load the components only when they are used instead of loading them on main application initialization.

Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-17 Thread Eduardo Dias
Ok, and what about converting a Flex chart into a JPG or other image? Does ALDS do that too? Or, some other Adobe tool? On Feb 17, 2008 3:03 AM, Andrew D. Goodfellow [EMAIL PROTECTED] wrote: We used the AlivePDF library on one of our client projects to generate PDF reports. I was very happy

[flexcoders] Web services problems

2008-02-17 Thread Josh McDonald
Hi guys, What on earth does this mean: [RPC Fault faultString=Cannot resolve element definition for name 'urn: www.sgintl.biz:schemas:disposals:v0::disposableVehicle' faultCode=DecodingError faultDetail=null] I've been racking my brains trying to sort it out for a couple of days now. Any

RE: [flexcoders] How do i get rid of the white box?

2008-02-17 Thread Brad Bueche
Well really I think the problem could be solved (1 way anyway) by just telling it not to move to the next view (viewstack) until my initDataDrovider function finishes. Is there a way to do this? I'm not used to things operating in parallel. I need the program to wait until the dataprovider

RE: [flexcoders] Prohibiting Old Chart from Displaying while new Chart renders

2008-02-17 Thread Brad Bueche
Well really I think the problem could be solved (1 way anyway) by just telling it not to move to the next view (viewstack) until my initDataDrovider function finishes. Is there a way to do this? I'm not used to things operating in parallel. I need the program to wait until the dataprovider

RE: [flexcoders] How do i get rid of the white box?

2008-02-17 Thread Brad Bueche
Sorry, responded on the wrong thread. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brad Bueche Sent: Sunday, February 17, 2008 8:36 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] How do i get rid of the white box? Well

[flexcoders] Re: Key Down event lost after add a child component

2008-02-17 Thread xmwang1982
hi all, thank you guys so much... it works! --- In flexcoders@yahoogroups.com, maunger [EMAIL PROTECTED] wrote: Like Dan said, you gotta get focus back! you can do something like stage.focus = this; or stage.focus = Application.application.someobjectname; // if you want to point

Re: [flexcoders] How do i get rid of the white box?

2008-02-17 Thread Sherif Abdou
well it is a protected variable so you need to extend whatever componenet your working on, you can just remove it in validateDisplayList or just remove it totally override public function validateDisplayList():void{ super.validateDisplayList(); //we really dont need to be running this everytime

[flexcoders] override not overriding????

2008-02-17 Thread dbronk
I have a class hierarchy of classes as follows: MyBaseTextInput extends TextInput { override public function set text(value:String):void { // my base code here } } MySpecialTextInput extends MyBaseTextInput { override public function set text(value:String):void { // my special code here } }

Re: [flexcoders] override not overriding????

2008-02-17 Thread Sherif Abdou
try overriding the getter too - Original Message From: dbronk [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, February 17, 2008 9:59:56 AM Subject: [flexcoders] override not overriding I have a class hierarchy of classes as follows: MyBaseTextInput extends TextInput

Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-17 Thread simonjpalmer
we convert to a png using this... http://www.kaourantin.net/2005/10/png-encoder-in-as3.html --- In flexcoders@yahoogroups.com, Eduardo Dias [EMAIL PROTECTED] wrote: Ok, and what about converting a Flex chart into a JPG or other image? Does ALDS do that too? Or, some other Adobe tool? On Feb

Re: [flexcoders] changing an Hbox

2008-02-17 Thread Scott Melby
Have you tried the paddingBottom style http://livedocs.adobe.com/labs/flex3/langref/mx/containers/Box.html#style:paddingBottom? You would set this programmatically using the setStyle() method. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com [EMAIL

[flexcoders] changing an Hbox

2008-02-17 Thread [EMAIL PROTECTED]
I am creating HBoxes with actionscript, based on XML content. I want to give them bottom margins. How do I do that?

Re: [flexcoders] Prohibiting Old Chart from Displaying while new Chart renders

2008-02-17 Thread Stephen Allison
On 16 Feb 2008, at 21:12, Brad Bueche wrote: I have a chart that, at year level, allows users to drill down into individual months. The problem is that if the user drills down into march, then comes back up to the year level (via viewstack bread-crumb trail button), and then drills

Re: AW: [flexcoders] Rich Text Editor

2008-02-17 Thread Weyert de Boer
Easiest way is just to use a dynamic text field and make your own editor.

Re: [flexcoders] changing an Hbox

2008-02-17 Thread [EMAIL PROTECTED]
Yes I've tried that. It doesn't work. gridItem = new HBox( ); gridItem.setStyle(paddingBottom, 20); Scott Melby wrote: Have you tried the paddingBottom style http://livedocs.adobe.com/labs/flex3/langref/mx/containers/Box.html#style:paddingBottom? You would set this programmatically

RE: [flexcoders] Prohibiting Old Chart from Displaying while new Chart renders

2008-02-17 Thread Randy Martin
Put a progress bar in a model popup window when you call the data provider routine. Add a listener for the result event from the data provider routine, and take the model popup down when you finish processing the result from your data provider. ~randy _ From:

[flexcoders] 1)detecting that model changed in custom component, 2)setting HTTP connection

2008-02-17 Thread kamiseq
hej. im developing gui based on flex3+cairngorm lib+tomcat6 as a backend. now I have two issues 1)let say I made custom component which is extending panel (canvas whatever), it contains [Bindable] public variable called model. model is assigned to every textInput in that component. so when

[flexcoders] Accessing Multi Dimensional Array Collection Data in a DataGrid

2008-02-17 Thread michaelisraelcaplan
Hi there, Probably a rather straightforward solution that I am just overlooking. I have an array collection that is acting as the data provider for a datagrid. I have mapped out all the columns between the array collection and the data grid with the DataGridColumn element. However, my array

Re: [flexcoders] changing an Hbox

2008-02-17 Thread Scott Melby
Hmmm... well that is how I always do it. To be clear, what that should set is the amount of space inside the HBox (at the bootm) that will be left empty (below any children that are added in there). Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com [EMAIL

[flexcoders] Re: override not overriding????

2008-02-17 Thread dbronk
Didn't realize that was important information. I am overriding the getter also. Just didn't show it in my post. Thanks, Dale --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: try overriding the getter too - Original Message From: dbronk [EMAIL PROTECTED]

Re: AW: [flexcoders] Rich Text Editor

2008-02-17 Thread EECOLOR
A response I got from the Buzzword team: Thanks for your feedback, and your focus on making Flex an even better platform for developing rich Internet applications. We have often heard the request for a rich editing component in Flex - it certainly would have made the Buzzword development task

Re: AW: [flexcoders] Rich Text Editor

2008-02-17 Thread Weyert de Boer
If you start with a simple one-line editor without rich. You can do this: 1. create text field instance (set dynamic, disable selectable, editable) 2. create your own caret cursor (simple drawing api) 3. create your own canvas instance (for the selection rectangle) 4. catch the

[flexcoders] Re: Error tooltip

2008-02-17 Thread aceoohay
OK, it was 4 in the morning when I wrote this, let me try to be a bit more coherent. I have created an extended version of the TextInput class that does data validation, etc. When my code determines that there is invalid data, I create an errorString. This will of course cause the error

[flexcoders] Extending DateField...

2008-02-17 Thread aceoohay
I have extended the TextInput class. Some of the features I have added include data validation, of which date validation is one. In some cases I would like to use the DateField to get dates. I always make the date field editable, I would like to reuse my extended TextInput component by having

[flexcoders] Best Practice to override Styles?

2008-02-17 Thread Sherif Abdou
I am extending a comboBox and i need to set my own styles in it like arrowButtonWidth to 0, where is the best place to do that? Constructor? Be a better friend, newshound, and know-it-all with Yahoo!

[flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread Josh McDonald
Hi Guys, Is there something good out there I can use to view the raw XML request/response data going to and from the server when making SOAP calls? A vcr proxy? An option in the debugger I don't know about? -Josh -- Therefore, send not to know For whom the bell tolls, It tolls for thee. ::

Re: [flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread Phil Krasko
Firebug plugin for firefox or wireshark. Both are free Sent via BlackBerry from T-Mobile -Original Message- From: Josh McDonald [EMAIL PROTECTED] Date: Mon, 18 Feb 2008 10:13:28 To:flexcoders@yahoogroups.com flexcoders@yahoogroups.com Subject: [flexcoders] Tools to monitor flex network

Re: [flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread Jeff Tapper
while not free, I've found service capture to be incredibly valuable. At 07:20 PM 2/17/2008, you wrote: Firebug plugin for firefox or wireshark. Both are free Sent via BlackBerry from T-Mobile -Original Message- From: Josh McDonald [EMAIL PROTECTED] Date: Mon, 18 Feb 2008 10:13:28

Re: [flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread Josh McDonald
Firebug isn't working, it gives me nothing for the requests, and somehow shows me html invokers instead of the response. I managed to get a proxy named Charles working and it shows the conversation pretty well and can also interpret soap request / reponse data which is kinda nice. -JH On Feb 18,

Re: [flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread Phil Krasko
It works. I think you need to be on the console tab. Sent via BlackBerry from T-Mobile -Original Message- From: Josh McDonald [EMAIL PROTECTED] Date: Mon, 18 Feb 2008 10:47:30 To:flexcoders@yahoogroups.com Subject: Re: [flexcoders] Tools to monitor flex network traffic for debugging

Re: [flexcoders] Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread Josh McDonald
I'm sure it usally works, it just wasn't working for me :) It was updating and such, just giving me an empty box in the request tab, and something completely different in the response tab. On Feb 18, 2008 11:02 AM, Phil Krasko [EMAIL PROTECTED] wrote: It works. I think you need to be on the

[flexcoders] Re: Tree Branch???

2008-02-17 Thread Rafael Faria
actually you can define a function to labelFunction. Check http://blog.flexexamples.com/2007/10/29/defining-a-custom-label-function-on-a-flex-tree-control/ raf --- In flexcoders@yahoogroups.com, xmwang1982 [EMAIL PROTECTED] wrote: Hi experts, Can we determine the isBranch property of a

[flexcoders] Re: Tree nodes expansion

2008-02-17 Thread Rafael Faria
Try TreeForm.updateList(); Raf --- In flexcoders@yahoogroups.com, Tom Preet [EMAIL PROTECTED] wrote: Hi All, In my application am using Tree with nodes when I click on the node it was displaying the alert, but when I selected the first node the related page was displaying, next time

[flexcoders] Re: resizing children of hdividedbox

2008-02-17 Thread callistachan
hi, anyone? :( it would help to know that if i have to listen to an event, which one and where... or something... anything... again, thanks... --- In flexcoders@yahoogroups.com, Lee [EMAIL PROTECTED] wrote: hi, i couldn't do that because the added component had computations and if i used

Re: [flexcoders] Re: resizing children of hdividedbox

2008-02-17 Thread Sherif Abdou
try FlexEvent.UPDATE_COMPLETE - Original Message From: callistachan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, February 17, 2008 9:09:38 PM Subject: [flexcoders] Re: resizing children of hdividedbox hi, anyone? :( it would help to know that if i have to listen to an

[flexcoders] Extending Tree component

2008-02-17 Thread Rafael Faria
I'm extending the Tree component and i have had some great progress with it. Somethings still bug me like the place you will drop the item. Whenever you drag an item, a thick black line show marking where will be drop it. The thing is, sometimes i'm positioning the element over the element i want

Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-17 Thread Andrew D. Goodfellow
No, I don't think so. Use the AS3 Core Libraries for that. http://code.google.com/p/as3corelib/ On Feb 17, 2008 7:01 AM, Eduardo Dias [EMAIL PROTECTED] wrote: Ok, and what about converting a Flex chart into a JPG or other image? Does ALDS do that too? Or, some other Adobe tool? On Feb 17,

Re: [flexcoders] Re: resizing children of hdividedbox

2008-02-17 Thread Sherif Abdou
call the validationMethods when that happens, and you shouldnt use width and height if we keep assigning just use setActualSize - Original Message From: Lee [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, February 17, 2008 9:23:50 PM Subject: Re: [flexcoders] Re:

Re: [flexcoders] Re: resizing children of hdividedbox

2008-02-17 Thread Lee
hi, i remember that i tried using that but i can't seem to get the children (the components, that is) to get the dimensions of the parent... more like, i do get to reassign the width and height of the parent but the UI doesn't refresh to show the new dimensions... reminds me of caching for some

Re: [flexcoders] Re: resizing children of hdividedbox

2008-02-17 Thread Lee
ok thanks :) i will try that May God bless! Kiwotsukete ^^x Lee -- Y!M : callistachan Blog: http://callie16.livejournal.com Multiply: http://callie16.multiply.com - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 18,

[flexcoders] Re: Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread aceoohay
I do not do Soap, I use FluorineFX, but my tool of choice is fiddler. You can get here; http://www.fiddlertool.com/fiddler/ It has the added benefit of being free. Paul --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Hi Guys, Is there something good out there I

Re: [flexcoders] Re: Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread Josh McDonald
Free is good, thanks for the tip. My problem turned out to be Hotfix 3 (or 2), which apparently contains a new RPC engine that doens't actually work ;-) -J On Feb 18, 2008 2:01 PM, aceoohay [EMAIL PROTECTED] wrote: I do not do Soap, I use FluorineFX, but my tool of choice is fiddler. You

[flexcoders] Re: textAlign attribute not accessible from TextInput extended class.

2008-02-17 Thread aceoohay
Jason: I don't think that would get me what I need. Unfortunately the thing I want to do is determine if the textAlign property was explicitly set in the mxml. If it is set in the mxml, I will leave it be, otherwise, I may change it. Thanks for the input though. Paul --- In

Re: [flexcoders] Re: Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread Josh McDonald
Hmm, I'm on Mac, so there'll be no fiddler for me :) On Feb 18, 2008 2:11 PM, Josh McDonald [EMAIL PROTECTED] wrote: Free is good, thanks for the tip. My problem turned out to be Hotfix 3 (or 2), which apparently contains a new RPC engine that doens't actually work ;-) -J On Feb 18,

Re: [flexcoders] Web services problems

2008-02-17 Thread Peter Connolly
I've had that before. It's usually a misspelling between your WSDL and your Flex code.

[flexcoders] Re: [flexcomponents] simple renderer please help..........please review it

2008-02-17 Thread learner
thanks a ton Alex.. I don't see anything wrong with my avatarHolder's code.. still pasting the code here. Please see the code of my avatarHolder ..i think your thoughtful eyes can catch a loophole... I am just want my code to be seen by the experience ppl here.. as i don't have anything to

[flexcoders] flex + webservices

2008-02-17 Thread cool buddy
Hi all, Do we need to change any configuration in flex-config.xml file for consumption of web services. Thanks, DN Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now.

Re: [flexcoders] Web services problems

2008-02-17 Thread Josh McDonald
The problem was a bug (apparently fixed in some future version) in 2.0.1Hotfix 2 or 3, I rolled back to 2.0.1 hf 1 and it works. Here's hoping the fix made it into 3 ;-) -J On Feb 18, 2008 2:14 PM, Peter Connolly [EMAIL PROTECTED] wrote: I've had that before. It's usually a misspelling

[flexcoders] Re: [flexcomponents] simple renderer please help..........please review it

2008-02-17 Thread learner
Can you please also give me the link to the this template in doc?? Thanks Ps On Feb 16, 2008 12:11 AM, Alex Harui [EMAIL PROTECTED] wrote: Not bad for a first try. I would: 1) extend UIComponent instead of Canvas. You aren't using any of Canvas's features so you'll save on size and

Re: [flexcoders] Flex Book

2008-02-17 Thread Dan Vega
While I see your direction I am just not sure thats what I want to do. The xml needed is to display the 1st image and that needs to come from the xml file. Is that what my problem is? Is the component looking for values before they are available? It works using mx:XML/ and that makes sense since

[flexcoders] Flex3 REST API Connection

2008-02-17 Thread liquidr0b0t
Greetings flexcoders, this is my first post. I'm also trying to build my first Flex project, i'm no stranger to actionscript 3, but i don't have much experience working with REST based API's. I wanted to start simple, so i am trying to interact with the harvestapp api here:

Re: [flexcoders] Editable DataGrid - is there such as thing?

2008-02-17 Thread gongxian
Editing with a Datagrid A Flex 2 Remoting Tutorial: http://iummug.indiana.edu/docs/tutorials/tutorial1/ http://iummug.indiana.edu/docs/tutorials/tutorial1/ You've thrown down the gauntlet. Here's what I have. Try downloading and running the little example application in the zip file, I'm

Re: [flexcoders] OpenEJB - Geronimo - Jetty Confusion -- Please Help!!

2008-02-17 Thread [p e r c e p t i c o n]
Yusuf, I can't thank you enough for this...i'm trying it out now! p On Fri, Feb 15, 2008 at 8:37 PM, yusuf baker [EMAIL PROTECTED] wrote: Hi P I am using EJB in gernomimo2.2 with tomcat, lcds express The issues i encountered - flex.war was not deploying in Geronimo properly.

[flexcoders] how do I tell a MC to stop?

2008-02-17 Thread Radley
Hi, I'm loading a swf as a skin into Flex. Swf has animations (i.e. MovieClips) for each state. Animations were created using a timeline in something called Flash. At the end of the animation I used an antiquated and far-too-simple-to- leave-alone method formerly known as stop(); Flex

Re: [flexcoders] Re: Error tooltip

2008-02-17 Thread yangbo zhou
just simple,like this: if(vResult02.type==ValidationResultEvent.INVALID){ setValidationFocus(passwordL); } private function setValidationFocus(formObject:Object):void{ formObject.setFocus();

[flexcoders] Swfloader event

2008-02-17 Thread a.
So I'm using SWFloader to load a flash animation and I want to pass an event after its done playingis that possible? So it runs though its timeline, stops and tells Flex...Hey I'm done here. Possible?

[flexcoders] detecting that model changed in custom control and setting HTTP connection

2008-02-17 Thread kamis
hej. im developing gui based on flex3+cairngorm lib+tomcat6 as a backend. now I have two issue 1)let say I made custom component which is extending panel (canvas whatever), it contains [Bindable] public variable called model. model is assigned to every textInput in that component. so when

[flexcoders] How to go about LCDS

2008-02-17 Thread Gita K Chhatri
Hi all, I'am very new into flex and i need help from u all. I need some info on LCDS and SAP integration of RFCs to FLex builder thr' LCDS. Please send me some related docs or steps to do this. i have downloaded and installed LCDS, but dont know how to go about it. Can anyone please help.

[flexcoders] Flex Builder Code Assist not working properly

2008-02-17 Thread Radley
Hi all, Flex Builder's code assist has gone awry. Can only see data structures. No component hints, etc. For example, I can type mx: and see mx:Component, but I can't get mx:VBox when I type mx:V. Using Flex Builder 3, beta 3.477. Wondering if it's some key combo I accidently hit

[flexcoders] Change Flex Editor Font Size

2008-02-17 Thread Shaq
Does anyone know how to change the Flex editors font size. When I'm looking at the code I would like the font to be a little smaller so I can get more code on the screen. Any ideas?

RE: [flexcoders] headless mode

2008-02-17 Thread Tim Stewart
You can create and work with display objects, including Flex UIComponents, without adding them to the display list, so they are in memory only not on the screen. Or you can add them to the display but set visible=false. Cheers, Tim From:

[flexcoders] Re: Any way to version a swf with major and minor

2008-02-17 Thread cashshadow
Hey everyone, first post here. The other day I posted this to flashcoders, doesn't seem like too many were interested, so I'll try here: Ola, I thought some of you might be interested in this. Before starting a little Actionscript project in FB, I installed git, the newest craze in

Re: [flexcoders] Re: Tools to monitor flex network traffic for debugging SOAP calls and responses (kinda urgent)?

2008-02-17 Thread matthew
no fiddler, but you should be able to use charles: http://www.xk72.com/charles/ /matthew On Feb 17, 2008, at 11:12 PM, Josh McDonald wrote: Hmm, I'm on Mac, so there'll be no fiddler for me :) On Feb 18, 2008 2:11 PM, Josh McDonald [EMAIL PROTECTED] wrote: Free is good, thanks for the tip.

RE: [flexcoders] Accessing Multi Dimensional Array Collection Data in a DataGrid

2008-02-17 Thread Tim Stewart
Hi, I too was frustratetd by this. I think it ought to work in the way you've coded it. You can get it to work with labelFunction as follows, but its more long-winded. mx:DataGridColumn labelFunction=practiceName headerText=Practice / private function labelFunction (case : Object, column :

[flexcoders] Re: [flexcomponents] simple renderer please help..........please review it

2008-02-17 Thread learner
Can you please also give me the link to the this template in doc?? When I changed the code and made my itemrender to extend UIcomponent... its giving me error as : Type Coercion failed: cannot convert ms.messengermodule::[EMAIL PROTECTED] to mx.controls.listClasses.IListItemRenderer.

[flexcoders] RE: [flexcomponents] simple renderer please help..........please review it

2008-02-17 Thread Alex Harui
Sorry, don't have time to look it up right now, but you're probabl missing implements IListItemRenderer From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of learner Sent: Sunday, February 17, 2008 10:22 PM To: [EMAIL PROTECTED] Cc:

[flexcoders] Tools to monitor flex network traffic for debugging SOAP calls

2008-02-17 Thread Glenn Williams
Service Capture. http://kevinlangdon.com/serviceCapture/ it's a great little tool, and costs only around $30. You'll wonder how you ever managed with it. This is just a personal recommendation. Glenn image001.png