[Flashcoders] 5 Star Rating System

2006-07-31 Thread [EMAIL PROTECTED] Ammor

Thanks for the illumination!
However, here's a link with a nice voting system To Whom It May Concern...

http://www.flashkod.com/code.aspx?ID=18813 


___
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] 5 Star Rating System

2006-07-28 Thread [EMAIL PROTECTED] Ammor
Hi,
Can somebody give me a tutorial or a link to fla source of a nice 5 Star
Rating System with XML back end...

Pliz help !


___
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] Zoom effect

2006-04-20 Thread [EMAIL PROTECTED] Ammor

Thank you lols, but...

I'am afraid it's not what i'am looking for :)
I suggest that you install and run the offline Zinio reader on :
www.zinio.com 
They have a smart way to zoom into the flipping pages...
This is the same exact effect that i'am getting crazy to work!!

I know it's not flash based but ther's a mathematic stuff that could compute
the ratio of scaling object and position like on the reader...
Please save my life ;-)
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of MBDI ICSC
Rodrigo E. Curiel Salazar
Sent: mercredi 19 avril 2006 19:06
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Zoom effect

check this, closer to what you want, i think

http://www.sephiroth.it/file_detail.php?id=131

Rodrigo


On 4/19/06, Clint Tredway [EMAIL PROTECTED] wrote:


 Yup, I am working on a project that has a 'zoom' effect and the Tween
 class is what I am using to do it.
 Here is a link that was helpful to me.
 http://www.kirupa.com/developer/actionscript/tween.htm

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Julian
 'Julik' Tarkhanov
 Sent: Wednesday, April 19, 2006 1:44 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] Zoom effect


 On 19-apr-2006, at 19:04, [EMAIL PROTECTED] Ammor wrote:

  Hello,
 
  I' am getting crazy achieving some kind of zoom effect on my MC !!!
  If you just create any MC on the stage like a rectangle 300*500 px and

  put the code below in an empty frame, it will work...
 
  But what i want to do is like setting new coordinates on the scaled MC

  so that it takes the _xmouse/_ymouse click as the new center.
  I mean : when the user clicks, it scales 150 percent but reposition it

  self according to the mouse click as if it was the area zoomed into
  ;-)
 
  Sorry, I hope I was understood !!!
  Any kind ideas ?

 I found Tweens working perfectly for this type of job.

 on(press) {
import mx.transitions.Tween;
import mx.transitions.easing.*;

new Tween(this, _x, mx.transitions.easing.Regular.easeOut,
 this._x, _root._xmouse, 2, true);
new Tween(this, _y, mx.transitions.easing.Regular.easeOut,
 this._y, _root._ymouse, 2, true);
new Tween(this, _xscale,
 mx.transitions.easing.Regular.easeOut,
 this._xscale, this._xscale+10, 2, true);
new Tween(this, _yscale,
 mx.transitions.easing.Regular.easeOut,
 this._yscale, this._yscale+10, 2, true); }


 --
 Julian 'Julik' Tarkhanov
 me at julik.nl



 ___
 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


RE: [Flashcoders] Zoom effect

2006-04-20 Thread [EMAIL PROTECTED] Ammor

Oh, yes that's may be complete...

I may change some mouse functions too...
Cool, but where can we have the source ?


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Keith
Reinfeld
Sent: jeudi 20 avril 2006 18:49
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Zoom effect

Have a look at my 'Dynamic Zoom' piece and see if it is what you are looking
for (URL below). 

Click 'Gallery' then select 'Dynamic Zoom' from the 'Effects' menu. 

 

 

-Keith 

http://home.mn.rr.com/keithreinfeld 

 

 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Ammor
Sent: Thursday, April 20, 2006 7:39 AM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] Zoom effect

 

 

Thank you lols, but...

 

I'am afraid it's not what i'am looking for :)

I suggest that you install and run the offline Zinio reader on :

www.zinio.com 

They have a smart way to zoom into the flipping pages...

This is the same exact effect that i'am getting crazy to work!!

 

I know it's not flash based but ther's a mathematic stuff that could compute

the ratio of scaling object and position like on the reader...

Please save my life ;-)

 

 

-Original Message-

From: [EMAIL PROTECTED]

[mailto:[EMAIL PROTECTED] On Behalf Of MBDI ICSC

Rodrigo E. Curiel Salazar

Sent: mercredi 19 avril 2006 19:06

To: Flashcoders mailing list

Subject: Re: [Flashcoders] Zoom effect

 

check this, closer to what you want, i think

 

http://www.sephiroth.it/file_detail.php?id=131

 

Rodrigo

 

 

On 4/19/06, Clint Tredway [EMAIL PROTECTED] wrote:

 

 

 Yup, I am working on a project that has a 'zoom' effect and the Tween

 class is what I am using to do it.

 Here is a link that was helpful to me.

 http://www.kirupa.com/developer/actionscript/tween.htm

 

 -Original Message-

 From: [EMAIL PROTECTED]

 [mailto:[EMAIL PROTECTED] On Behalf Of Julian

 'Julik' Tarkhanov

 Sent: Wednesday, April 19, 2006 1:44 PM

 To: Flashcoders mailing list

 Subject: Re: [Flashcoders] Zoom effect

 

 

 On 19-apr-2006, at 19:04, [EMAIL PROTECTED] Ammor wrote:

 

  Hello,

 

  I' am getting crazy achieving some kind of zoom effect on my MC !!!

  If you just create any MC on the stage like a rectangle 300*500 px and

 

  put the code below in an empty frame, it will work...

 

  But what i want to do is like setting new coordinates on the scaled MC

 

  so that it takes the _xmouse/_ymouse click as the new center.

  I mean : when the user clicks, it scales 150 percent but reposition it

 

  self according to the mouse click as if it was the area zoomed into

  ;-)

 

  Sorry, I hope I was understood !!!

  Any kind ideas ?

 

 I found Tweens working perfectly for this type of job.

 

 on(press) {

import mx.transitions.Tween;

import mx.transitions.easing.*;

 

new Tween(this, _x, mx.transitions.easing.Regular.easeOut,

 this._x, _root._xmouse, 2, true);

new Tween(this, _y, mx.transitions.easing.Regular.easeOut,

 this._y, _root._ymouse, 2, true);

new Tween(this, _xscale,

 mx.transitions.easing.Regular.easeOut,

 this._xscale, this._xscale+10, 2, true);

new Tween(this, _yscale,

 mx.transitions.easing.Regular.easeOut,

 this._yscale, this._yscale+10, 2, true); }

 

 

 --

 Julian 'Julik' Tarkhanov

 me at julik.nl

 

 

 

 ___

 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

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

[Flashcoders] Zoom effect

2006-04-19 Thread [EMAIL PROTECTED] Ammor
Hello,

I’ am getting crazy achieving some kind of zoom effect on my MC !!!
If you just create any MC on the stage like a rectangle 300*500 px and put
the code below in an empty frame, it will work…

But what i want to do is like setting new coordinates on the scaled MC so
that it takes the _xmouse/_ymouse click as the new center.
I mean : when the user clicks, it scales 150 percent but reposition it self
according to the mouse click as if it was the area zoomed into ;-)

Sorry, I hope I was understood !!!
Any kind ideas ?

Her’s my code :

mc.onMouseDown = function() {
startX = this._x;
startY = this._y;
beginX = this._width;
beginY = this._height;

if (!this.scaled) {
this.onEnterFrame = scaleIt(150);
this.scaled = true;
} else {
this.onEnterFrame = scaleIt(100);
this.scaled = false;
}
};
function scaleIt(pScale) {
return function () {
this._xscale -= (this._xscale - pScale) * .1;
this._yscale -= (this._yscale - pScale) * .1;
this._x = ((beginX - this._width) / 2) + startX;
this._y = ((beginY - this._height) / 2) + startY;
};
}


___
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] PDF integration into flash

2006-02-24 Thread [EMAIL PROTECTED] Ammor

Hello,

It may seems a newbie question, but I' am just getting crazy to find any
tutorial or tips talking about PDF integration, zoom and search
functionalities into flash. I want to do some stuff like the well known
ZINIO reader: www.zinio.com 

So I want to include dynamically PDF file into my movie and integrate zoom
and search on it.

Please can anyone save my life?



___
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] PDF integration into flash

2006-02-24 Thread [EMAIL PROTECTED] Ammor
Yep, I've already checked it, but it gives this kind of built-in interface
with the intuitive toolbar to manipulate the document...
What I want is a method to integrate those functionalities and the PDF
document within my self made flash interface! 
Have you seen the zinio reader? www.zinio.com 

 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jim Tann
Sent: vendredi 24 février 2006 13:59
To: Flashcoders mailing list
Subject: RE: [Flashcoders] PDF integration into flash

Check out flash paper
http://www.macromedia.com/software/flashpaper/?promoid=BINU

Jim


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]
Ammor
Sent: 24 February 2006 13:46
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] PDF integration into flash


Hello,

It may seems a newbie question, but I' am just getting crazy to find any
tutorial or tips talking about PDF integration, zoom and search
functionalities into flash. I want to do some stuff like the well known
ZINIO reader: www.zinio.com 

So I want to include dynamically PDF file into my movie and integrate
zoom
and search on it.

Please can anyone save my life?



___
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