[flexcoders] Re: http request issue on linux

2009-12-29 Thread ynotob
I've traced this further and the problem is that the id property of the flex application is null on linux but populated on as expected on Windows and Mac. the actual code is slightly different to what I posted below. it should read: params.module = application.id The module parameter is the

Re: [flexcoders] IE6 + SSL + Flex

2009-12-29 Thread Guy Morton
Hi Julian There aren't any flaws in what I'm saying. You're not required to follow my advice, though. :-) People get told they need to upgrade or install new software all the time so I don't agree that this is a situation we have to mutely accept. IE is a crappy piece of software. It has been

Re: [Spam] RE: [Spam] RE: [flexcoders] Using Cairngorm and how to display a Popup from aCommand

2009-12-29 Thread Nick Middleweek
Hello, thanks for your reply... The event is being dispatched from a Command but I'm using HTTP Service and AsyncToken to call a Web Service. I think my problem would be getting the function ref from the delegate to the responder Command as they are de-linked if that makes sense... Cheers, Nick

[flexcoders] Re: rewriting a function using prototype?

2009-12-29 Thread mitchgrrt
I see. Thanks! - Mitch --- In flexcoders@yahoogroups.com, jamesfin james.alan.finni...@... wrote: I've used this in this pasta bit more verbose but does the trick. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] disable printing and copying of images in a adobe flex 3

2009-12-29 Thread AC
Hi, I want to make the website such that the print option is disabled and the the copy feature is as much as possible unavailable. How can i do this?

[flexcoders] SpringGraph EdgeLable

2009-12-29 Thread sudeshdas
Hello Friends, I am working with SpringGraph Component. I have to display EdgeLable for the graph. I have created the EdgeLable by using the interface IEdgeRenderer. But the problem is that EdgeLable are getting duplicated. can anyone help me to fix this problem. Thanks Sudesh

RE: [flexcoders] Re: constraintColumns/constraintRows on extended Sprite object REFdn6025643069

2009-12-29 Thread dennis
Hi again. I wrote the follow (as you did the same). var aPanel:Panel = new Panel(); aPanel.width=100;aPanel.height=50; aPanel.setStyle(bottom,30); aPanel.setStyle(right,30); addChild(aPanel); but the panel is not anchored. What it is wrong here? Please

Re: [Spam] [flexcoders] Re: remove expand option from tree node?

2009-12-29 Thread Nick Middleweek
Excellent find, I needed this as well... :) 2009/12/29 MicC chigwel...@yahoo.com got it! Embedded isBranch=false into the xml very cool. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, MicC chigwel...@... wrote: The xml file on which the tree is based goes many

[flexcoders] Network Topology Diagrams

2009-12-29 Thread vin.flex
Hi, I got a requiremnt to display newtwork diagrmas. These diagrams should be created dynamically by loading data from the database. I have looked into some 3rd party frameworks like, ILOG Elixir, y files etc, but none of them was giving me a solution. Any bidy cna suggest how

[flexcoders] Re: rewriting a function using prototype?

2009-12-29 Thread Ariel J
Thats neat. --- In flexcoders@yahoogroups.com, jamesfin james.alan.finni...@... wrote: I've used this in this pasta bit more verbose but does the trick. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] Re: Adding a custom UI component as a panel titleIcon.

2009-12-29 Thread invertedspear
Alternatively it would be nice if I could extend the Panel class to allow me to add click events to the title area at the top, but I can't find any way of making that public so I can do it outside of my custom class, any ideas on exposing that protected property? Thanks --- In

[flexcoders] change slideer look?

2009-12-29 Thread markflex2007
Hi, I have a slider that is like following: mx:HSlider id=radius width=300 minimum=0.5 maximum=5 tickColor=0x323232 snapInterval=0.5 tickInterval=0.5 dataTipPrecision=1 labels=['0.5mile','5miles'] liveDragging=true / I want to only let it to choose value 0.5,1,2,3,4,5. My question is how

[flexcoders] Re: Adding a custom UI component as a panel titleIcon.

2009-12-29 Thread turbo_vb
That's exactly what you should do. To get around the the titleBar add the box to rawChildren. http://dougr.net/?p=160 http://dougr.net/?p=160 -TH --- In flexcoders@yahoogroups.com, invertedspear invertedsp...@... wrote: Alternatively it would be nice if I could extend the Panel class to allow

[flexcoders] Re: change slideer look?

2009-12-29 Thread turbo_vb
Using the tickValues property will help you a little. -TH --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: Hi, I have a slider that is like following: mx:HSlider id=radius width=300 minimum=0.5 maximum=5 tickColor=0x323232 snapInterval=0.5 tickInterval=0.5

[flexcoders] Re: Adding a custom UI component as a panel titleIcon.

2009-12-29 Thread invertedspear
Thanks, would you mind giving me at least a little pseudo code of how to do that? I'm completely lost when it comes to extending classes --- In flexcoders@yahoogroups.com, turbo_vb timh...@... wrote: That's exactly what you should do. To get around the the titleBar add the box to

[flexcoders] Re: flex 4 skins + presentation model

2009-12-29 Thread Ariel J
I handled this by creating a private var in the component like: private var _listDataProviderWatcher:ChangeWatcher; Then, in partAdded, I: _listDataProviderWatcher = BindingUtils.bindProperty(myPart,dataProvider,this,[presentationModel,listData]); Then, in partRemoved, I:

[flexcoders] Re: Adding a custom UI component as a panel titleIcon.

2009-12-29 Thread invertedspear
I am adding the box but now it's covering up the normal title text of the panel. Any quick fix for that (I'm just adding space to the front of the text for the time being)? --- In flexcoders@yahoogroups.com, turbo_vb timh...@... wrote: That's exactly what you should do. To get around the the

[flexcoders] Re: Adding a custom UI component as a panel titleIcon.

2009-12-29 Thread turbo_vb
In updateDispayList() position the box: tempBox.move( unscaledWidth - tempBox.width - 10, ( unscaledHeight / 2 ) - ( tempBox.height / 2 ) ); This would put it on the right side of the header, minus 10 pixels. -TH --- In flexcoders@yahoogroups.com, invertedspear invertedsp...@... wrote: I am

[flexcoders] Re: Adding a custom UI component as a panel titleIcon.

2009-12-29 Thread invertedspear
I may not be able to sell that to the project manager. Anyway to keep it on the left without covering the title? Thanks, you've helped a lot so far. --- In flexcoders@yahoogroups.com, turbo_vb timh...@... wrote: In updateDispayList() position the box: tempBox.move( unscaledWidth -

[flexcoders] Re: Adding a custom UI component as a panel titleIcon.

2009-12-29 Thread turbo_vb
Ok, an easy way would be to add paddingLeft to the titleStyleName, or try to move the titleTextField in updateDisplayList(); -TH --- In flexcoders@yahoogroups.com, invertedspear invertedsp...@... wrote: I may not be able to sell that to the project manager. Anyway to keep it on the left

Re: [flexcoders] Network Topology Diagrams

2009-12-29 Thread Julian Alexander
Check out KapLabs diagrammer - that I think would be your best bet. -Julian From: vin.flex vin.f...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tue, December 29, 2009 12:59:09 PM Subject: [flexcoders] Network Topology Diagrams Hi, I got a requiremnt

[flexcoders] AIR with Oracle

2009-12-29 Thread jitendra jain
Hi friends,   Can we establish a connection to Oracle from AIR application? Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. http://in.yahoo.com/