Re: [flexcoders] Nobody ever answers any of my posts...

2009-10-31 Thread dorkie dork from dorktown
Maybe try starting them 1/2 to 1 pixel before your current positions and 1/2 to 1px after your end position. On Fri, Oct 30, 2009 at 6:41 PM, cjsteury2 cra...@steury.com wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, cjsteury2 cra...@... wrote: Okay... i have

[flexcoders] Re: Nobody ever answers any of my posts...

2009-10-31 Thread cjsteury2
I am trying everything I have the Open value in HLOCItemSeries at screen coordinate but it's not computing with drawRect(x,y,w,h)... I keep plugging away at it adding, subtracting, trying this, trying that... !! --- In flexcoders@yahoogroups.com, dorkie dork from dorktown

[flexcoders] How do you make a Hyperlink display in a datagrid

2009-10-31 Thread metro9999
I have a database driven Flex datagrid.(using PHP and Flash builder 4). A field in the datagrid is a URL for a web page. I would like to allow the user to click on the displayed URL and have it open that URL in a new window or popup. I'm new to flex and have searched all over the web but

[flexcoders] State of secure communication in Flex?

2009-10-31 Thread Rob S.
Hi everyone, I'm curious what the state of secure communication in Flex is. How are people securing communication (both authentication and encryption) between Flex clients and services, either via remoting or web services? Thanks! Rob

[flexcoders] FlashVar to use in a URLRequest AS3 CS2

2009-10-31 Thread ShaunM
Hello Everyone, This is my first time, please be gentle. I've used this code before to bring in other text: var varName:String; var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters; for (varName in paramObj){ myFlashVar = String(paramObj[varName]); } var myFlashVar:String;

Re: [flexcoders] State of secure communication in Flex?

2009-10-31 Thread Matt Hughes
HTTPS? On Fri, Oct 30, 2009 at 5:19 PM, Rob S. robsli...@yahoo.com wrote: Hi everyone, I'm curious what the state of secure communication in Flex is. How are people securing communication (both authentication and encryption) between Flex clients and services, either via remoting or web

Re: [flexcoders] Nobody ever answers any of my posts...

2009-10-31 Thread Doug McCune
Ha, I totally thought you meant try starting the post 1/2 pixel down from the previous post if he wanted someone to answer. Why isn't anyone answering me?!?!?! Dude, your posts are off by a half pixel, duh. On Sat, Oct 31, 2009 at 12:39 AM, dorkie dork from dorktown

[flexcoders] Re: bytearray.readObject doesn't convert my objects back

2009-10-31 Thread jnewport
How would I go about doing that? Would I need to null out the transform object first before converting to a bytearray? Here is my object structure I am trying to save: Data NodeDatalist (list of nodes like an array) Node (think graph or tree vertice) Nodedata ( children nodes,

Re: [flexcoders] Delaying a function's execution

2009-10-31 Thread Aaron Hardy
Thanks Alex for answering my question and all my previous questions you've answered and I've forgot to thank you for. Aaron On 10/29/09, Alex Harui aha...@adobe.com wrote: callLater is used to defer the function call to as soon as possible. That's why it hooks both enterFrame and render.

[flexcoders] Re: Flex Soap Version Mismatch

2009-10-31 Thread Joshua
Well now it doesn't matter. I got it running through a php proxy. Here is what I ended up with. Hope this saves somebody else 3 days. ? $soapRequest = file_get_contents(php://input); $soapAction = $_SERVER['HTTP_SOAPACTION']; $url = 'https://secure.thedomain.com/ws/theservice.asmx?wsdl';

Re: [flexcoders] Re: Nobody ever answers any of my posts...

2009-10-31 Thread dorkie dork from dorktown
It might help if you created a stand alone project and exported it. Also put it online so people can see what you see quickly. Then someone else can import it and take a look. And no the position of the post doesn't generally get a better response but you could you try it. On Sat, Oct 31, 2009

[flexcoders] flex air integration

2009-10-31 Thread prince sidana
Hello, Can anyone provide my useful links for tutorials to inetgrate AIR with database using .net. Thanks Prince From cricket scores to your friends. Try the Yahoo! India Homepage! http://in.yahoo.com/trynew

[flexcoders] Double clicking on a LIST item

2009-10-31 Thread steveb805
Is there any reason that itemDoubleClick would not produce an event ? I'm trying this itemDoubleClick=evtHandler(event), but the function doesn't get called. The code for this list is below (but I don't have the itemdoubleclick in there now) (ProjectList is an *.as file that overrides List

RE: [SPAM] [flexcoders] Function Execution Time

2009-10-31 Thread Tracy Spratt
I use this function below. Passing in start resets the timer, otherwise it lists the elapsed time between calls. public function traceTimer(sMsg:String, sMode:String=running):void { var iTimer:int = getTimer(); if (sMode == start) { timerTrace = iTimer;

RE: [SPAM] [flexcoders] Re: Flexbuilder doesn't give compile error when using a undeclared variable, methods

2009-10-31 Thread Tracy Spratt
An associative array has nothing to do with Array. It was a bad choice of names, they should have just called it a hash table. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

Re: [flexcoders] Double clicking on a LIST item

2009-10-31 Thread Roman Protsiuk
Quote from the docs: To receive itemDoubleClick events, you must set the component's doubleClickEnabled property to true. Roman On Sat, Oct 31, 2009 at 10:16 PM, steveb805 quantumcheese...@gmail.comwrote: Is there any reason that itemDoubleClick would not produce an event ? I'm trying

RE: [SPAM] [flexcoders] How do you make a Hyperlink display in a datagrid

2009-10-31 Thread Tracy Spratt
Here is one example: http://www.cflex.net/showfiledetails.cfm?ChannelID=1 http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=5 95 Object=FileobjectID=595 and another, http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=79 9 Tracy Spratt, Lariat

RE: [SPAM] [flexcoders] flex air integration

2009-10-31 Thread Tracy Spratt
I do not have any links or tutorials, but have a lot of experience with this. What are your goals? What have you tried? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of prince

[flexcoders] Re: Double clicking on a LIST item

2009-10-31 Thread steveb805
Thanks Roman, I should have went to the ListBase link in the docs hierarchy menu, instead of giving up after not finding it in http://adobe.../mx/controls/List.html --- In flexcoders@yahoogroups.com, Roman Protsiuk roman.prots...@... wrote: Quote from the docs: To receive

RE: [flexcoders] Re: bytearray.readObject doesn't convert my objects back

2009-10-31 Thread Alex Harui
A Transform's Matrix is essentially six or 9 numbers. You can simply save them as an array, read it back as an array and then instantiate the Matrix again. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] Catalyst installation problem

2009-10-31 Thread hworke
Hi Devs, I downloaded Catalyst b2 version yesterday. It installs fine up to the point where it asks for the serial number. One option is the serial number and the other one is install as trial. The serial number radio button is selected and as I try to select the install trial version - i find

[flexcoders] Re: Nobody ever answers any of my posts...

2009-10-31 Thread cjsteury2
Hey Doug! My Flex Idol...! (one of them) I'm familiar with your HSLIDER and others projects and have learned from them immensely. I figured out the Item Data Renderer for the HLOC Item Series. Not sure about posts etc. but I figured out the HLOC drawRect() issue below... If anyone wants to