[flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-02-01 Thread luke_lee1124
I have the same problem, please let me know if you find a solution. Many thanks

[flexcoders] ZendAmf Setup issue 1.7 where gateway filw working .?

2009-02-01 Thread Sajid Hussain
Hello Gurus , I am facing one issue where i am attempting to use Zend_amf but that code exactly work well with Amfphp, I have seen all internet resources for zend and I am very courios on thier machine same code is working why not at mine :( if I am trying to access gateway(Zend File) it work

[flexcoders] Re: using an event to trigger an action in a sibling component

2009-02-01 Thread Amy
--- In flexcoders@yahoogroups.com, weezee49 rainygl...@... wrote: But I still have a problem calling a public method in Login from MainBox. Because MainBox is in a different branch of the tree, it can't see Login without some convoluted getChildAt().getChildAt(), and so on. Just to

RE: [flexcoders] Oh WTF? Web Services: Anyone work with Blue Disaster (I mean Dragon)?

2009-02-01 Thread Wally Kolcz
The problem seems to be here. I tried to trace each item and the length of each and they come up null and blank. var xlNames:XMLList = xmlResult..columnList.string; var xlValues:XMLList = xmlResult..ArrayOfAnyType.anyType; From: Tracy Spratt

[flexcoders] targetNamespace disappeared in Flex3

2009-02-01 Thread eyal_c
Hi, I need to fetch the targetNamespace from a WSDL which i loaded into a WebService object. In Flex 2 the following code worked just fine: var webService:WebService = new WebService(); webService.wsdl = URL ... webService.loadWSDL(); var operation:Operation = webService[webServiceMethodName];

[flexcoders] Adding container references to an array

2009-02-01 Thread Hyder
How do I add container references to an array. For example, I have these 4 containers mx:Panel id=home title=Home / mx:Panel id=portfolio title=Portfolio / mx:Panel id=skills title=Skills / mx:Panel id=contact title=Get in touch / How do I add their references to an array in MXML mx:Array

[flexcoders] *** Security Sandbox Violation *** ?

2009-02-01 Thread markflex2007
I get the error message when I debug a application.the application works fine, but I get the message in debug console. Thanks *** Security Sandbox Violation *** SecurityDomain 'file:///C:/Documents and Settings/mark/My Documents/Flex Builder 3/test0211a/bin-debug/CheckBoxDataGridApp1.html' tried

[flexcoders] Encrypted html

2009-02-01 Thread Paul Andrews
In an ideal world, I'd have an AIR app displaying HTML pages sourced from encrypted data installed on the same machine. Seems to me that the only way to keep the data encrypted would be to install a web server which decrypts the pages on the fly. Am I missing a something simple? Paul

[flexcoders] Re: the flex RTE and xhtml

2009-02-01 Thread Hyder
WoW! I doubt Derrick would be still interested after a year -6 days of posting :D Nice article though, I remember reading it before too at your blog. Hyder www.alamgirdesigns.com --- In flexcoders@yahoogroups.com, Igor Costa igorco...@... wrote: Derrick A solution, hope fits on your

[flexcoders] Flex/BlazeDS/Hibernate - serialization question

2009-02-01 Thread max.bruchmann
Hi, I read a lot of time that flex/blazeds/hibernate is a cool combo. But I there is one thing that troubles me. So let's asume I have a Person class public class Person { public var name:String; public var id; } It's no problem to send objects from this class between client and server. But

[flexcoders] Buttonbar not centering at startup

2009-02-01 Thread Ben Cessa
Hi again, right now I'm just playing a little with AIR and PV3D writing a little useless app as anexercise. I'm having an odd problem with ButtonBar, the thing don't get the horizontal center when the apps starts, is aligned to the left, however, as soon as I start resizing the main window it

[flexcoders] Re: Buttonbar not centering at startup

2009-02-01 Thread Hyder
Try invalidate(); OR figSelector.invalidate(); on your parent's creationComplete event handler. I'm not so sure about your second question. Are you having trouble removing a skin that you've applied? Hyder www.alamgirdesigns.com --- In flexcoders@yahoogroups.com, Ben Cessa bce...@...

[flexcoders] Simple but impossible Hbox alignment issue

2009-02-01 Thread Flex Noob
This one is rather perplexing. If I use a label inside an hbox and if the text inside the label runs too long it pushed the button off the screen: mx:HBox width=100% mx:Label text={text}/ mx:Spacer width=100%/ mx:Button id=button width=20 height=15/ /mx:HBox

[flexcoders] ns.publish('mp3:mystream', record) - Online documentation different to FB 3.0.2 - what gives?

2009-02-01 Thread tom s
Hi, I'd like to record from a microphone to a .mp3 file on FMS 3.5.There are numerous posts on the net saying this is not possible. But the Flex 3.2 Language Reference on LiveDocs implies that it is (text pasted at bottom of email):

[flexcoders] simple(?) Flex change color question

2009-02-01 Thread Mic
This one is making my head hurt ... will there be any perceivable difference in a) slowly changing an object's color from it's current color e.g. 0xFF to 0xFF and b) slowly changing the object's color by morphing the correct individual r, g and b from 0xFF to 0XFF? Will it pass

Re: [flexcoders] Simple but impossible Hbox alignment issue

2009-02-01 Thread Flex Noob
ok so just to follow up its a bug IMO with Label. I tired setting truncateToFit and no dice. So i swapped out label for text and its hot. mx:HBox width=100% mx:Text text={text} truncateToFit=true/ mx:Spacer width=100% / mx:Button id=button width=20 height=15/