Re: [Flashcoders] Insert breakpoints and run debugger withoutFlashCS3?

2008-06-16 Thread Vlado Krempl
This is getting slightly anoying isn't it! Vlado Krempl Sydney, Australia On 16/06/2008, at 6:49 PM, EDELSTAR wrote: Данный почтовый ящик не обрабатывает подгрузки, заявки и прочие сообщения. Вам нужно написать на адрес, присвоенный Вашему СПО

[Flashcoders] Detection Kit and Express install for flash player 9?

2008-04-10 Thread Vlado Krempl
the webpage and not have to restart there computer. (For flash player 9!!) It seems there are a hell of alot of people out there still with flash player 8 or below!! Thankyou for any replies. Cheers, vlado krempl sydney, australia ___ Flashcoders mailing list

Re: [Flashcoders] Detection Kit and Express install for flash player9?

2008-04-10 Thread Vlado Krempl
10:09 PM Subject: Re: [Flashcoders] Detection Kit and Express install for flash player9? The last time I checked, the Express Install did not work on my Mac at all. Kenneth Kawamoto http://www.materiaprima.co.uk/ Vlado Krempl wrote: Hello everyone! {If this posting has been done before I

Re: [Flashcoders] Detection Kit and Express install for flash player9?

2008-04-10 Thread Vlado Krempl
elegant solution though. I hope someone can chime in for this issue. Kenneth Kawamoto http://www.materiaprima.co.uk/ Vlado Krempl wrote: Thanks for your reply Kenneth. Just one question, when you design a flash webpage, do you us a HTML alternate page aswell? Cheers, v - Original Message

Re: [Flashcoders] books for flash programming

2008-04-03 Thread Vlado Krempl
of reading on PHP, HTML, Javascript and Actionscript 3. Any advice would be appreciated. Cheers, Vlado Krempl Sydney, Australia - Original Message - From: Kerry Thompson [EMAIL PROTECTED] To: 'Flash Coders List' flashcoders@chattyfig.figleaf.com Sent: Friday, April 04, 2008 7:14 AM

Re: [Flashcoders] Re: How to take screenshot of sites , as seen on snap.com

2008-04-01 Thread Vlado Krempl
Hi there, Another great tool to take snaps of your websites is to use snagit. http://www.snagit.com Hope that helps, vlado krempl sydney, australia - Original Message - From: Digg Yeah [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Tuesday, April

Re: [Flashcoders] Mailto function opens another browser?

2008-02-26 Thread Vlado Krempl
in quotes. I also use _blank for the second parameter to navigateToURL Glen Vlado Krempl wrote: Hello everyone, Trying to add a mailto function to a button, but everytime I click the button, internet explorer opens up another browser window aswell as my Outlook express. I thought using the _self

[Flashcoders] Button addEventListener is cancelled out by my Timer function.

2008-02-25 Thread Vlado Krempl
Timeline problem: As soon as my pauseTimeline function is called on frame 65, my button infoONEbtn doesn't register on frame 65. And after frame 65, my button doesn't work unless I call the addEventlistener again on frame 66. Is there a way around this?? I have this code on frame 10 function

Re: [Flashcoders] Button addEventListener is cancelled out by myTimerfunction.

2008-02-25 Thread Vlado Krempl
it. hth Bob Leisle Headsprout Software Engineering www.headsprout.com Where kids learn to read! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Vlado Krempl Sent: Monday, February 25, 2008 5:13 AM To: Flash Coders List Subject: [Flashcoders] Button

[Flashcoders] Mailto function opens another browser?

2008-02-25 Thread Vlado Krempl
Hello everyone, Trying to add a mailto function to a button, but everytime I click the button, internet explorer opens up another browser window aswell as my Outlook express. I thought using the _self option would help, but it doesn't. Code below: var myURL:URLRequest = new URLRequest

[Flashcoders] Pausing the main timeline.

2008-02-12 Thread Vlado Krempl
, function(evt:TimerEvent):void { play(); } }; t.start(); }; Any ideas?? Vlado Krempl Please consider the environment before printing this e-mail. The contents of this message should be treated as COMMERCIAL IN CONFIDENCE unless otherwise specified in the message

Re: [Flashcoders] Pausing the main timeline.

2008-02-12 Thread Vlado Krempl
the main timeline. function pauseTimeline(howlong:Number):void { stop(); var t:Timer = new Timer (howLong,1); t.addEventListener( TimerEvent.TIMER, function(evt:TimerEvent):void {play();} ) t.start(); } Vlado Krempl wrote: Hello everyone, When I try to pause the main timeline

Re: [Flashcoders] How did they do it?? A particular flash site.

2008-02-08 Thread Vlado Krempl
Hi Dave, Is possible to integrate Maya with flash?? - Original Message - From: Dave Mennenoh [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Saturday, February 09, 2008 12:06 AM Subject: Re: [Flashcoders] How did they do it?? A particular flash site.

[Flashcoders] How did they do it?? A particular flash site.

2008-02-07 Thread Vlado Krempl
Hello everyone, There is a great flash site that I absolutely love, and just wanted your opinion on how they layed it out. The site is : http://checklandkindleysides.com They use a background gradient image, so is the flash movie in transparent mode?? Or perhaps they have used another

[Flashcoders] Any problems with the list?

2008-02-06 Thread Vlado Krempl
Hi Guys, Haven't recieved any emails all day. (from Flash Coders List) Anything wrong with the email list?? Anyone else experiencing problems? Vlado Krempl Please consider the environment before printing this e-mail. The contents of this message should be treated as COMMERCIAL IN CONFIDENCE

Re: [Flashcoders] Resizing a background image only.And keeping aspectratio.

2008-02-03 Thread Vlado Krempl
it, so you perhaps should mdify it a bit. WIth this i think you should keep the aspect ratio On Feb 3, 2008 4:12 AM, Vlado Krempl [EMAIL PROTECTED] wrote: Hello everyone, Question: (Using actionscript 3) How to scale just the background image (photograph) fullscreen in the browser but still

Re: [Flashcoders] Resizing a background image only.And keeping aspectratio.

2008-02-03 Thread Vlado Krempl
= stage.stageWidth; picture_mc.height = picture_mc.width/picRatio; } else { picture_mc.height = stage.stageHeight; picture_mc.width = picture_mc.height*picRatio; } } Kenneth Kawamoto http://www.materiaprima.co.uk/ Vlado Krempl wrote: Hello everyone, Question: (Using actionscript 3

Re: [Flashcoders] Resizing a background image only.And keeping aspectratio.

2008-02-03 Thread Vlado Krempl
= picture_mc.width/picRatio; } else { picture_mc.height = stage.stageHeight; picture_mc.width = picture_mc.height*picRatio; } } Kenneth Kawamoto http://www.materiaprima.co.uk/ Vlado Krempl wrote: Hello everyone, Question: (Using actionscript 3) How to scale just the background image (photograph

[Flashcoders] Properly embedding flash with html.

2008-02-03 Thread Vlado Krempl
Hello everyone, Question: When embedding a flash movie in HTML - Is everyone using the Publish settings that flash CS3 comes with AC_RunActiveContent.js etc or is the SWF OBject still the preferred way? Cheers, Vlado Krempl M 0433 781740 Please consider the environment before printing

[Flashcoders] Resizing a background image only.And keeping aspect ratio.

2008-02-02 Thread Vlado Krempl
Hello everyone, Question: (Using actionscript 3) How to scale just the background image (photograph) fullscreen in the browser but still keep it's aspect ratio. All the solutions on the internet seem to still be in Actionscript 2. I'm using the code below -