Re: [Flashcoders] rotate gradient fill

2006-02-24 Thread Janis Radins
it seems that matrix of form {a, b, c, d, e, f, g, h, i} is capable of doing
this job
i found matrix implementation that allows this kindof manipulations at
http://www.flashadvisor.com/forum/viewtopic.php?t=380start=0 and seems that
after transfering ti to AS2 and slight modifications it might help
anyways, that just isnt logical that one kind of matrix does something that
other kind doesnt while they shsould be equal
shame on you Adobe :)

2006/2/24, Josh McDonald [EMAIL PROTECTED]:

 Yeah my bad, I didn't think flash could do a skewed radial gradient. Now
 it makes sense :)

 --

 His comrades fought beside him, Van Owen and the rest...
But of all the thompson gunners- Roland was the best.

 Josh McDonald
 Analyst Programmer
 Information Technology
 Ph: 61 7 3006 6460
 Email: [EMAIL PROTECTED]


  [EMAIL PROTECTED] 24/02/2006 9:40:41 am 

 :)

 it's probably not a joke.

 if the height and width values are non-identical, then rotating would
 have
 an effect (the fill is not radially symetrical).

 anyway, I don't know the answer to the question, but maybe the rotation
 is
 being performed before the scaling (this would probably not have any
 visible
 effect)


 glenn


 - Original Message -
 From: Josh McDonald [EMAIL PROTECTED]
 To: flashcoders@chattyfig.figleaf.com
 Sent: Friday, February 24, 2006 9:22 AM
 Subject: Re: [Flashcoders] rotate gradient fill


 Dude is this a joke? What do you get when you rotate a circle? Or are
 you just trying to say something else? If it's not, what are you
 expecting to happen when you change r for a radial gradient?

 -Josh

 --

 His comrades fought beside him, Van Owen and the rest...
But of all the thompson gunners- Roland was the best.

 Josh McDonald
 Analyst Programmer
 Information Technology
 Ph: 61 7 3006 6460
 Email: [EMAIL PROTECTED]


  [EMAIL PROTECTED] 23/02/2006 11:58:42 pm 

 Hello people!

 Just noticed that beginGradientFill matrix r property doesn't have any
 effect on radial fills.
 That might be my mistake as well, though i tested it with MM sample
 code and
 still no luck.
 this.createEmptyMovieClip(gradient_mc, this.getNextHighestDepth());
 with (gradient_mc) {
 colors = [0xFF, 0xFF];
 fillType = radial;
 alphas = [100, 100];
 ratios = [0, 0xFF];
 matrix = {matrixType:box, x:100, y:125, w:200, h:150,
 r:(90/180)*
 Math.PI};
 beginGradientFill(fillType, colors, alphas, ratios, matrix);
 moveTo(100, 100);
 lineTo(100, 300);
 lineTo(300, 300);
 lineTo(300, 100);
 lineTo(100, 100);
 endFill();
 }

 In this code changing 90 degrees to anything else has no effect at
 all.
 Anyone noticed this one before, maybe somebody have ideas how to make
 workaround?
 I know about Matrix object in flash player 8 that might help me with
 this
 problem but I'd like to avoid it and stay flash player 7 compatible as
 long
 as possible.

 Janis
 ___
 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








 ***
 Messages included in this e-mail and any of its attachments are those
 of the author unless specifically stated to represent WorkCover
 Queensland.
 The contents of this message are to be used for the intended purpose
 only
 and are to be kept confidential at all times.
 This message may contain privileged information directed only to the
 intended addressee/s. Accidental receipt of this information should be
 deleted promptly and the sender notified.
 This e-mail has been scanned by Sophos for known viruses.
 However, no warranty nor liability is implied in this respect.

 

 ___
 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








 ***
 Messages included in this e-mail and any of its attachments are those
 of the author unless specifically stated to represent WorkCover
 Queensland. The contents of this message are to be used for the intended
 purpose only

[Flashcoders] rotate gradient fill

2006-02-23 Thread Janis Radins
Hello people!

Just noticed that beginGradientFill matrix r property doesn't have any
effect on radial fills.
That might be my mistake as well, though i tested it with MM sample code and
still no luck.
this.createEmptyMovieClip(gradient_mc, this.getNextHighestDepth());
with (gradient_mc) {
colors = [0xFF, 0xFF];
fillType = radial;
alphas = [100, 100];
ratios = [0, 0xFF];
matrix = {matrixType:box, x:100, y:125, w:200, h:150, r:(90/180)*
Math.PI};
beginGradientFill(fillType, colors, alphas, ratios, matrix);
moveTo(100, 100);
lineTo(100, 300);
lineTo(300, 300);
lineTo(300, 100);
lineTo(100, 100);
endFill();
}

In this code changing 90 degrees to anything else has no effect at all.
Anyone noticed this one before, maybe somebody have ideas how to make
workaround?
I know about Matrix object in flash player 8 that might help me with this
problem but I'd like to avoid it and stay flash player 7 compatible as long
as possible.

Janis
___
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] rotate gradient fill

2006-02-23 Thread Josh McDonald
Dude is this a joke? What do you get when you rotate a circle? Or are
you just trying to say something else? If it's not, what are you
expecting to happen when you change r for a radial gradient?
 
-Josh
 
-- 
 
His comrades fought beside him, Van Owen and the rest...
   But of all the thompson gunners- Roland was the best.
 
Josh McDonald
Analyst Programmer
Information Technology
Ph: 61 7 3006 6460
Email: [EMAIL PROTECTED]


 [EMAIL PROTECTED] 23/02/2006 11:58:42 pm 

Hello people!

Just noticed that beginGradientFill matrix r property doesn't have any
effect on radial fills.
That might be my mistake as well, though i tested it with MM sample
code and
still no luck.
this.createEmptyMovieClip(gradient_mc, this.getNextHighestDepth());
with (gradient_mc) {
colors = [0xFF, 0xFF];
fillType = radial;
alphas = [100, 100];
ratios = [0, 0xFF];
matrix = {matrixType:box, x:100, y:125, w:200, h:150,
r:(90/180)*
Math.PI};
beginGradientFill(fillType, colors, alphas, ratios, matrix);
moveTo(100, 100);
lineTo(100, 300);
lineTo(300, 300);
lineTo(300, 100);
lineTo(100, 100);
endFill();
}

In this code changing 90 degrees to anything else has no effect at
all.
Anyone noticed this one before, maybe somebody have ideas how to make
workaround?
I know about Matrix object in flash player 8 that might help me with
this
problem but I'd like to avoid it and stay flash player 7 compatible as
long
as possible.

Janis
___
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







***
Messages included in this e-mail and any of its attachments are those
of the author unless specifically stated to represent WorkCover Queensland. The 
contents of this message are to be used for the intended purpose only and are 
to be kept confidential at all times.
This message may contain privileged information directed only to the intended 
addressee/s. Accidental receipt of this information should be deleted promptly 
and the sender notified.
This e-mail has been scanned by Sophos for known viruses.
However, no warranty nor liability is implied in this respect.


___
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] rotate gradient fill

2006-02-23 Thread pixelassembly
:)

it's probably not a joke.

if the height and width values are non-identical, then rotating would have
an effect (the fill is not radially symetrical).

anyway, I don't know the answer to the question, but maybe the rotation is
being performed before the scaling (this would probably not have any visible
effect)


glenn


- Original Message - 
From: Josh McDonald [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Friday, February 24, 2006 9:22 AM
Subject: Re: [Flashcoders] rotate gradient fill


Dude is this a joke? What do you get when you rotate a circle? Or are
you just trying to say something else? If it's not, what are you
expecting to happen when you change r for a radial gradient?

-Josh

-- 

His comrades fought beside him, Van Owen and the rest...
   But of all the thompson gunners- Roland was the best.

Josh McDonald
Analyst Programmer
Information Technology
Ph: 61 7 3006 6460
Email: [EMAIL PROTECTED]


 [EMAIL PROTECTED] 23/02/2006 11:58:42 pm 

Hello people!

Just noticed that beginGradientFill matrix r property doesn't have any
effect on radial fills.
That might be my mistake as well, though i tested it with MM sample
code and
still no luck.
this.createEmptyMovieClip(gradient_mc, this.getNextHighestDepth());
with (gradient_mc) {
colors = [0xFF, 0xFF];
fillType = radial;
alphas = [100, 100];
ratios = [0, 0xFF];
matrix = {matrixType:box, x:100, y:125, w:200, h:150,
r:(90/180)*
Math.PI};
beginGradientFill(fillType, colors, alphas, ratios, matrix);
moveTo(100, 100);
lineTo(100, 300);
lineTo(300, 300);
lineTo(300, 100);
lineTo(100, 100);
endFill();
}

In this code changing 90 degrees to anything else has no effect at
all.
Anyone noticed this one before, maybe somebody have ideas how to make
workaround?
I know about Matrix object in flash player 8 that might help me with
this
problem but I'd like to avoid it and stay flash player 7 compatible as
long
as possible.

Janis
___
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







***
Messages included in this e-mail and any of its attachments are those
of the author unless specifically stated to represent WorkCover Queensland.
The contents of this message are to be used for the intended purpose only
and are to be kept confidential at all times.
This message may contain privileged information directed only to the
intended addressee/s. Accidental receipt of this information should be
deleted promptly and the sender notified.
This e-mail has been scanned by Sophos for known viruses.
However, no warranty nor liability is implied in this respect.


___
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] rotate gradient fill

