[Flashcoders] About OOP metodology

2006-06-30 Thread Ricardo Sánchez
I've just started to work in a big internet communication agency. We have to make 2 or 3 microsites every week. Each of which uses a very similar form to get user data. All that changes from one to another is a couple of fields and the look of it. My question is: What's the best way to

[Flashcoders] Back from html to specific point in flash

2006-07-21 Thread Ricardo Sánchez
Hi, I need to know if this is possible and if it is some guidelines on how to accomplish it. I have a flash application running in a full browser window. At a certain moment the user may click in some link to a html page. We were thinking in open it in a new window but there's the problem of the

[Flashcoders] From getPixel to colorMatrix

2006-07-24 Thread Ricardo Sánchez
Ok, what I'm trying to do is getting the color of some pixels of an image and attachMovieClips tinted as those pixels. I can read the color and attach the clips with that color. But I would like the mcs not to be in that plain color but being a little tinted in that color so they keep the

Re: [Flashcoders] Back from html to specific point in flash

2006-07-26 Thread Ricardo Sánchez
Thanks to all of you. On 7/21/06, John Dowdell [EMAIL PROTECTED] wrote: Ricardo Sánchez wrote: So our second option is open the link in the same window but giving the user the chance to hit the back button of the browser (once in the html) and go back to the specific situation where he

Re: [Flashcoders] About OOP metodology

2006-07-26 Thread Ricardo Sánchez
specific to the site and design the code specific to the logic. You could even abstract the technical logic from the UI completely and write communicators/controllers that respond to events fired from the ui (movieclips). M. On 6/30/06, Ricardo Sánchez [EMAIL PROTECTED] wrote: I've just

[Flashcoders] Insert elements into an area dinamically

2006-08-09 Thread Ricardo Sánchez
Ok, I'll try to explain myself as best as possible. First take a look at this: http://www.pillandpillow.com/msfCongo/mainEng.html As you can see the main interface is a map of Congo composed of pictures and comments distributed to form the shape of the country. What I want to do is something

[Flashcoders] OOP methodology and flash. I'm loosing my faith...

2006-08-23 Thread Ricardo Sánchez
... well, not really but I thought it was good as I title I always use OOP for my flash projects but, even if I find it easier than timeline coding, I dont know if I'm taking all the advantage of OOP. I'm not even sure if I am aplying the correct patterns for every problem. My insecurity

[Flashcoders] Re: OOP methodology and flash. I'm loosing my faith...

2006-08-24 Thread Ricardo Sánchez
on the web, making it appear with some animation and making also the last one desapear... I ask this because 80% of the projects I make have that structure or very similar. And I think it can be helpfull to other people too. On 8/23/06, Ricardo Sánchez [EMAIL PROTECTED] wrote: ... well, not really

Re: [Flashcoders] OOP methodology and flash. I'm loosing my faith...

2006-08-25 Thread Ricardo Sánchez
names. I quite like the Absolver pattern ;p cheers ~neo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ricardo Sánchez Sent: 23 August 2006 06:34 PM To: Flashcoders mailing list Subject: [Flashcoders] OOP methodology and flash

Re: [Flashcoders] OOP methodology and flash. I'm loosing my faith...

2006-08-25 Thread Ricardo Sánchez
interfaces. oh well, that probably didn't make any sense i suppose, im not getting any decent sleep lately :) greets, Meinte On 8/25/06, Ricardo Sánchez [EMAIL PROTECTED] wrote: Ok, I see its not so easy for everyone. Can anyone point out some tutorial-like examples on internet

[Flashcoders] Re: Insert elements into an area dinamically

2006-09-06 Thread Ricardo Sánchez
No one? :P On 8/9/06, Ricardo Sánchez [EMAIL PROTECTED] wrote: Ok, I'll try to explain myself as best as possible. First take a look at this: http://www.pillandpillow .com/msfCongo/mainEng.html As you can see the main interface is a map of Congo composed of pictures and comments distributed

[Flashcoders] Flash upload problems

2006-09-14 Thread Ricardo Sánchez
Ok, I supposed this has been talked over and over a thousand times but I can't find a solution. We are trying to implement an upload for large files in flash. Our first approach was to use FileReference in Flash 8. But the backend guys said we should use something called struts for Java (no

Re: [Flashcoders] Flash upload problems

