Re: [flexcoders] Question regarding FLV protection

2009-05-05 Thread Alain Thibodeau
Hi there, What version of FMS are you using? I would recommend looking into: -rtmpe -verify your swf files -restrict to your domain (VHOST.ALLOW) A From: thomas parquier mailingli...@web-attitude.fr To: flexcoders@yahoogroups.com Sent: Tuesday, May 5,

Re: [flexcoders] Re: Flex, SharePoint and SQLServer

2009-04-13 Thread Alain Thibodeau
Hi Gerry, I just started working with Lists.asmx. Just like Tom, I too would be interested in seeing some examples thank-you! From: Gerry McLarnon ge...@brickpigs.com To: flexcoders@yahoogroups.com Sent: Wednesday, April 8, 2009 5:19:07 PM Subject:

Re: [flexcoders] video - capture and save locally

2009-03-27 Thread Alain Thibodeau
just trying again to see if anyone has any ideas on this? thanks! From: thibodeau.alain thibodeau.al...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wednesday, March 25, 2009 7:15:43 PM Subject: [flexcoders] video - capture and save locally Hi all, I was

Re: [flexcoders] is it not possible to upload a file to a flash app (no server)?

2009-03-26 Thread Alain Thibodeau
You mean just getting file info or actually parsing the full file data? If it's just the basic file information, I think you can get that with the FileReference... If you are looking for more power, swfStudio will give you all the power you need: http://www.northcode.com/index.php  

Re: [flexcoders] Re: flash cs3 skinning

2009-03-12 Thread Alain Thibodeau
; textRollOverColor: 0xFF; textSelectedColor: 0xFF; textAlign: left; } how would you apply the scale9grid to the skin in this case? many thanks S --- In flexcod...@yahoogro ups.com, Alain Thibodeau thibodeau.alain@ ... wrote: You mean you did the scale 9 in Flash with the guides

Re: [flexcoders] Question from a C developper

2009-03-12 Thread Alain Thibodeau
- Is it possible to define a variable as a long ? int is 32 bits and if you need bigger than go with Number http://livedocs.adobe.com/flex/3/html/help.html?content=03_Language_and_Syntax_11.html   - How to program the overloading of an operator like the equal between 2 objects of a same class.

Re: [flexcoders] flash cs3 skinning

2009-03-11 Thread Alain Thibodeau
You mean you did the scale 9 in Flash with the guides or in the flex css? I haven't had to set it in both before, but sounds like it isn't set properly. I'd play around with the guides in flash and in the css... I've never had issues with it in flash or in css with bitmaps.

Re: [flexcoders] calling a function from swf

2009-03-10 Thread Alain Thibodeau
Thanks Adrian! that will do the trick. In the meantime, I also found another way, not as elegant as yours //inside the fla var myParent = loaderInfo.loader.parent.parent;  myParent.doSomething('do it'); thanks again From: Adrian Williams

Re: [flexcoders] Re: Text Looks Ugly When PrintAsBitmap=true

2009-03-10 Thread Alain Thibodeau
what is the font used? If blend mode doesn't work...you might want to try embeding the font or at least the chars that you are using...Not the best solution for swf size, but see if that makes a difference From: Amy amyblankens...@bellsouth.net To:

Re: [flexcoders] Re: Using icons on buttons?

2009-03-10 Thread Alain Thibodeau
If you have the Flash IDE and flex component kit installed, there are templates for skinning. There is one specific for the button. You can skin in flash with full control of the look you want, then export as swc. In flex open your css file in design mode and with the tools at the top you can

Re: [flexcoders] Setting background color of Label control

2009-03-06 Thread Alain Thibodeau
Try this:   mx:Label text=My Label opaqueBackground=0x009dff color=#ff/   Not sure that opaqueBackground can be set from css From: oneworld95 oneworl...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, March 6, 2009 9:26:20 AM Subject: [flexcoders]

Re: [flexcoders] AsyncToken with special chars

2009-03-05 Thread Alain Thibodeau
Hmmm, thanks Maciek, but that did not solve it. I updated my sdk and it still does the same? can anyone confirm or deny that this is still a bug? From: Maciek Sakrejda msakre...@truviso.com To: flexcoders@yahoogroups.com Sent: Thursday, March 5, 2009 12:20:43

Re: [flexcoders] AsyncToken with special chars

2009-03-05 Thread Alain Thibodeau
the same issues are happening to them in SDK 3.3 and FP 10, that would be great. thanks!   From: Alain Thibodeau thibodeau.al...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thursday, March 5, 2009 3:02:50 PM Subject: Re: [flexcoders] AsyncToken with special chars

Re: [flexcoders] FileReference save security

2009-02-27 Thread Alain Thibodeau
haha, point taken... I could of worded it differently Thanks for the idea. :)   From: Gregor Kiddie gkid...@inpses.co.uk To: flexcoders@yahoogroups.com Sent: Friday, February 27, 2009 9:55:13 AM Subject: RE: [flexcoders] FileReference save security I don’t

Re: [flexcoders] Reduce the speed of a .SWF

2009-02-27 Thread Alain Thibodeau
I think you are going to want to reduce the frame rate of either your main app or the loaded swf.. Check the help files for frameRate, there are some examples   cheers a From: christophe_jacquelin christophe_jacque...@yahoo.fr To: flexcoders@yahoogroups.com