2006-02-23 Thread Josh McDonald
Yeah my bad, I didn't think flash could do a skewed radial gradient. Now
it makes sense :)
 
-- 
 
His comrades fought beside him, Van Owen and the rest...
   But of all the thompson gunners- Roland was the best.
 
Josh McDonald
Analyst Programmer
Information Technology
Ph: 61 7 3006 6460
Email: [EMAIL PROTECTED]


 [EMAIL PROTECTED] 24/02/2006 9:40:41 am 

:)

it's probably not a joke.

if the height and width values are non-identical, then rotating would
have
an effect (the fill is not radially symetrical).

anyway, I don't know the answer to the question, but maybe the rotation
is
being performed before the scaling (this would probably not have any
visible
effect)


glenn


- Original Message - 
From: Josh McDonald [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Friday, February 24, 2006 9:22 AM
Subject: Re: [Flashcoders] rotate gradient fill


Dude is this a joke? What do you get when you rotate a circle? Or are
you just trying to say something else? If it's not, what are you
expecting to happen when you change r for a radial gradient?

-Josh

-- 

His comrades fought beside him, Van Owen and the rest...
   But of all the thompson gunners- Roland was the best.

Josh McDonald
Analyst Programmer
Information Technology
Ph: 61 7 3006 6460
Email: [EMAIL PROTECTED]


 [EMAIL PROTECTED] 23/02/2006 11:58:42 pm 

Hello people!

Just noticed that beginGradientFill matrix r property doesn't have any
effect on radial fills.
That might be my mistake as well, though i tested it with MM sample
code and
still no luck.
this.createEmptyMovieClip(gradient_mc, this.getNextHighestDepth());
with (gradient_mc) {
colors = [0xFF, 0xFF];
fillType = radial;
alphas = [100, 100];
ratios = [0, 0xFF];
matrix = {matrixType:box, x:100, y:125, w:200, h:150,
r:(90/180)*
Math.PI};
beginGradientFill(fillType, colors, alphas, ratios, matrix);
moveTo(100, 100);
lineTo(100, 300);
lineTo(300, 300);
lineTo(300, 100);
lineTo(100, 100);
endFill();
}

In this code changing 90 degrees to anything else has no effect at
all.
Anyone noticed this one before, maybe somebody have ideas how to make
workaround?
I know about Matrix object in flash player 8 that might help me with
this
problem but I'd like to avoid it and stay flash player 7 compatible as
long
as possible.

Janis
___
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







***
Messages included in this e-mail and any of its attachments are those
of the author unless specifically stated to represent WorkCover
Queensland.
The contents of this message are to be used for the intended purpose
only
and are to be kept confidential at all times.
This message may contain privileged information directed only to the
intended addressee/s. Accidental receipt of this information should be
deleted promptly and the sender notified.
This e-mail has been scanned by Sophos for known viruses.
However, no warranty nor liability is implied in this respect.


___
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







***
Messages included in this e-mail and any of its attachments are those
of the author unless specifically stated to represent WorkCover Queensland. The 
contents of this message are to be used for the intended purpose only and are 
to be kept confidential at all times.
This message may contain privileged information directed only to the intended 
addressee/s. Accidental receipt of this information should be deleted promptly 
and the sender notified.
This e-mail has been scanned by Sophos for known viruses.
However, no warranty nor liability is implied in this respect.


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com