Re: [Flashcoders] Catalyst

2009-09-28 Thread allandt bik-elliott
i'm with you on the mxml pushing old ladies into the road tho a On 26 Sep 2009, at 23:29, Anthony Pace wrote: Anyone try catalyst? Does it only output to flex style code that make babies cry, or does it output do pure AS3 too? ___ Flashcoders

Re: [Flashcoders] strange error when removing sprite from parents display list

2009-09-28 Thread Allandt Bik-Elliott (Receptacle)
sorry for the really late reply to this thread but thanks :) a On 22 Aug 2009, at 16:07, Juan Pablo Califano wrote: PS: The place to report bugs: http://www.flashdevelop.org/community/viewforum.php?f=6 And the rules: http://www.flashdevelop.org/community/viewtopic.php?f=6t=92 2009/8/22 Juan

Re: [Flashcoders] Searching all ActionScript in an FLA

2009-09-28 Thread Geografiek
Hi Chris, Thanks. I'm on CS4. The line WARNING: Actions on button or MovieClip instances are not supported in ActionScript 3.0. All scripts on object instances will be ignored. appears as the first line in the output panel with no clue as to where that code would reside. The compile errors

RE: [Flashcoders] Catalyst

2009-09-28 Thread Merrill, Jason
Catalyst is still really rough - I wasn't initially impressed with the first public beta at all, but the tool has great potential and I'm hopeful and excited for the release next year. And yes, it's MXML output, not pure AS3. Jason Merrill Bank of America Global Learning Learning

Re: [Flashcoders] Searching all ActionScript in an FLA

2009-09-28 Thread Glen Pike
Watch out for blank lines in script panels too. Geografiek wrote: Hi Chris, Thanks. I'm on CS4. The line WARNING: Actions on button or MovieClip instances are not supported in ActionScript 3.0. All scripts on object instances will be ignored. appears as the first line in the output panel with

Re: [Flashcoders] JPGEncoder and com folder

2009-09-28 Thread Bassam M
Hi Glen all this I knew I actually ask the question wrong way,my question I use Library Graffiti AS3 but this library call JPGEncoder from import com.adobe.images.JPGEncoder; my question was where to place JPGEncoder. and where I can download JPGEncoder code .then I find out that I have to create

Re: [Flashcoders] Searching all ActionScript in an FLA

2009-09-28 Thread Margo Powell
I had this error also but it was due to a blank line on a movie clip. Check your movie clips and make sure there are no blank lines embedded - flash interprets more than one blank line as a line of script regards Margo On 9/28/2009 9:29 AM, Geografiek wrote: Hi Chris, Thanks. I'm on CS4.

[Flashcoders] Adobe Air loader another PDF File

2009-09-28 Thread Bassam M
hi guys I'm trying to loader pdf file using XML to retrieve the URL and I have CombBox to list all the files ,and I need to load another file every time I change the silder for the CombBox the problem is the pdf file load only first time and dosent change if I select another one from the list,

[Flashcoders] incorperating automatic thumbnail generator php script for my flash cms

2009-09-28 Thread thomas horner
A little while ago flep studio released a free cms and xml generator for as3; http://www.flepstudio.org/forum/flepstudio-utilities/4739-flash-xml-editor.h tml to build a gallery from the xml file it outputs is fairly simple but i would like it to create thumbnails on the fly, when

[Flashcoders] dynamically creating swfs

2009-09-28 Thread tom rhodes
hi all, just been googling but i'm not 100% sure what i want to do is possible. i want to generate a swf from a flash cms on a server. i'm thinking as mxml is xml it should be possible with flex? can anyone give me some links with some good info? thanks in advance, tom.

RE: [Flashcoders] dynamically creating swfs

2009-09-28 Thread Merrill, Jason
http://www.google.com/search?hl=ensource=hpq=ming+swfaq=foq=aqi=g10 http://www.google.com/search?hl=enq=LiveCycle+Data+Services+server+gene rated+swfaq=foq=aqi= Jason Merrill Bank of America Global Learning Learning Performance Soluions Monthly meetings on making the most of the Adobe

Re: [Flashcoders] incorperating automatic thumbnail generator php script for my flash cms

2009-09-28 Thread Glen Pike
Hi, That's pretty much what you need to do. Look at the example on the page you linked to - you don't necessarily want to output HTML, but would output a response of some kind, so strip out the HTML and return success / error and maybe messages I think - can't remember what FileReference

[Flashcoders] best way to use external interface

2009-09-28 Thread Gustavo Duenas
Hi I have a function in javascript on the html like: script type=javascript function openMyWindow(){ document.getElementByID(myWindow).setStyle(etc) } and I would like to use it from falsh something like this: mybutton.addEventlistener(MouseEvent.CLICK, contactJavascript); function

Re: [Flashcoders] best way to use external interface

2009-09-28 Thread Gregory Boland
thats essentially it. Syntax is slightly different if (ExternalInterface.available){ ExternalInterface.call(openMyWindow);} } make sure to import flash.external.ExternalInterface; and when u tell it what the name of the method in the javascript is leave off the () On Mon, Sep 28, 2009

Re: [Flashcoders] incorperating automatic thumbnail generator php script for my flash cms

2009-09-28 Thread Karl DeSaulniers
Also make sure you have the right permissions for your php script and that you have the ability to write to and move files on your server. Lastly make sure your using the right version of php on your server. I had php 4.3 and was using php 5 code and found out the hard way. GL Karl Sent

Re: [Flashcoders] best way to use external interface

2009-09-28 Thread Gustavo Duenas
Ok, thanks, so it should work this way right? Gustavi On Sep 28, 2009, at 12:53 PM, Gregory Boland wrote: thats essentially it. Syntax is slightly different if (ExternalInterface.available){ ExternalInterface.call(openMyWindow);} } make sure to import flash.external.ExternalInterface;

Re: [Flashcoders] JPGEncoder and com folder

2009-09-28 Thread Glen Pike
Hi, Sorry - I probably got the wrong end of the stick too. Did you sort out the problem? Glen Bassam M wrote: Hi Glen all this I knew I actually ask the question wrong way,my question I use Library Graffiti AS3 but this library call JPGEncoder from import

Re: [Flashcoders] best way to use external interface

2009-09-28 Thread Gregory Boland
yup just like that On Mon, Sep 28, 2009 at 2:17 PM, Gustavo Duenas gdue...@leftandrightsolutions.com wrote: Ok, thanks, so it should work this way right? Gustavi On Sep 28, 2009, at 12:53 PM, Gregory Boland wrote: thats essentially it. Syntax is slightly different if

Re: [Flashcoders] JPGEncoder and com folder

2009-09-28 Thread Bassam M
yes it's done thank you On Mon, Sep 28, 2009 at 7:19 PM, Glen Pike postmas...@glenpike.co.ukwrote: Hi, Sorry - I probably got the wrong end of the stick too. Did you sort out the problem? Glen Bassam M wrote: Hi Glen all this I knew I actually ask the question wrong way,my