[Flashcoders] Strange problem with AS2 class

2007-05-13 Thread Webdevotion
Hello, I'm working on an excisting project. The project needed radiobuttons, so I made a radiobutton component. It works perfectly in my stand alone test .fla, but once in the project it just won't work. No errors, no trace from the constructor, no exotic coding, ... I checked export in first

Re: [Flashcoders] (no subject)

2007-05-13 Thread Webdevotion
You can call a javascript on your html page once your swf is finished playing from inside the swf. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Netstream.seek problem

2007-04-20 Thread Webdevotion
Hello, I have a problem with my custom flvPlayback component I built using AS3. The component has a clickable progressbar. The user can use this to jump to a certain point in the video. Now, when the user clicks to a previous point in the video and presses Pause and than Play again, the video

Re: [Flashcoders] webcam

2007-02-28 Thread Webdevotion
Yes, with bitmapdata. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and

Re: [Flashcoders] Flash sniffer, version detector and swfObject all in one

2007-02-19 Thread Webdevotion
Can't you do that with swfobject ? It has a version detector as far as I know ... ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you

Re: [Flashcoders] full-browser flash resizing only a few elements

2007-01-22 Thread Webdevotion
Cynthia, If video is an instance of the flv player component, you should use this code instead: stageL.onResize = function(){ video.setSize( Stage.width, Stage.height ); } Using _width and _height in this case can cause distortion. If you use the setSize method, the component will handle the

[Flashcoders] [flexcoders]

2007-01-17 Thread Webdevotion
Hello, I was having problems when loading some external Flash 9 alpha compiled swf's into my AS3 project. I got a cannot write to read-only property on global$init error. Fixed it by using a new domain for every call in my loadExternal method. Is this the right way of doing things ? public

Re: [Flashcoders] Using XRay

2007-01-16 Thread Webdevotion
It fails for me too in an AS3 project. Tried with the online Flex tool, tried the windows exe, in the stand alone debug player and in Opera. package { import com.blitzagency.xray.logger.XrayLog; public class Photobar extends Sprite { private var log:XrayLog; public function Photobar () {

Re: [Flashcoders] Using XRay

2007-01-16 Thread Webdevotion
I don't get to see any errors when compiling. BTW: I tried both the Log and Logger class. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Using XRay

2007-01-16 Thread Webdevotion
I've sent you my tiny project that I used as an example ;) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software

Re: [Flashcoders] playheadUpdate

2007-01-16 Thread Webdevotion
Are you using the debug player on your windows machine ? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software

Re: [Flashcoders] Using XRay

2007-01-16 Thread Webdevotion
Indeed, it works. Can we make snapshots of our apps or can we only use the trace messages ? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] playheadUpdate

2007-01-16 Thread Webdevotion
I did a little test with an flv on a remote server. win xp sp 2 with Opera 9, IE 7 and FF Gran Paradiso ( beta ). Everything went smooth. Can you pass the link of the online flv so I can check if it occurs with your flv ? ___

Re: [Flashcoders] Using XRay

2007-01-16 Thread Webdevotion
Allright. Thanks for the effort you put into this project! ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software

Re: [Flashcoders] playheadUpdate

2007-01-16 Thread Webdevotion
Did you try other flv files ? Maybe one that you didn't encode ( one from youtube for example ) ? I don't think it has something to do with the Players but with the flv encoding. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

[Flashcoders] Cairngorm

2006-12-18 Thread Webdevotion
Hello Flashcoders, Is it allright to use Cairngorm for AS 3 projects? I'm getting up to speed with Flex and AS 3.0 and want to start learning some relevant frameworks. Which ones are among the best choices for strictly AS 3 projects ? Any articles concerning those choices ? Bram

Re: [Flashcoders] Actionscript 3 Books

2006-12-18 Thread Webdevotion
Hey Millie, I think the main pre-requisite should be some knowledge of the concept OOP. It's a well written book, but OOP can be hard to grasp at times. If you worked with classes etc using AS 2.0 you should be fine with this book. It explains some of the biggest changes in the first few pages

Re: [Flashcoders] Cairngorm

2006-12-18 Thread Webdevotion
tnx Greg, it would certainly be an interesting challenge. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software

[Flashcoders] Vector tweening class

2006-04-07 Thread Webdevotion
Does someone know where to find a tweening class that implements a vector equation ? Can't find it anymore, I know there is one out there :) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Flasc - simple question

2006-03-29 Thread Webdevotion
_root.createTextField(tf,0,0,0,800,600); // write some text into it _root.tf.text = Hello world !; } // entry point static function main(mc) { app = new Test(); } } On 3/29/06, Webdevotion [EMAIL PROTECTED] wrote: Hey John, First, tnx for the great effort you put into your tools! I

Re: [Flashcoders] Flasc - simple question

2006-03-29 Thread Webdevotion
great : ) uncheck the header did the trick for me : ) now on to more complicated projects I guess ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders