Forum Info PC Forum Info PC est un forum informatique. Vous y trouverez des espaces de support, d’astuces et de tutoriels, de discussions... 2012-05-06T19:31:31+02:00 /feed.php?f=117&t=78&mode 2012-05-06T19:31:31+02:00 2012-05-06T19:31:31+02:00 /viewtopic.php?t=78&p=147#p147 <![CDATA[Re: Insérer son copyright au clic droit]]>
Image
Astuce validée !
Votre astuce a été validée par
darky.

Statistiques: Posté par darky — Dim 6 Mai 2012 19:31


]]>
2011-04-29T17:17:12+02:00 2011-04-29T17:17:12+02:00 /viewtopic.php?t=78&p=136#p136 <![CDATA[Insérer son copyright au clic droit]]> Insérer son copyright au clic droit


Image



Sommaire

  1. Introduction
  2. Astuce


I- Introduction

Cette astuce vous permet d'insérer un copyright au clic droit.

Informations :

  • Difficulté : Facile


II- Astuce

Insérer les infos au clic droit, faire :
- ajouter un nouveau calque
- puis fenêtre ==> action ou F9
- coller une des actions suivante selon la version ( AS2 ou AS3 )



-AS 2

Code : Tout sélectionner
  1. function doSomething() {
  2. }
  3. function doSomething2() {
  4.     getURL("http://........../", _blank);
  5. }
  6. MENU = new ContextMenu();
  7. MENU.hideBuiltInItems();
  8. Functioned = new ContextMenuItem("Pseudo ou Nom du site © 2010", doSomething);
  9. Functioned2 = new ContextMenuItem("Pseudo", doSomething2);
  10. MENU.customItems.push(Functioned);
  11. MENU.customItems.push(Functioned2);
  12. _root.menu = MENU;



-AS 3

Code : Tout sélectionner
  1. var my_menu:ContextMenu = new ContextMenu();
  2. my_menu.hideBuiltInItems();
  3.  
  4. var my_notice = new ContextMenuItem("Titre");
  5. var my_email = new ContextMenuItem("Mail");
  6. var my_copyright = new ContextMenuItem("Copyright - 2010");
  7.  
  8. my_copyright.enabled = false;
  9. my_copyright.separatorBefore = true;
  10.  
  11. function openLink(e:ContextMenuEvent):void{
  12. navigateToURL(new URLRequest("http://.............."));
  13. }
  14. my_notice.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openLink);
  15.  
  16. my_menu.customItems.push(my_notice, my_email, my_copyright);
  17.  
  18. contextMenu = my_menu;

Statistiques: Posté par Léa — Ven 29 Avr 2011 17:17


]]>