Provabox
Dal Wiki di Scuola3D
(Differenze fra le revisioni)
Revisione 10:33, 20 Luglio 2006 Enrico (Discussione | contributi) ← Previous diff |
Revisione 11:04, 20 Luglio 2006 Enrico (Discussione | contributi) Next diff → |
||
Riga 1: | Riga 1: | ||
- | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | + | prova |
- | <HTML><HEAD><TITLE>help di scuola3D</TITLE> | + | |
- | <META http-equiv=Content-Type content="text/html; charset=windows-1252"> | + | |
- | <STYLE type=text/css>SPAN.foldopened { | + | |
- | BORDER-TOP-WIDTH: 1px; PADDING-RIGHT: 0.25em; PADDING-LEFT: 0.25em; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: xx-small; BACKGROUND: #e0e0e0; VISIBILITY: visible; BORDER-BOTTOM-WIDTH: 1px; PADDING-BOTTOM: 0em; CURSOR: pointer; COLOR: white; PADDING-TOP: 0em; FONT-FAMILY: monospace; BORDER-RIGHT-WIDTH: 1px | + | |
- | } | + | |
- | SPAN.foldclosed { | + | |
- | BORDER-TOP-WIDTH: 1px; PADDING-RIGHT: 0.25em; PADDING-LEFT: 0.25em; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: xx-small; BACKGROUND: #e0e0e0; VISIBILITY: hidden; BORDER-BOTTOM-WIDTH: 1px; PADDING-BOTTOM: 0em; CURSOR: pointer; COLOR: #666666; PADDING-TOP: 0em; FONT-FAMILY: monospace; BORDER-RIGHT-WIDTH: 1px | + | |
- | } | + | |
- | SPAN.foldspecial { | + | |
- | BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 0.1em; BORDER-TOP: #cccccc 1px; PADDING-LEFT: 0.1em; FONT-SIZE: xx-small; BACKGROUND: #e0e0e0; PADDING-BOTTOM: 0em; BORDER-LEFT: #cccccc 1px; CURSOR: pointer; COLOR: #666666; PADDING-TOP: 0em; BORDER-BOTTOM: #cccccc 1px solid; FONT-FAMILY: sans-serif | + | |
- | } | + | |
- | LI { | + | |
- | LIST-STYLE-TYPE: none | + | |
- | } | + | |
- | SPAN.l { | + | |
- | FONT-WEIGHT: bold; COLOR: red | + | |
- | } | + | |
- | A:link { | + | |
- | COLOR: black; TEXT-DECORATION: none | + | |
- | } | + | |
- | A:visited { | + | |
- | COLOR: black; TEXT-DECORATION: none | + | |
- | } | + | |
- | A:active { | + | |
- | COLOR: black; TEXT-DECORATION: none | + | |
- | } | + | |
- | A:hover { | + | |
- | BACKGROUND: #eeeee0; COLOR: black; TEXT-DECORATION: none | + | |
- | } | + | |
- | </STYLE> | + | |
- | <!-- ^ Position is not set to relative / absolute here because of Mozilla --> | + | |
- | <META content="Microsoft FrontPage 4.0" name=GENERATOR></HEAD> | + | |
- | <BODY> | + | |
- | <SCRIPT language=JavaScript> | + | |
- | // Here we implement folding. It works fine with MSIE5.5, MSIE6.0 and | + | |
- | // Mozilla 0.9.6. | + | |
- | + | ||
- | if (document.layers) { | + | |
- | //Netscape 4 specific code | + | |
- | pre = 'document.'; | + | |
- | post = ''; } | + | |
- | if (document.getElementById) { | + | |
- | //Netscape 6 specific code | + | |
- | pre = 'document.getElementById("'; | + | |
- | post = '").style'; } | + | |
- | if (document.all) { | + | |
- | //IE4+ specific code | + | |
- | pre = 'document.all.'; | + | |
- | post = '.style'; } | + | |
- | + | ||
- | function layer_exists(layer) { | + | |
- | try { | + | |
- | eval(pre + layer + post); | + | |
- | return true; } | + | |
- | catch (error) { | + | |
- | return false; }} | + | |
- | + | ||
- | function show_layer(layer) { | + | |
- | eval(pre + layer + post).position = 'relative'; | + | |
- | eval(pre + layer + post).visibility = 'visible'; } | + | |
- | + | ||
- | function hide_layer(layer) { | + | |
- | eval(pre + layer + post).visibility = 'hidden'; | + | |
- | eval(pre + layer + post).position = 'absolute'; } | + | |
- | + | ||
- | function hide_folder(folder) { | + | |
- | hide_folding_layer(folder) | + | |
- | show_layer('show'+folder); | + | |
- | + | ||
- | scrollBy(0,0); // This is a work around to make it work in Browsers (Explorer, Mozilla) | + | |
- | } | + | |
- | + | ||
- | function show_folder(folder) { | + | |
- | // Precondition: all subfolders are folded | + | |
- | + | ||
- | show_layer('hide'+folder); | + | |
- | hide_layer('show'+folder); | + | |
- | show_layer('fold'+folder); | + | |
- | + | ||
- | scrollBy(0,0); // This is a work around to make it work in Browsers (Explorer, Mozilla) | + | |
- | + | ||
- | var i; | + | |
- | for (i=1; layer_exists('fold'+folder+'_'+i); ++i) { | + | |
- | show_layer('show'+folder+'_'+i); } | + | |
- | } | + | |
- | function show_folder_completely(folder) { | + | |
- | // Precondition: all subfolders are folded | + | |
- | + | ||
- | show_layer('hide'+folder); | + | |
- | hide_layer('show'+folder); | + | |
- | show_layer('fold'+folder); | + | |
- | + | ||
- | scrollBy(0,0); // This is a work around to make it work in Browsers (Explorer, Mozilla) | + | |
- | + | ||
- | var i; | + | |
- | for (i=1; layer_exists('fold'+folder+'_'+i); ++i) { | + | |
- | show_folder_completely(folder+'_'+i); } | + | |
- | } | + | |
- | + | ||
- | + | ||
- | + | ||
- | function hide_folding_layer(folder) { | + | |
- | var i; | + | |
- | for (i=1; layer_exists('fold'+folder+'_'+i); ++i) { | + | |
- | hide_folding_layer(folder+'_'+i); } | + | |
- | + | ||
- | hide_layer('hide'+folder); | + | |
- | hide_layer('show'+folder); | + | |
- | hide_layer('fold'+folder); | + | |
- | + | ||
- | scrollBy(0,0); // This is a work around to make it work in Browsers (Explorer, Mozilla) | + | |
- | } | + | |
- | + | ||
- | function fold_document() { | + | |
- | var i; | + | |
- | var folder = '1'; | + | |
- | for (i=1; layer_exists('fold'+folder+'_'+i); ++i) { | + | |
- | hide_folder(folder+'_'+i); } | + | |
- | } | + | |
- | + | ||
- | function unfold_document() { | + | |
- | var i; | + | |
- | var folder = '1'; | + | |
- | for (i=1; layer_exists('fold'+folder+'_'+i); ++i) { | + | |
- | show_folder_completely(folder+'_'+i); } | + | |
- | } | + | |
- | + | ||
- | </SCRIPT> | + | |
- | <SPAN class=foldspecial onclick=fold_document()>All +</SPAN> <SPAN | + | |
- | class=foldspecial onclick=unfold_document()>All -</SPAN> | + | |
- | <P><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Help di Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> help di scuola3D </A> | + | |
- | <UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_1 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_1')">+</SPAN> <SPAN class=foldopened id=hide1_1 | + | |
- | onclick="hide_folder('1_1')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Accedere a Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Accedere a Scuola3D </A> | + | |
- | <UL id=fold1_1 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Registrarsi" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Registrarsi </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Scaricare il browser" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Scaricare il browser </A> | + | |
- | <LI><SPAN class=foldclosed id=show1_1_1 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_1_1')">+</SPAN> <SPAN class=foldopened id=hide1_1_1 | + | |
- | onclick="hide_folder('1_1_1')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Installare il browser" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Installare il browser </A> | + | |
- | <UL id=fold1_1_1 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Installazione avanzata" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Installazione avanzata | + | |
- | </A></LI></UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Lanciare il browser" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Lanciare il browser </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Entrare nella scuola virtuale" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Entrare nella scuola virtuale </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Scegliere il proprio avatar" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Scegliere il proprio avatar | + | |
- | </A></LI></UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_2 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_2')">+</SPAN> <SPAN class=foldopened id=hide1_2 | + | |
- | onclick="hide_folder('1_2')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Il browser di Scuola3d" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Il browser di Scuola3D </A> | + | |
- | <UL id=fold1_2 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Le finestre di testo" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Le finestre di testo </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Indicatori di posizione" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Indicatori di posizione </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=La barra di menu" | + | |
- | target=_blank><SPAN class=l>~</SPAN> La barra di menu </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Le schede" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Le schede </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Settaggi" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Settaggi </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=La barra delle icone" | + | |
- | target=_blank><SPAN class=l>~</SPAN> La barra delle icone </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=La finestra web integrata" | + | |
- | target=_blank><SPAN class=l>~</SPAN> La finestra web integrata | + | |
- | </A></LI></UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_3 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_3')">+</SPAN> <SPAN class=foldopened id=hide1_3 | + | |
- | onclick="hide_folder('1_3')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Interagire in Scuola3d" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Interagire in Scuola3d </A> | + | |
- | <UL id=fold1_3 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><SPAN class=foldclosed id=show1_3_1 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_3_1')">+</SPAN> <SPAN class=foldopened id=hide1_3_1 | + | |
- | onclick="hide_folder('1_3_1')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Muoversi su Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Muoversi su scuola3D </A> | + | |
- | <UL id=fold1_3_1 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Spostarsi con la tastiera" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Spostarsi con la tastiera </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Spostarsi con il mouse" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Spostarsi con il mouse </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Volare" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Volare </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Teletrasporto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Teletrasporto </A> | + | |
- | <UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Teletrasporto a posizioni preferite" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Teletrasporto <BR>a posizioni | + | |
- | preferite </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Teletrasporto ad oggetti etichettati" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Teletrasporto <BR>ad oggetti | + | |
- | etichettati </A> | + | |
- | <UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Teletrasporto da oggetto a oggetto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Teletrasporto <BR>da oggetto | + | |
- | ad oggetto </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Teletrasporto mediante comandi testuali" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Teletrasporto <BR>mediante | + | |
- | comandi testuali </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Teletrasporto dalla finestra web integrata" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Teletrasporto <BR>dalla | + | |
- | finestra web integrata </A></LI></UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Teletrasporto ad altro utente" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Teletrasporto <BR>ad altro | + | |
- | utente </A></LI></UL></LI></UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_3_2 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_3_2')">+</SPAN> <SPAN class=foldopened id=hide1_3_2 | + | |
- | onclick="hide_folder('1_3_2')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Mettersi in relazione con gli altri" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Mettersi in relazione con gli | + | |
- | altri </A> | + | |
- | <UL id=fold1_3_2 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Conversazioni pubbliche" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Conversazioni pubbliche </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Conversazioni private" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Conversazioni private </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Invio telegrammi" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Invio telegrammi </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Invio files" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Invio files </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Animazioni dell'avatar" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Animazioni dell'avatar | + | |
- | </A></LI></UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_3_3 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_3_3')">+</SPAN> <SPAN class=foldopened id=hide1_3_3 | + | |
- | onclick="hide_folder('1_3_3')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Mettersi in relazione con il Web" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Mettersi in relazione con il web | + | |
- | </A> | + | |
- | <UL id=fold1_3_3 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Semacode" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Semacode </A></LI></UL></LI></UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_4 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_4')">+</SPAN> <SPAN class=foldopened id=hide1_4 | + | |
- | onclick="hide_folder('1_4')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=I luoghi di Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> I luoghi di Scuola3d </A> | + | |
- | <UL id=fold1_4 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Mappa stradale di Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Mappa stradale di Scuola3D </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Ingresso" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Ingresso </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Infopoint" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Infopoint </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Centro_risorse" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Centro Risorse </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Bacheca" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Bacheca </A> | + | |
- | <LI>I progetti delle scuole </LI></UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Costruire su Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Costruire <BR>su Scuola3D </A> | + | |
- | <UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Istruzioni per costruire" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Istruzioni per costruire </A> | + | |
- | <UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Diritti sul terreno" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Diritti sul terreno </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Muovere un oggetto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Muovere un oggetto </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Duplicare un oggetto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Duplicare un oggetto </A> | + | |
- | <LI><SPAN class=foldclosed id=show1_5 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_5')">+</SPAN> <SPAN class=foldopened id=hide1_5 | + | |
- | onclick="hide_folder('1_5')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Definire un nuovo oggetto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Definire un nuovo un oggetto | + | |
- | </A> | + | |
- | <UL id=fold1_5 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Specificare il nome dell'oggetto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Specificare il nome | + | |
- | dell'oggetto </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Specificare la descrizione dell'oggetto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Specificare la descrizione | + | |
- | dell'oggetto </A> | + | |
- | <LI><SPAN class=foldclosed id=show1_5_1 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_5_1')">+</SPAN> <SPAN class=foldopened | + | |
- | id=hide1_5_1 onclick="hide_folder('1_5_1')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Specificare azioni su un oggetto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Specificare le azioni <BR>su | + | |
- | un oggetto </A> | + | |
- | <UL id=fold1_5_1 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Trigger" | + | |
- | target=_blank><SPAN class=l>~</SPAN> modalità di attivazione | + | |
- | <BR>di caratteristiche specifiche <BR>di un oggetto (trigger) </A> | + | |
- | <UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Trigger: Create" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Create </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Trigger: Bump" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Bump </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Trigger: Animate" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Activate </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Trigger: Adone" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Adone </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Trigger: §" | + | |
- | target=_blank><SPAN class=l>~</SPAN> § </A></LI></UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comandi" | + | |
- | target=_blank><SPAN class=l>~</SPAN> comandi </A> | + | |
- | <UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Animate" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Animate </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Astart" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Astart </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Astop" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Astop </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Color" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Color </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Corona" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Corona </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Examine" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Examine </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Frame" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Frame </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Light" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Light </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Move" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Move </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Name" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Name </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Noise" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Noise </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Picture" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Picture </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Rotate" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Rotate </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Sign" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Sign </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Solid" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Solid </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Sound" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Sound </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Teleport" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Teleport </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Texture" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Texture </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Url" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Url </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Visible" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Visible </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: Warp" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Warp </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Comando: tag" | + | |
- | target=_blank><SPAN class=l>~</SPAN> tag </A></LI></UL></LI></UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_5_2 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_5_2')">+</SPAN> <SPAN class=foldopened | + | |
- | id=hide1_5_2 onclick="hide_folder('1_5_2')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Informazioni standard associate all'oggetto" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Informazioni standard | + | |
- | <BR>associate all'oggetto </A> | + | |
- | <UL id=fold1_5_2 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Codice del proprietario" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Codice del proprietario </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Nome dle proprietario" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Nome del proprietario </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Data di costruzione" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Data di costruzione | + | |
- | </A></LI></UL></LI></UL></LI></UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Gli oggetti di Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Gli oggetti <BR>di Scuola3D </A> | + | |
- | <UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_6 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_6')">+</SPAN> <SPAN class=foldopened id=hide1_6 | + | |
- | onclick="hide_folder('1_6')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Classificazione degli oggetti di Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Classificazione degli oggetti | + | |
- | <BR>di Scuola3D </A> | + | |
- | <UL id=fold1_6 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><SPAN class=foldclosed id=show1_6_1 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_6_1')">+</SPAN> <SPAN class=foldopened | + | |
- | id=hide1_6_1 onclick="hide_folder('1_6_1')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Oggetti generici" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Oggetti generici </A> | + | |
- | <UL id=fold1_6_1 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><SPAN class=foldclosed id=show1_6_1_1 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_6_1_1')">+</SPAN> <SPAN class=foldopened | + | |
- | id=hide1_6_1_1 onclick="hide_folder('1_6_1_1')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Particolari categorie di oggetti" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Particolari categorie di | + | |
- | oggetti </A> | + | |
- | <UL id=fold1_6_1_1 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI>Porte | + | |
- | <LI>Tappeti </LI></UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_6_1_2 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_6_1_2')">+</SPAN> <SPAN class=foldopened | + | |
- | id=hide1_6_1_2 onclick="hide_folder('1_6_1_2')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Oggetti con particolari proprietà" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Oggetti con proprietà | + | |
- | particolari </A> | + | |
- | <UL id=fold1_6_1_2 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI>Cartelli </LI></UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Database degli oggetti" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Database degli oggetti | + | |
- | </A></LI></UL> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Oggetti modulari" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Oggetti modulari </A></LI></UL> | + | |
- | <LI><SPAN class=foldclosed id=show1_7 style="POSITION: absolute" | + | |
- | onclick="show_folder('1_7')">+</SPAN> <SPAN class=foldopened id=hide1_7 | + | |
- | onclick="hide_folder('1_7')">-</SPAN> <A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Rivestimenti degli oggetti di Scuola3D" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Rivestimenti degli oggetti | + | |
- | <BR>di Scuola3D </A> | + | |
- | <UL id=fold1_7 style="VISIBILITY: visible; POSITION: relative"> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Textures" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Textures </A> | + | |
- | <LI><A | + | |
- | href="http://www.scuola3d.eu/wiki/index.php?title=Mask" | + | |
- | target=_blank><SPAN class=l>~</SPAN> Mask | + | |
- | </A></LI></UL></LI></UL></LI></UL></LI></UL> | + | |
- | <SCRIPT language=JavaScript> | + | |
- | fold_document(); | + | |
- | </SCRIPT> | + | |
- | </BODY></HTML> | + |
Revisione 11:04, 20 Luglio 2006
prova