IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Flash Discussion :

hauteur animation dynamique


Sujet :

Flash

  1. #1
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut hauteur animation dynamique
    bonjour,
    dans ce site :
    http://www.actilife.ch/Documents/index.html#/fr/home/
    on remarque que la hauteur de l'animation est proportionnelle selon le contenu,
    comment on peut faire la hauteur dynamique selon le contenu ?
    merci

  2. #2
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    utilisation de la property scaleMode avec l'event onResize
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    stage.scaleMode= "noScale";
    stage.align = "TL";
    stage.addEventListener(Event.RESIZE, onResize);	
    public function onResize(ev:Event):void {
    	var stageWidth:Number=stage.stageWidth;
    	var stageHeight:Number= stage.stageHeight;		
    	//repositionnez vos éléments en fonction de la nouvelle taille
    };
    http://livedocs.adobe.com/flash/9.0/...html#scaleMode
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  3. #3
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    vous pouvez mettre [résolu] dans le sujet?
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  4. #4
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    désolé pas encore résolu,
    je vais inserer ou ce code ?
    dans l'HTML ou actionscript de l'animation ?
    il me signal une erreur quand je l'insere dans l'actionscript,
    The public attribute can only be used inside a package

  5. #5
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    Citation Envoyé par ferber Voir le message
    utilisation de la property scaleMode avec l'event onResize
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    stage.scaleMode= "noScale";
    stage.align = "TL";
    stage.addEventListener(Event.RESIZE, onResize);	
    public function onResize(ev:Event):void {
    	var stageWidth:Number=stage.stageWidth;
    	var stageHeight:Number= stage.stageHeight;		
    	//repositionnez vos éléments en fonction de la nouvelle taille
    };
    http://livedocs.adobe.com/flash/9.0/...html#scaleMode
    j'ai besoin de ton aide ferber, merci

  6. #6
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    Donc il faut insérer ce code dans votre animation swf
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
     
    //la première partis dans une méthode que vous exécutez au lancement de votre animation
     
    stage.scaleMode= "noScale";
    stage.align = "TL";
    stage.addEventListener(Event.RESIZE, onResize);	
    //et cette méthode dans la classe appelant le code ci dessus
    public function onResize(ev:Event):void {
    	var stageWidth:Number=stage.stageWidth;
    	var stageHeight:Number= stage.stageHeight;		
    	//repositionnez vos éléments en fonction de la nouvelle taille
    };
    exemple
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
     
    package 
    {
    	import flash.display.Stage;
    	import flash.display.Sprite;
    	import flash.events.Event;
    	public class Main extends Sprite
    	{
    		public function Main():void 
    		{
    			 if (stage) init();
    			else addEventListener(Event.ADDED_TO_STAGE, init);
     
    		}
    		private function init(e:Event = null):void 
    		{
    			removeEventListener(Event.ADDED_TO_STAGE, init);
    			stage.scaleMode= "noScale";
    			stage.align = "TL";
    			stage.addEventListener(Event.RESIZE, onResize);	
    		}
    		public function onResize(ev:Event):void {
    			var stageWidth:Number=stage.stageWidth;
    			var stageHeight:Number= stage.stageHeight;		
    			//repositionnez vos éléments en fonction de la nouvelle taille
    		}
    	}
    }
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  7. #7
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    Citation Envoyé par ferber Voir le message
    Donc il faut insérer ce code dans votre animation swf

    exemple
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
     
    package 
    {
    	import flash.display.Stage;
    	import flash.display.Sprite;
    	import flash.events.Event;
    	public class Main extends Sprite
    	{
    		public function Main():void 
    		{
    			 if (stage) init();
    			else addEventListener(Event.ADDED_TO_STAGE, init);
     
    		}
    		private function init(e:Event = null):void 
    		{
    			removeEventListener(Event.ADDED_TO_STAGE, init);
    			stage.scaleMode= "noScale";
    			stage.align = "TL";
    			stage.addEventListener(Event.RESIZE, onResize);	
    		}
    		public function onResize(ev:Event):void {
    			var stageWidth:Number=stage.stageWidth;
    			var stageHeight:Number= stage.stageHeight;		
    			//repositionnez vos éléments en fonction de la nouvelle taille
    		}
    	}
    }
    il me signal :
    erreur package unexpected

  8. #8
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    En as3 ce code doit être présent dans une classe unique, donc dans un seul fichiers.as.
    Dans l'exemple la classe est nommée Main.
    Donc il faut rajouter un classe Main a votre projet.
    Cette ci devant être enregistrée dans un fichier appelé Main.as.

    Cependant l'exemple été la pour vous expliquer le mode fonctionnement.
    Vous développez bien en As3 et pas en as2 ?
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  9. #9
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    Sinon testez le code suivant :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    stage.scaleMode= "noScale";
    stage.align = "TL";
    stage.addEventListener(Event.RESIZE, function(ev:Event):void {
    	var stageWidth:Number=stage.stageWidth;
    	var stageHeight:Number= stage.stageHeight;		
    	//repositionnez vos éléments en fonction de la nouvelle taille
    } );
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  10. #10
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    oui je développe en AS3 avec Flash CS4,
    voici mon code :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    import flash.display.Loader;
    var chargeur:Loader = new Loader();
    var adresseSWF:URLRequest = new URLRequest("a.swf");
    chargeur.load(adresseSWF);
    addChild(chargeur);
    chargeur.x = 100;
    chargeur.y = 300;
    stage.scaleMode= "noScale";
    stage.align = "TL";
    stage.addEventListener(Event.RESIZE, onResize);	
    function onResize(ev:Event):void {
    	var stageWidth:Number=stage.stageWidth;
    	var stageHeight:Number= stage.stageHeight;		
     
    	//repositionnez vos éléments en fonction de la nouvelle taille
    };
    mon but est de redimentionner le premier swf selon le deuxieme swf.
    car le deuxieme est plus grand en hauteur.
    avec ce code j'ai aucune erreur mais rien ne se passe

  11. #11
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    Vous voulez redimensionner la hauteur du swf dans la page html ?
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  12. #12
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    Citation Envoyé par ferber Voir le message
    Vous voulez redimensionner la hauteur du swf dans la page html ?
    je m'enfout l'essentiel le deuxieme wft apparait.

  13. #13
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    testez avec ce code
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
     
    var chargeur:Loader = new Loader();
    var adresseSWF:URLRequest = new URLRequest("a.swf");
     
    chargeur.contentLoaderInfo.addEventListener(Event.COMPLETE, function(event:Event):void {
    	var _loader:Loader = Loader(event.target.loader);
    	var sp:Sprite = Sprite(_loader.content);
            var MaxWidth:Number = sp.stage.stageWidth;
    	var MaxHeight:Number = sp.stage.stageHeight;
    	var ratio:Number=0;
    	if (sp.width>MaxWidth) {
    		var ww:Number = sp.width;
    		sp.width = MaxWidth;
    		ratio = sp.width/ww;
    		sp.height = sp.height*ratio;
    	}
    	if (sp.height>MaxHeight) {
    		var hh:Number =sp.height;
    		sp.height = MaxHeight;
    		ratio = sp.height/hh;
    		sp.width = sp.width*ratio;
    	}
        }
    );
    chargeur.load(adresseSWF);
    addChild(chargeur);
    chargeur.x = 0;
    chargeur.y = 0;
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  14. #14
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    Non sa fonctionne pas,
    http://www.actilife.ch/Documents/ind...tente/dossier/

    je voulais faire comme ce site ci-dessus

    j'ai swf pricipal et je charge des swfs de different hauteurs

  15. #15
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    Le swf secondaire n'est pas redimensionné ou il n'est pas affiché ?
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  16. #16
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    Citation Envoyé par ferber Voir le message
    Le swf secondaire n'est pas redimensionné ou il n'est pas affiché ?
    il est affiché mais uniquement une partie, l'autre partie est masqué car le premier swf a une hauteur plus petite que le deuxieme

  17. #17
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    donc pouvez vous tester le code suivant et me dire ce qui apparait dans la fenêtre de sorti
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
     
    chargeur.contentLoaderInfo.addEventListener(Event.COMPLETE, function(event:Event):void {
    	var _loader:Loader = Loader(event.target.loader);
    	trace("_loader"+_loader);
    	var sp:Sprite = Sprite(_loader.content);
     
    	trace("sp"+sp);
            var MaxWidth:Number = sp.stage.stageWidth;
    	trace("MaxWidth"+MaxWidth);
    	var MaxHeight:Number = sp.stage.stageHeight;
    	trace("MaxHeight"+MaxHeight);
    	trace("sp p x"+sp.parent.x);
    	trace("sp p y"+sp.parent.y);
    	trace("sp p w"+sp.parent.width);
    	trace("sp p h"+sp.parent.height);
     
    	trace("sp  x"+sp.x);
    	trace("sp  y"+sp.y);
    	trace("sp  w"+sp.width);
    	trace("sp  h"+sp.height);
    	var ratio:Number=0;
    	if (sp.width>MaxWidth) {
    		var ww:Number = sp.width;
    		sp.width = MaxWidth;
    		ratio = sp.width/ww;
    		sp.height = sp.height*ratio;
    	}
    	if (sp.height>MaxHeight) {
    		var hh:Number =sp.height;
    		sp.height = MaxHeight;
    		ratio = sp.height/hh;
    		sp.width = sp.width*ratio;
    	}
        }
    );
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  18. #18
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    voici ce reçois
    _loader[object Loader]
    sp[object MovieClip]
    MaxWidth950
    MaxHeight500
    sp p x100
    sp p y300
    sp p w302
    sp p h757.85
    sp x0
    sp y0
    sp w302
    sp h757.85
    au fait, j'ai trouvé ce lien :
    http://blog.deconcept.com/swfobject/

  19. #19
    Membre éprouvé

    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    612
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 612
    Points : 1 226
    Points
    1 226
    Par défaut
    testez comme ça :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
     
    chargeur.contentLoaderInfo.addEventListener(Event.COMPLETE, function(event:Event):void {
    	var _loader:Loader = Loader(event.target.loader);
    	trace("_loader"+_loader);
    	var sp:Sprite = Sprite(_loader.content);
     
    	trace("sp"+sp);
            var MaxWidth:Number = sp.stage.stageWidth-sp.parent.x;
    	trace("MaxWidth"+MaxWidth);
    	var MaxHeight:Number = sp.stage.stageHeight-sp.parent.y;
    	trace("MaxHeight"+MaxHeight);
    	trace("sp p x"+sp.parent.x);
    	trace("sp p y"+sp.parent.y);
    	trace("sp p w"+sp.parent.width);
    	trace("sp p h"+sp.parent.height);
     
    	trace("sp  x"+sp.x);
    	trace("sp  y"+sp.y);
    	trace("sp  w"+sp.width);
    	trace("sp  h"+sp.height);
    	var ratio:Number=0;
    	if (sp.width>MaxWidth) {
    		var ww:Number = sp.width;
    		sp.width = MaxWidth;
    		ratio = sp.width/ww;
    		sp.height = sp.height*ratio;
    	}
    	if (sp.height>MaxHeight) {
    		var hh:Number =sp.height;
    		sp.height = MaxHeight;
    		ratio = sp.height/hh;
    		sp.width = sp.width*ratio;
    	}
    	trace("sp after  x"+sp.x);
    	trace("sp after y"+sp.y);
    	trace("sp after w"+sp.width);
    	trace("sp after h"+sp.height);
        }
    );
    Flash player ActionScript Virtual Machine 2 http://www.mozilla.org/projects/tamarin/
    fonctionnement de la machine virtuel : (ActionScript Virtual Machine 2 (AVM2)) :
    http://www.adobe.com/content/dam/Ado...m2overview.pdf

  20. #20
    Membre averti
    Homme Profil pro
    Développeur Web
    Inscrit en
    Mai 2002
    Messages
    726
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Algérie

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Opérateur de télécommunications

    Informations forums :
    Inscription : Mai 2002
    Messages : 726
    Points : 352
    Points
    352
    Par défaut
    la deuxieme swf apparait completement mnt, mais il a changé de dimension, il est réduit pour qu'il apparaisse

Discussions similaires

  1. Personnage 3D animée dynamiquement
    Par debutanteVB.NET dans le forum Débuter
    Réponses: 1
    Dernier message: 09/03/2011, 00h31
  2. [Flex3] Hauteur datagrid dynamique en fonction des données
    Par bobkilla dans le forum MXML
    Réponses: 0
    Dernier message: 01/02/2011, 16h48
  3. Créer une animation dynamiquement
    Par sanouk dans le forum Windows Presentation Foundation
    Réponses: 1
    Dernier message: 23/12/2008, 09h56
  4. comment faire une animation dynamique
    Par artotal dans le forum ActionScript 3
    Réponses: 2
    Dernier message: 16/06/2008, 11h49
  5. Réponses: 8
    Dernier message: 17/10/2004, 15h34

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo