RE: [flexcoders] Is this possible with Flex 4?

2010-08-20 Thread Bill Brutzman
While it may be possible to do this all from FB, for this app, some middleware would help to make the app more robust. Check out Adobe's ColdFusion. There are a few good CF courses on Lynda. --Bill From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of George Se

Re: [flexcoders] Is this possible with Flex 4?

2010-08-20 Thread Wesley Acheson
I don't think flex can interact with a third party website *except* to post data to that website. It would be a major security risk if you could do all of this. AIR may be able to do it but I believe only if the origional website owners have a crossdomain.xml file. On Fri, Aug 20, 2010 at 10:38

[flexcoders] Is this possible with Flex 4?

2010-08-20 Thread George
Hey guys! I love this group...I've read a lot of good conversations here. I have a question for you guys. I'm just starting my journey in Flex (been through the Lynda.com training) and I want to create an application like this: 1) Allows the user to add any number of websites to a navigation b

[flexcoders] Re: ctrl+shift+r shortcut in FB4

2010-08-20 Thread iuricmp
You can have this feature if you use FB4 stand alone --- In flexcoders@yahoogroups.com, "flexcodemonkey" wrote: > > Anyone know how to get the keyboard shortcut ctrl+shift+R for Open Resource > to work in Flash Builder 4?!? Under the Navigate menu in the Flash > Perspective ,there is two menu

[flexcoders] OpenResource in FlashBuilder 4

2010-08-20 Thread flexcodemonkey
Anyone know how to get the keyboard shortcut ctrl+shift+R for Open Resource to work in Flash Builder 4?!? Under the Navigate menu in the Flash Perspective ,there is two menu items. One is being created by the Flash Navigation. But, I am unable to disable this via customizing the Flash perspective a

[flexcoders] Flex 3.5 -> 4 upgrade risk

2010-08-20 Thread Richard Rodseth
My colleagues in QA are having better results with Selenium + FlexMonkium than with FlexMonkey + 3.5. But FlexMonkium apparently only supports Flex 4. I have been cautious/wary about proposing an upgrade to Flex 4 at this time, particularly since I encountered a ComboBox bug introduced in 3.5 when

RE: [flexcoders] Re: Aspects of functional programming in ActionScript

2010-08-20 Thread Gordon Smith
I think using const for local variables that don't change is a good idea. I wish we had done it throughout the framework. In the future, it might allow the ActionScript compiler to do better optimization. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoo

Re: [flexcoders] Error #2063: Error attempting to execute IME command.

2010-08-20 Thread Brian J. Ackermann
Hi Karim, All is well now. I updated the flash debugger to the latest, and after fixing another (unrelated) bug, all three browsers now behave themselves. Updating the flash player to the most recent solved it. I haven't a clue why it suddenly went belly up yesterday, but, at least I'm able to

Re: [flexcoders] Error #2063: Error attempting to execute IME command.

2010-08-20 Thread Karim Beyrouti
I think it will depend what version of FP you are exporting to... sorry for being so vague - it's been a while since i have had this error... and i cant quite remember how i fixed it... also - some details of Flex / Flash Builder version or are you using FDT?... On 20 Aug 2010, at 16:34, Brian

RE: [flexcoders] Basic question about copying bitmap Data to a display object.

2010-08-20 Thread Keith Reinfeld
matrix=new Matrix() matrix.scale(img.width/_bitmap.width) img.graphics.clear() img.graphics.beginBitmapFill(_bitmap,matrix,false,false) img.graphics.drawRect(0,0,img.width,400) img.graphics.endFill Regards, Keith Reinfeld Home Page: http://keit

Re: [flexcoders] Error #2063: Error attempting to execute IME command.

2010-08-20 Thread Brian J. Ackermann
Hmm...peculiar. I ran the app in IE, FF, and GC. IE and FF are both 10.0 installs, and GC is on 10.1 somehow. IE doesn't work, throws all sorts of IME errors. FF seems to work perfectly. GC, doesn't throw errors, but also isn't working perfectly. I'm going to update my all my flashplayers, s

[flexcoders] Basic question about copying bitmap Data to a display object.

2010-08-20 Thread atlantageek
Currently I am copying bitmap data to an image using matrix=new Matrix() matrix.scale(img.width/_bitmap.width) img.graphics.beginBitmapFill(_bitmap,matrix,false,false) img.graphics.drawRect(0,0,img.width,400) img.graphics.endFill any suggestions. This is a update that happens several times a seco

[flexcoders] Re: Can mx.controls.Text added to import mx.containers.Canvas ?

2010-08-20 Thread itdanny2002
I do this in pure action script. The startup is UIMovieClip / MovieClip --- In flexcoders@yahoogroups.com, "itdanny2002" wrote: > > > I do this in pure action script. > Haven't use mxml. > > > --- In flexcoders@yahoogroups.com, "itdanny2002" wrote: > > > > Error in StyleManager.as > > > > v

[flexcoders] Re: Can mx.controls.Text added to import mx.containers.Canvas ?

2010-08-20 Thread itdanny2002
I do this in pure action script. Haven't use mxml. --- In flexcoders@yahoogroups.com, "itdanny2002" wrote: > > Error in StyleManager.as > > var styleManager:IStyleManager2 = > IStyleManager2(moduleFactory.getImplementation("mx.styles::IStyleManager2")); > > Any idea ? > > var sp:Can

Re: [flexcoders] Error #2063: Error attempting to execute IME command.

2010-08-20 Thread Brian J. Ackermann
I don't recall updating my flash player yesterday.hmm.. Additionally. I've searched my entire project for the string "IME", and nothing is foundI'm not using this little beastie at all. -- Brian J. Ackermann brian.ackerm...@gmail.com 952.373.1626 -

Re: [flexcoders] Error #2063: Error attempting to execute IME command.

2010-08-20 Thread Karim Beyrouti
Had the same problem a while ago - and seem to remember it's got something to do with FP 10.1... On 20 Aug 2010, at 13:25, Brian J. Ackermann wrote: > I've never even heard of it until I started getting this message... > > > As an update...I've since replaced all the Alert's with traces, and wh

Re: [flexcoders] Error #2063: Error attempting to execute IME command.

2010-08-20 Thread Brian J. Ackermann
I've never even heard of it until I started getting this message... As an update...I've since replaced all the Alert's with traces, and while they work fine now, the problem isn't limited to Alerts in the apps creationComplete(), but its affecting all Alert dialogs, regardless of position. --

[flexcoders] Can mx.controls.Text added to import mx.containers.Canvas ?

2010-08-20 Thread itdanny2002
Error in StyleManager.as var styleManager:IStyleManager2 = IStyleManager2(moduleFactory.getImplementation("mx.styles::IStyleManager2")); Any idea ? var sp:Canvas = new Canvas; sp.height = 100; sp.width = 100; sp.graphics.beginFill( 0xff , 1 ); sp.graphics.drawCircle

[flexcoders] Why follow

2010-08-20 Thread itdanny2002
I tried to create a class extends from MovieClip and can added mx.controls.Text I tried MovieClip/UIMovieClip...doesn't work ! I don't use Sprite as all other controls that I will aded is from UIComponent based. package { import mx.flash.UIMovieClip; import mx.controls.Text; import fl

[flexcoders] Re: Aspects of functional programming in ActionScript

2010-08-20 Thread Florian
Well, the question was more intended to case like: function elementAddhandler(event:ElementExistenceEvent):void { const renderer:IVisualElement = event.renderer; } or function iterateOverList(list:IList):void { if (!list) return; const length:int = list.length; for (var i:int; i < leng