tradurre da as3 a as2!!

andia

Utente Attivo
2 Giu 2008
68
0
6
buongiorno,
personalizzando MODERN PHOTO SLIDESHOW template di flash cs3 mi serviva aggiungere l'opzione SALVA IMMAGINE (clicco destra).
ho trovato il codice giusto in as3, (per aggiungere al codice già esistente) ma non funzionava sul template, dopo mi sono accorta che il template è in as2!!
qualcuno mi può aiutare a tradurre questo as3 in as2 per favore?

il codice in as3:

stop();

//create a new right click menu
var saveAs:ContextMenu = new ContextMenu();

//hide the default options
saveAs.hideBuiltInItems();

//create a new right click option
var menuItemOne:ContextMenuItem = new ContextMenuItem("Save As");

//add the option to your right click menu
saveAs.customItems.push(menuItemOne);

//associate the new right click contextMenu with the blue picture.
blue_mc.contextMenu = saveAs;

//what happens when saveAs is selected - call the downLoadPic function
menuItemOne.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, downLoadPic);

//fileReference is used to download file - also used for uploading
var downLoader:FileReference = new FileReference();

function downLoadPic(e:ContextMenuEvent):void {

//the second argument "blue.jpg" just gives the file a different name in the save as box - its optional
//the urlRequest is the link to the image on your server.
downLoader.download(new URLRequest("http://localhost/downloader/thumb1.jpg"), "blue.jpg");


}
 
Discussioni simili
Autore Titolo Forum Risposte Data
R Tradurre stringhe con php e google translator PHP 4
R Come faccio a far tradurre un mio video su Youtube? Social Media Marketing 2
asevenx tradurre sito wordpress in italiano WordPress 5
A BOOKLET GOOGLE - per tradurre le pagine del sito, ma solo in firefox e pochi altri Javascript 1
T tradurre pagine grazie a google Javascript 10
Z [Flash] Mostra tastiera AS3-AIR Flash 2
A [Flash] richiamare JS da AS3 Flash 0
P i bottoni in AS3 Flash 2
D [AS3] Problema con eventi Flash 0
D [AS3] Passare da un filmato ad un altro filmato Flash 0
I as3 php anomalie risposte dal server Flash 1
L Flash AS3: popolare array di oggetti presenti in libreria Flash 0
A AS3 o AS2 non retribuito Offerte e Richieste di Lavoro e/o Collaborazione 0
A AS3 mouse over Flash 0
Z [AS3] Rendere attivo pulsante dentro animazione di altro pulsante Flash 0
Z [Flash As3] Problema con bottoni - Error #1009 Flash 1
V RETRIBUITO - Cerco programmatore as2 / as3 - per realizzazione sito web Offerte e Richieste di Lavoro e/o Collaborazione 0
M Imparare as3 Flash 1
L menu a tendina as3 Flash 1
D Creare una thumbnail di un swf con AS3 Flash 3
F collegare flash con php attraverso input text (as3) Flash 1
A as3, flash Flash 0
S Piccolo problema con un ayout liquido in as2 Flash 1
M AS2 funzione goto su pulsante Flash 0
R Problema a caricare Galleria SWF esterna ''PieceMaker'' su frame AS2.0 Flash 0
P Posizionamento in AS2 Flash 2

Discussioni simili