Re: [flexcoders] Class Image

2009-02-20 Thread Alain Thibodeau
processing.. do you mean manipulation? I think the bitmap class is what you need to check out also this is a good start: http://www.insideria.com/2008/03/image-manipulation-in-flex.html hth From: christophe_jacquelin christophe_jacque...@yahoo.fr To:

Re: [flexcoders] Webservice with Dynamic request?

2009-02-18 Thread Alain Thibodeau
Thank-you but I am still a little unclear as to how this actually works. From what I gather all I need to do is pass an array and flex will serialize it... I've tried passing an array of objects, I've simplified my test case, below is the code: can anyone please help me figure out what I am

Re: [flexcoders] Webservice with Dynamic request?

2009-02-18 Thread Alain Thibodeau
Thanks for anyone who looked at this. I found the prolem, by default I always put my class members as private...:( Making them public, seems to have let access to the serializer and I am sending the proper soap.   From: Alain Thibodeau thibodeau.al

Re: [flexcoders] Image-swfLoader-memory

2009-02-17 Thread Alain Thibodeau
Developer Adobe Systems Inc. Blog: http://blogs. adobe.com/ aharui   From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Alain Thibodeau Sent: Monday, February 16, 2009 9:00 AM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] Image-swfLoader-memory   Thanks

Re: [flexcoders] Image-swfLoader-memory

2009-02-16 Thread Alain Thibodeau
Thanks Alex, So there shouldn't be any issues with the way I set the swfLoader in Cairngorn then? I did test with the profiler and unless I am blind I don't see it releasing memory, however, I am not an expert with it. When I do test with the browser (IE), I see the memory go down then back

Re: [flexcoders] Re: yahoo maps CustomSWFMarker

2007-09-13 Thread Alain Thibodeau
Thanks, it did help, in order to load custom markers with click events this is now my attempt What I am now trying to do is load custom markers, once the user clicks on it, it's a method inside the loaded swf marker that loads the image...but I need to pass the image location to the

[flexcoders] Repeater refresh bug?

2007-05-09 Thread Alain Thibodeau
Hi All, I am having a problem with nested Repeater controls not refreshing properly to reflect the data that is bound to the data provider for each of the Repeater controls. My problem is related to the following: I have two classes, say Parent and Child which are as follows: [Bindable]

Re: [flexcoders] SWFLoader for .swf and Effects?

2007-04-25 Thread Alain Thibodeau
An example using a fade effect: mx:Fade id=myFade duration=5000/ mx:SWFLoader .. .. completeEffect=myFade/ - Original Message From: Matt [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, April 25, 2007 11:59:36 AM Subject: [flexcoders] SWFLoader for .swf

Re: [flexcoders] Re: SWFLoader for .swf and Effects?

2007-04-25 Thread Alain Thibodeau
? Okay, I noticed that was the only effect mentioned for SWFLoader, but does that mean you can't do any other types of effects with it? What if I don't want it to be visible until later and when I make it visible I would like to fade it in? Thanks --- In [EMAIL PROTECTED] ups.com, Alain Thibodeau

Re: [flexcoders] HTTPService/ArrayCollection/DataGrid/Tree/

2007-03-29 Thread Alain Thibodeau
: [EMAIL PROTECTED] ups.com ] On Behalf Of Alain Thibodeau Sent: Wednesday, March 28, 2007 8:12 AM To: [EMAIL PROTECTED] ups.com Subject: [flexcoders] HTTPService/ ArrayCollection/ DataGrid/ Tree/ Hi all, I was wondering if someone could please point me in the correct direction. I have

[flexcoders] HTTPService/ArrayCollection/DataGrid/Tree/

2007-03-28 Thread Alain Thibodeau
Hi all, I was wondering if someone could please point me in the correct direction. I have an HTTPService that I am using with a datagrid, the Service's data is loaded into an ArrayCollection and I filter the ArrayCollection with a filterFunction. All works great. I now want to take the same

[flexcoders] Recommendations for Print Preview

2007-01-05 Thread Alain Thibodeau
Hi All, Any recommendations on creating a custom print preview? I would like to take objects from my app, show a print preview on a different page. No problems with the printing, just not sure what approach to take on the preview part. Thanks in advance.

[flexcoders] problems with drag/zoom and levels

2006-12-18 Thread Alain Thibodeau
Hi All, I hope someone will be able to help me with some issues I am having. I need to load an external swf and control its display with drag and zoom. The loaded swf has to be inside a white box (container), it must be draggable/zoomable beyond the parameters of the box, but the excess

RE: [flexcoders] Difficulty when @embedding FP9/AS3 SWFs

2006-12-18 Thread Alain Thibodeau
Perhaps this will help you, even if it's not embed: http://www.bridel.org/flex/example/swfimport/swfloadasdemo.html http://www.bridel.org/flex/example/swfimport/srcview/index.html From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy Rollins Sent: Monday,

[flexcoders] historyManagement on viewStack and IE 7

2006-12-11 Thread Alain Thibodeau
Hello All, I have a ViewStack with historyManagementEnabled=true, the history works well in Firefox but in IE 7 nothing happens. It seems that there is no history saved. Have any of you had this problem? I am new to Flex and not sure if it's a bug or if I have to do more than just enable the