2006-09-15 Thread Ricardo Sánchez
is just a framework. http://struts.apache.org/ Muzak - Original Message - From: Ricardo Sánchez [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, September 14, 2006 10:32 AM Subject: [Flashcoders] Flash upload problems Ok, I supposed

[Flashcoders] Playing video backwards kills my CPU

2006-10-10 Thread Ricardo Sánchez
I have a .mov embebbed in the timeline as a movieclip. I have setted a stop to it so I play it with a codeline like this video.gotoAndStop (video._currentframe+1); It works perfectly, my problem comes when I want to play it backwards, I follow a similar procedure doing:

Re: [Flashcoders] Playing video backwards kills my CPU

2006-10-10 Thread Ricardo Sánchez
of memory space, and a preload time, but after that, you index the BitmapData you need, and it will work faster. I don't know if it is possible to draw a .mov frame in a BitmapData. If it's possible, tell us. David Buff - Original Message - From: Ricardo Sánchez [EMAIL PROTECTED] To: Flashcoders

[Flashcoders] Writing code for big teams

2006-11-08 Thread Ricardo Sánchez
Hi! Where I work we are about to begin a pretty big project collaborating with some other agencies. The thing is we are going to develop the main movie with the menus and other stuff where every other movie any agency develops is going to be loaded. I was thinking about writing an interface

Re: [Flashcoders] Writing code for big teams

2006-11-08 Thread Ricardo Sánchez
communication interface 2006/11/8, Ricardo Sánchez [EMAIL PROTECTED]: Hi! Where I work we are about to begin a pretty big project collaborating with some other agencies. The thing is we are going to develop the main movie with the menus and other stuff where every other movie any agency develops

Re: [Flashcoders] Writing code for big teams

2006-11-08 Thread Ricardo Sánchez
, Ricardo Sánchez [EMAIL PROTECTED] wrote: By registration code you mean register to a class? As in Object.registerClass() ? On 11/8/06, Janis Radins [EMAIL PROTECTED] wrote: just force them to execute some registration code on first frame of theyr movie and pass instance which will accept all

Re: [Flashcoders] Writing code for big teams

2006-11-13 Thread Ricardo Sánchez
They have to extend the MovieClip class in order to be able to do that, am I wrong? I mean, If I load an swf with loadMovie (instead of creating an instance with new) nothing assures me they are going to implement that class. I'm a little lost in the relationship between movies and classes

Re: [Flashcoders] Writing code for big teams

2006-11-22 Thread Ricardo Sánchez
around here these days :-) Ricardo Sánchez escribió: Man! I must be very dumb, but I don't know how to refer to the class that implements the interface from the main swf. On 11/21/06, Ricardo Sánchez [EMAIL PROTECTED] wrote: So, back to what you said earlier

Re: [Flashcoders] Writing code for big teams

2006-11-22 Thread Ricardo Sánchez
I forgot I'm thinking they should also have an intrinsic class for an object with global properties and stuff (not sure about this) On 11/22/06, Ricardo Sánchez [EMAIL PROTECTED] wrote: Argh! Finally got it working! Thanks all. I was missing some concepts in OOP for collaboration with teams

Re: [Flashcoders] Writing code for big teams

2006-11-22 Thread Ricardo Sánchez
'hackette'), but that's a matter of personal choice. Ian On 11/22/06, Ricardo Sánchez [EMAIL PROTECTED] wrote: I forgot I'm thinking they should also have an intrinsic class for an object with global properties and stuff (not sure about this) On 11/22/06, Ricardo Sánchez [EMAIL PROTECTED] wrote

[Flashcoders] Huge problems with preloader

2007-06-26 Thread Ricardo Sánchez
Hi all, It seems it's taking time to connect with the server or something. I'm trying this from spain and the server is in USA, so that might be the problem, I don't know. Anyway, what happens is when I try to load a swf of arround 130Kb and try to print something with onLoadProgress on screen

Re: [Flashcoders] Huge problems with preloader

2007-06-26 Thread Ricardo Sánchez
. On 6/26/07, Muzak [EMAIL PROTECTED] wrote: show us some code. where are you testing this? IDE, browser, local, server? 123Kb, Why does getBytesTotal show 1347693 ? compressed VS uncompressed size. regards, Muzak - Original Message - From: Ricardo Sánchez [EMAIL PROTECTED