[Flashcoders] to increase and decrease the size of a video

2009-02-06 Thread Ricardo M. Portilho

Hi,
I was wondering if it is possible to action script a slider to increase and
decrease the size of a video component that plays flv or a for swf video on
a higher level than main movie.
Any ideas?

tanks,
R. 


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Starting a new thread

2009-02-06 Thread Ricardo M. Portilho


- Original Message - 
From: allandt bik-elliott (thefieldcomic.com) alla...@gmail.com

To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Thursday, February 05, 2009 2:26 PM
Subject: Re: [Flashcoders] Does Flash fire any event(s) when...


Excuse me friend and all friends,
I didn't mean to do this hijajacked threads was a mistake, I really sorry, 
and you are 100% right,

so I just send a new thread I hope you can help me,

my best regards
R.



you could certainly increase / decrease the scale of a clip/sprite
containing a video playing flv

could you start a new thread in future, please? - i find these hijacked
threads really hard to follow

thanks



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Does Flash fire any event(s) when...

2009-02-05 Thread Ricardo M. Portilho

Hi,
I was wondering if it is possible to action script a slider to increase and 
decrease the size of a video component that plays flv or a for swf video on 
a higher level than main movie.

Any ideas?

tanks,
R. 


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] OT: Happy Easter

2007-04-07 Thread Ricardo M. Portilho

Dear friends,

my deep and truthful and sincere wishes of a Happy Easter, with Peace, 
Health and Renovation in your lifes.


Ricardo 


___
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 Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] OT: Pirated Books -finishing this thread

2007-03-02 Thread Ricardo M. Portilho
Hey folks let´s move on... finishing this thread and caring about the 
FLASHCODERS MAIN FOCUS




___
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 Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Flash8: Duplicate Movie problem

2006-11-27 Thread Ricardo M. Portilho

Well Janis,

old fashion way, indeed, but works fine, at least in FlashMX,

yours:

line._y += 4;
line.duplicateMovieClip(tope+t, t);
t++;
if(line._y  75) {
stop();
}

shows the same problem when in Flash8 AS2,
but, thank you for try

obs:
/// will produce many MovieClips with same name, wich will cause tageting 
issues ///
yes, but it is exactly as I need, cause no issues , because is a quite 
light animation


thank you Janis.

Ricardo

- Original Message - 
From: Janis Radins [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, November 27, 2006 6:10 AM
Subject: Re: [Flashcoders] Flash8: Duplicate Movie problem


That code is so retard, get moving away from flash 4 syntax, it's 2006 out
there!

Try this:
line._y += 4;
line.duplicateMovieClip(tope+t, t);
t++;
if(line._y  75) {
stop();
}

And frame loops are bad fasion btw. Use SomeMovieClip.onEnterFrame or
setInterval() for timed loop.
One more thing is that duplicateMovieClip(line, tope, t); will produce
many MovieClips with same name, wich will cause tageting issues.


2006/11/27, Ricardo Portilho [EMAIL PROTECTED]:


Hello,

I am trying to use a simple duplicate movie in Flash8 AS2,
it works fine in FlashMX, but I can´t to translate it into AS2, Flah8:

movie clip Duplicate Line

Frame 1:
//obs: line is the mc instance name

setProperty(line, _y, getProperty(line, _y)+4);
duplicateMovieClip(line, tope, t);
t = t+1;
if (getProperty(line, _y)75) {
stop();
}

Frame 2 :

gotoAndPlay(1);

//end

thank you in advance,
Ricardo
___
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 Training
http://www.figleaf.com
http://training.figleaf.com


___
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 Training
http://www.figleaf.com
http://training.figleaf.com 


___
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 Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Flash8: Duplicate Movie problem

2006-11-27 Thread Ricardo M. Portilho

var t= this.getNextHighestDepth();

THAT'S IT :p)

Mike you went to the point,

working fine in Flash8

thank you both
Mike and Janis...

Ricardo



- Original Message - 
From: Mike Mountain [EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Monday, November 27, 2006 12:20 PM
Subject: RE: [Flashcoders] Flash8: Duplicate Movie problem


Sorry

var t= this.getNextHighestDepth();


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Mike Mountain
Sent: 27 November 2006 15:15
To: Flashcoders mailing list
Subject: RE: [Flashcoders] Flash8: Duplicate Movie problem

Whichever way you want to do it, in flash 8 you need to
instantiate t

Try adding:

var t= line.getNextHighestDepth();

To the begging of this

line._y += 4;
line.duplicateMovieClip(tope+t, t);
if(line._y  75) {
stop();
}

Or:

var t=0;

To the beginning of the original

Cheers

M

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of
 Ricardo Portilho
 Sent: 27 November 2006 09:01
 To: flashcoders@chattyfig.figleaf.com
 Subject: [Flashcoders] Flash8: Duplicate Movie problem

 Hello,

 I am trying to use a simple duplicate movie in Flash8 AS2, it works
 fine in FlashMX, but I can´t to translate it into AS2, Flah8:

 movie clip Duplicate Line

 Frame 1:
 //obs: line is the mc instance name

 setProperty(line, _y, getProperty(line, _y)+4);
 duplicateMovieClip(line, tope, t); t = t+1; if
 (getProperty(line, _y)75) {  stop(); }

 Frame 2 :

 gotoAndPlay(1);

 //end

 thank you in advance,
 Ricardo
 ___
 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 Training
 http://www.figleaf.com http://training.figleaf.com

___
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 Training
http://www.figleaf.com http://training.figleaf.com


___
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 Training
http://www.figleaf.com
http://training.figleaf.com 


___
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 Training
http://www.figleaf.com
http://training.figleaf.com