Zurück   Flashforum > Flash > ActionScript > ActionScript 1

Antwort
 
LinkBack Themen-Optionen Ansicht
Alt 05-10-2004, 09:51   #1 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
Question werte addieren

also ich habe voll die dumme frage ich wollte bei einem knopfdruck werte addieren. dabei wird zwischen eine r und einem f wert differenziert. und am ende soll er den wert zusammen gefügt haben. dabei ist es halt so das es keine begrenzung gibt. also es kann sein das es schon bei 10 kliks zu ende ist oder ach mal bei 20. ich habe das alles im einem frame drin.

ich hatte gedacht das es so geht :
ActionScript:
  1. r=0;
  2.     if (Key.isDown(Key.ENTER)) {
  3.                                       frage_out.text = "hallo!";
  4.             frage_out.setTextFormat(style);
  5.             r=Number(r)+1;
  6.             trace(r);
  7.     }
flozwo ist offline   Mit Zitat antworten
Alt 05-10-2004, 10:48   #2 (permalink)
AchimHomeZone
 
Benutzerbild von onip
 
Registriert seit: Feb 2002
Ort: Cöllefornia / Cologne / Kölle / Köln
Beiträge: 1.541
PHP-Code:
 r=0;
    if (
Key.isDown(Key.ENTER)) {
            
frage_out.text "hallo!";
            
frage_out.setTextFormat(style);
            if(
r>=20){
            
trace(r);
            }else{
            
r++;
            
trace(r);
            }
    } 
__________________
__________________


4. Lunyu 2.13.

Zi Gong fragte, was einen Flasher ausmache.
Konfuzius sprach: "Er predigt nur das, was er zuvor schon selbst in die Tat umgesetzt hat."
onip ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:02   #3 (permalink)
Neuer User
 
Registriert seit: Jan 2002
Beiträge: 1.244
Ich würde alles noch in ein EnterFrame packen, da die if ja abgefragt
werden muß.

zb:

PHP-Code:
0;
onEnterFrame = function ()
{
    if (
Key.isDown (Key.ENTER))
    {
        
frage_out.text "hallo!";
        
frage_out.setTextFormat (style);
        
Number (r) + 1;
        
trace (r);
    }
}; 
__________________
Mfg aus Brandenburg.

harego

Spiel

Zur Page
harego ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:06   #4 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
mmm okay
ja das hatte ich mir auch schon gedacht funtioniert aber nicht .
ich zeig euch mal den ganzen code den ich da geschrieben hatte
ActionScript:
  1. stop();
  2. //xml bindung
  3. // XML-Objekt erzeugen (Bezeichner: mein_xml)
  4. mein_xml = new XML();
  5. // Störende Leerzeichen ignorieren
  6. mein_xml.ignoreWhite = true;
  7. // XML-Datei einlesen
  8. mein_xml.load("quiz_old.xml");
  9. // Lesevorgang
  10. mein_xml.onLoad = function(status) {
  11.     if (status && this.loaded) {
  12.         anzahl = mein_xml.firstChild.childNodes.length;
  13.         geladen = true;
  14.         fragen = 0;
  15.         ladefragen(fragen);
  16. // hier müssen wir noch mal dran
  17.     }
  18. };
  19. // Funktion, welche die Daten der XML-Datei verarbeitet
  20.     function ladefragen(fragen) {
  21. // hier ist eine var die vorher bearbeitet werden soll
  22.     status_mc._visible = 1;
  23. //ausgabe des unterknoten der xml
  24.     id = mein_xml.firstChild.childNodes[fragen].attributes.id;
  25.     a = mein_xml.firstChild.childNodes[fragen].attributes.a;
  26.     b = mein_xml.firstChild.childNodes[fragen].attributes.b;
  27.     c = mein_xml.firstChild.childNodes[fragen].attributes.c;
  28.     d = mein_xml.firstChild.childNodes[fragen].attributes.d;
  29.     wahr = mein_xml.firstChild.childNodes[fragen].attributes.wahr;
  30.     frage = mein_xml.firstChild.childNodes[fragen].attributes.frage;
  31. // output the text in the data
  32.     //trace(wahr);
  33. //CSS for Flash für die Antworten (aqua)2D566C
  34.     style_ant = new TextFormat();
  35.     style_ant.bold = true;
  36.     style_ant.color=0x1E3E48
  37.     style_ant.size = 24;
  38.     style_ant.font = "Arial";
  39.     style_ant.multiline = true;
  40.     style_ant.wordWrap = true;
  41.     style_ant.autoSize = true;
  42.     //style_ant.border = true;
  43.     //style_ant.borderColor= 0x000000;
  44.     style.embedFonts = true;
  45. //CSS for Falsh Ende
  46.  
  47. //CSS for Flash für den rest(weiss)
  48.     style = new TextFormat();
  49.     style.bold = true;
  50.     style.color=0xffffff
  51.     style.size = 24;
  52.     style.font = "Arial";
  53.     //style.multiline = true;
  54.     style.wordWrap = true;
  55.     style.autoSize = true;
  56.     //style.border = true;
  57.     //style.borderColor= 0x000000;
  58.     style.embedFonts = true;
  59. //CSS for Falsh Ende    
  60.     //frage ---> Text felder<----//
  61. _root.createTextField("frage_out",1,50,40,400,250);
  62.     frage_out.text=frage;
  63.     frage_out.setTextFormat(style);
  64.     //antwort --->A
  65. _root.createTextField("a_out",5,65,265,130,31);
  66.     a_out.text=a;
  67.     a_out.setTextFormat(style_ant);
  68.     //antwort --->B
  69. _root.createTextField("b_out",6,350,265,130,31);
  70.     b_out.text=b;
  71.     b_out.setTextFormat(style_ant);
  72.     //antwort --->C
  73. _root.createTextField("c_out",7,65,315,130,31);
  74.     c_out.text=c;
  75.     c_out.setTextFormat(style_ant);
  76.     //antwort --->D
  77. _root.createTextField("d_out",8,350,315,130,31);
  78.     d_out.text=d;
  79.     d_out.setTextFormat(style_ant);
  80.     /// aussage ---> wrong /right
  81. _root.createTextField("kom",2,40,200,400,40);
  82.    
  83. /*
  84. this.createTextField("frage_out",1,50,40,400,100);
  85. with (frage_out) {
  86.     //type = "input";
  87.     font = "Arial";
  88.     html = false;
  89.     size = 24;
  90.     underline = false;
  91.     border = true;
  92.     //borderColor = 0x000000;
  93.     //background = true;
  94.     //backgroundColor = 0xffff00;
  95.     multiline = true;
  96.     wordWrap = true;
  97.     autoSize = true;
  98.     htmlText = frage;
  99. }
  100. */
  101.     stop();
  102.     var wahl_str:String = "";
  103.     var antwort_str:String = wahr;
  104. }  ///----> ende der xml daten
  105. _root.onEnterFrame = function() {
  106.     if (Key.isDown(65)) {
  107.         wahl_str = "a";
  108.         antwortA_mc._alpha = 100;
  109.         antwortB_mc._alpha = 10;
  110.         antwortC_mc._alpha = 10;
  111.         antwortD_mc._alpha = 10;
  112.     }
  113.     if (Key.isDown(66)) {
  114.         wahl_str = "b";
  115.         antwortB_mc._alpha = 100;
  116.         antwortA_mc._alpha = 10;
  117.         antwortC_mc._alpha = 10;
  118.         antwortD_mc._alpha = 10;
  119.     }
  120.     if (Key.isDown(67)) {
  121.         wahl_str = "c";
  122.         antwortC_mc._alpha = 100;
  123.         antwortA_mc._alpha = 10;
  124.         antwortB_mc._alpha = 10;
  125.         antwortD_mc._alpha = 10;
  126.     }
  127.     if (Key.isDown(68)) {
  128.         wahl_str = "d";
  129.         antwortD_mc._alpha = 100;
  130.         antwortA_mc._alpha = 10;
  131.         antwortB_mc._alpha = 10;
  132.         antwortC_mc._alpha = 10;
  133.     }
  134.     n= Number(1);
  135.     r= Number(0);
  136.     f= Number(0);
  137. //  --->Richtig Oder Falsch<---  //
  138.     if (Key.isDown(Key.ENTER)) {
  139.         if (wahl_str == wahr) {
  140.             right_kom.text = "Ihre Antwort war korrekt!";
  141.             right_kom.setTextFormat(style);
  142.             r=Number(r+1);
  143.             trace(r);
  144.             trace("---");
  145. //      einfügen der werter bedingung (adieren der richtigkeit!!
  146.         } else {
  147.             kom.text = "Ihre Antwort war leider falsch!";
  148.             kom.setTextFormat(style);
  149.             f=Number(f)+1;
  150.         }
  151.     }
  152.  
  153. if (wahl_str==wahr)
  154. {//ifstart
  155.     if (Key.isDown(Key.RIGHT))
  156.     {//if 2 start
  157.         if (geladen && fragen<anzahl-1)
  158.             {
  159.             fragen++;
  160.             ladefragen(fragen);
  161.             }
  162.         if (Key.isDown(Key.RIGHT)){
  163.         if(anzahl==id)
  164.         {// if anzahle == id 3
  165.         delete ("frage_out");
  166. //--->auswertung<---//
  167. _root.createTextField("bewerbung_out",2,20,20,400,40);
  168.     bewerbung_out.text="Hier ist Ihre Bewerbung:";
  169.     bewerbung_out.setTextFormat(style);
  170.  
  171. _root.createTextField("richtig_out",3,20,50,400,40);
  172.     richtig_out.text= Number (r/2);
  173.     richtig_out.setTextFormat(style);
  174.  
  175. _root.createTextField("falsch_out",4,20,80,400,40);
  176.     falsch_out.text=f;
  177.     falsch_out.setTextFormat(style);
  178.  
  179. }// if anzahle == id 3 ende
  180.         }// kick down on right ende
  181.     }//if 2 ende
  182. }//else{//if 1 ende}
  183.  
  184. };

und da soll der die werte ganz einfach nur addieren (r und f )
flozwo ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:24   #5 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
also was du mit dem onEnterFrame gemacht hast funktioniert beim addieren bloß nicht mehr mit dem bedienen des ganzen
flozwo ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:34   #6 (permalink)
Neuer User
 
Registriert seit: Jan 2002
Beiträge: 1.244
Was bekommst du denn getracet ? Für a ?
__________________
Mfg aus Brandenburg.

harego

Spiel

Zur Page
harego ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:37   #7 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
und so sieht die xml datei aus

Code:
<?xml version="1.0"?>
<bestellungen>
	<fragen id="1" a="stern" b="himmel" c="wasser" d="mond" wahr="a" frage="was ist richtig?"></fragen>
	<fragen id="2" a="zucker" b="satz" c="pfeffer" d="zimt" wahr="d" frage="was ist suess?"></fragen>
	<fragen id="3" a="stern" b="himmel" c="wasser" d="mond" wahr="a" frage="hallo welt3?"></fragen>
	<fragen id="4" a="zucker" b="satz" c="pfeffer" d="zimt" wahr="d" frage="rock?"></fragen>
	<fragen id="5" a="zucker" b="satz" c="pfeffer" d="zimt" wahr="c" frage="last?"></fragen>
	<fragen id="6"a="" b="" c="" d="" wahr="" frage=""></fragen>
</bestellungen>
flozwo ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:37   #8 (permalink)
Neuer User
 
Registriert seit: Jan 2002
Beiträge: 1.244
SChau mal bei dir , wo du die Vari definierst.

PHP-Code:
onEnterFrame = function ()
{
     
0;                         <=  Muß außerhalb der Enter Frame 
    
if (Key.isDown (Key.ENTER))
    {
        
frage_out.text "hallo!";
        
frage_out.setTextFormat (style);
        
Number (r) + 1;
        
trace (r);
    }
}; 
__________________
Mfg aus Brandenburg.

harego

Spiel

Zur Page
harego ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:45   #9 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
mmm die variable ist auserhalb des onenterframe
es geht aber ürgentwie nicht mit dem onenterframe
=(
bei der ausgabe trace (r);
sieht man das eine "schleife" daraus gemacht wird, die nicht stop
flozwo ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:48   #10 (permalink)
Neuer User
 
Registriert seit: Jan 2002
Beiträge: 1.244
In deinem Script sollte es jetzt so aussehen:

PHP-Code:
.
.
.
.
.
.

///----> ende der xml daten
Number (1);
Number (0);
Number (0);  <=== Die 3 Varis hier hin  verschieben
_root
.onEnterFrame = function ()
{
    if (
Key.isDown (65))
    {
        
wahl_str "a";
        
antwortA_mc._alpha 100;
        
antwortB_mc._alpha 10;
        
antwortC_mc._alpha 10;
        
antwortD_mc._alpha 10;
    }
    if (
Key.isDown (66))
    {
        
wahl_str "b";
        
antwortB_mc._alpha 100;
        
antwortA_mc._alpha 10;
        
antwortC_mc._alpha 10;
        
antwortD_mc._alpha 10;
    }
    if (
Key.isDown (67))
    {
        
wahl_str "c";
        
antwortC_mc._alpha 100;
        
antwortA_mc._alpha 10;
        
antwortB_mc._alpha 10;
        
antwortD_mc._alpha 10;
    }
    if (
Key.isDown (68))
    {
        
wahl_str "d";
        
antwortD_mc._alpha 100;
        
antwortA_mc._alpha 10;
        
antwortB_mc._alpha 10;
        
antwortC_mc._alpha 10;
    }
    
//  --->Richtig Oder Falsch<---  //
    
if (Key.isDown (Key.ENTER))
    {
        if (
wahl_str == wahr)
        {
            
right_kom.text "Ihre Antwort war korrekt!";
            
right_kom.setTextFormat (style);
            
Number (1);
            
trace (r);
            
trace ("---");
            
//            einfügen der werter bedingung (adier 
__________________
Mfg aus Brandenburg.

harego

Spiel

Zur Page
harego ist offline   Mit Zitat antworten
Alt 05-10-2004, 11:57   #11 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
Talking

warum funktioniert es auf einmal du hast doch nichts aderes gemacht aus das die variablen oben stehen ?
kannst du mir das erklären ?
und vielen vielen danke schon mal ist voll super von dir =)
flozwo ist offline   Mit Zitat antworten
Alt 05-10-2004, 12:08   #12 (permalink)
Neuer User
 
Registriert seit: Jan 2002
Beiträge: 1.244
Weil deine Varis in der EnterFrame standen.
Dadurch wurden sie bei jeden durchlauf auf "0" gesetzt.

Prüfe mal : Wenn du eine Richtige Antwort hast, die Entertaste gedrückt halten,
ob sich die Punkte nach oben schrauben
__________________
Mfg aus Brandenburg.

harego

Spiel

Zur Page
harego ist offline   Mit Zitat antworten
Alt 05-10-2004, 12:40   #13 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
Thumbs up

ja ich habe es ausprobiert und es funktionert wunderbar.
ich so stoz auf dich. =) danke danke
meinchmal sieht man den wald vollder bäume nicht
flozwo ist offline   Mit Zitat antworten
Alt 05-10-2004, 13:22   #14 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
ach ja weis was du meinst ich habe es jetzt was geändert aber jetzt muss ich nur noch so machen das die auswahl also a || b|| c ||d immer wieder neu geladen werden damit man nicht mehr so durchklicken kann.
flozwo ist offline   Mit Zitat antworten
Alt 05-10-2004, 13:38   #15 (permalink)
Neuer User
 
Registriert seit: Sep 2004
Beiträge: 888
Question

okay ich komme nciht drauf
mein kopf platz gleich
also das ist der code
ActionScript:
  1. stop();
  2. //xml bindung
  3. // XML-Objekt erzeugen (Bezeichner: mein_xml)
  4. mein_xml = new XML();
  5. // Störende Leerzeichen ignorieren
  6. mein_xml.ignoreWhite = true;
  7. // XML-Datei einlesen
  8. mein_xml.load("quiz_old.xml");
  9. // Lesevorgang
  10. mein_xml.onLoad = function(status) {
  11.     if (status && this.loaded) {
  12.         anzahl = mein_xml.firstChild.childNodes.length;
  13.         geladen = true;
  14.         fragen = 0;
  15.         ladefragen(fragen);
  16. // hier müssen wir noch mal dran
  17.     }
  18. };
  19. // Funktion, welche die Daten der XML-Datei verarbeitet
  20.     function ladefragen(fragen) {
  21. // hier ist eine var die vorher bearbeitet werden soll
  22.     status_mc._visible = 1;
  23. //ausgabe des unterknoten der xml
  24.     id = mein_xml.firstChild.childNodes[fragen].attributes.id;
  25.     a = mein_xml.firstChild.childNodes[fragen].attributes.a;
  26.     b = mein_xml.firstChild.childNodes[fragen].attributes.b;
  27.     c = mein_xml.firstChild.childNodes[fragen].attributes.c;
  28.     d = mein_xml.firstChild.childNodes[fragen].attributes.d;
  29.     wahr = mein_xml.firstChild.childNodes[fragen].attributes.wahr;
  30.     frage = mein_xml.firstChild.childNodes[fragen].attributes.frage;
  31. // output the text in the data
  32.     //trace(wahr);
  33. //CSS for Flash für die Antworten (aqua)2D566C
  34.     style_ant = new TextFormat();
  35.     style_ant.bold = true;
  36.     style_ant.color=0x1E3E48
  37.     style_ant.size = 24;
  38.     style_ant.font = "Arial";
  39.     style_ant.multiline = true;
  40.     style_ant.wordWrap = true;
  41.     style_ant.autoSize = true;
  42.     //style_ant.border = true;
  43.     //style_ant.borderColor= 0x000000;
  44.     style.embedFonts = true;
  45. //CSS for Falsh Ende
  46.  
  47. //CSS for Flash für den rest(weiss)
  48.     style = new TextFormat();
  49.     style.bold = true;
  50.     style.color=0xffffff
  51.     style.size = 24;
  52.     style.font = "Arial";
  53.     //style.multiline = true;
  54.     style.wordWrap = true;
  55.     style.autoSize = true;
  56.     //style.border = true;
  57.     //style.borderColor= 0x000000;
  58.     style.embedFonts = true;
  59. //CSS for Falsh Ende    
  60.     //frage ---> Text felder<----//
  61. _root.createTextField("frage_out",1,50,40,400,250);
  62.     frage_out.text=frage;
  63.     frage_out.setTextFormat(style);
  64.     //antwort --->A
  65. _root.createTextField("a_out",5,65,265,130,31);
  66.     a_out.text=a;
  67.     a_out.setTextFormat(style_ant);
  68.     //antwort --->B
  69. _root.createTextField("b_out",6,350,265,130,31);
  70.     b_out.text=b;
  71.     b_out.setTextFormat(style_ant);
  72.     //antwort --->C
  73. _root.createTextField("c_out",7,65,315,130,31);
  74.     c_out.text=c;
  75.     c_out.setTextFormat(style_ant);
  76.     //antwort --->D
  77. _root.createTextField("d_out",8,350,315,130,31);
  78.     d_out.text=d;
  79.     d_out.setTextFormat(style_ant);
  80.     /// aussage ---> wrong /right
  81. _root.createTextField("kom",2,40,375,400,40);
  82. // var ---> benehnung
  83.     stop();
  84.     var wahl_str:String = "";
  85.     var antwort_str:String = wahr;
  86. }  ///----> ende der xml daten
  87. // ----> Start der var für die auswertung
  88.     n = Number (1);
  89.     r = Number (0);
  90.     f = Number (0)
  91. // ----> Ende der var für die auswertung
  92.  
  93. _root.onEnterFrame = function ()
  94.     {
  95.     if (Key.isDown (65))
  96.     {
  97.         wahl_str = "a";
  98.         antwortA_mc._alpha = 100;
  99.         antwortB_mc._alpha = 10;
  100.         antwortC_mc._alpha = 10;
  101.         antwortD_mc._alpha = 10;
  102.     }
  103.     if (Key.isDown (66))
  104.     {
  105.         wahl_str = "b";
  106.         antwortB_mc._alpha = 100;
  107.         antwortA_mc._alpha = 10;
  108.         antwortC_mc._alpha = 10;
  109.         antwortD_mc._alpha = 10;
  110.     }
  111.     if (Key.isDown (67))
  112.     {
  113.         wahl_str = "c";
  114.         antwortC_mc._alpha = 100;
  115.         antwortA_mc._alpha = 10;
  116.         antwortB_mc._alpha = 10;
  117.         antwortD_mc._alpha = 10;
  118.     }
  119.     if (Key.isDown (68))
  120.     {
  121.         wahl_str = "d";
  122.         antwortD_mc._alpha = 100;
  123.         antwortA_mc._alpha = 10;
  124.         antwortB_mc._alpha = 10;
  125.         antwortC_mc._alpha = 10;
  126.     }
  127. // --->komplexe auswertung<--- //
  128. //  --->Richtig Oder Falsch<---  //
  129.     if (Key.isDown (Key.ENTER))
  130.     { //if 1 start
  131.                 if (wahl_str == wahr)
  132.         {//if 2 start
  133.                 r = Number (r + 1);
  134.                 if (geladen && fragen<anzahl-1)
  135.                 {//if 3 start
  136.                 fragen++;
  137.                 ladefragen(fragen);
  138.                 }//if 3 ende
  139. if(anzahl==id)
  140.         {//if anzahle == id
  141. //--->auswertung___richitg<---//
  142. _root.createTextField("bewerbung_out",2,20,20,400,40);
  143.     bewerbung_out.text="Hier ist Ihre Bewerbung:";
  144.     bewerbung_out.setTextFormat(style);
  145.  
  146. _root.createTextField("richtig_out",5,20,50,400,40);
  147.     richtig_out.text= Number (r);
  148.     richtig_out.setTextFormat(style);
  149.  
  150. _root.createTextField("falsch_out",6,20,80,400,40);
  151.     falsch_out.text=f;
  152.     falsch_out.setTextFormat(style);
  153.  
  154. }// if anzahle == id 3 ende
  155.         } else {
  156.             f=Number(f)+1;
  157.                 if (geladen && fragen<anzahl-1)
  158.                 {//if 4 start
  159.                 fragen++;
  160.                 ladefragen(fragen);
  161.                 if(anzahl==id)
  162.         {//if anzahle == id
  163. //--->auswertung___falsch<---//
  164. _root.createTextField("bewerbung_out",2,20,20,400,40);
  165.     bewerbung_out.text="Hier ist Ihre Bewerbung:";
  166.     bewerbung_out.setTextFormat(style);
  167.  
  168. _root.createTextField("richtig_out",5,20,50,400,40);
  169.     richtig_out.text= Number (r);
  170.     richtig_out.setTextFormat(style);
  171.  
  172. _root.createTextField("falsch_out",6,20,80,400,40);
  173.     falsch_out.text=f;
  174.     falsch_out.setTextFormat(style);
  175. }// if anzahle == id 3 ende
  176.                 }//if 4 ende
  177.         }//if 2 ende
  178.     }//if 1 ende
  179. };

und da muss eine function rein mit der die auswahl und die funtction ein reloadet bekommt.
flozwo ist offline   Mit Zitat antworten
Antwort

Lesezeichen

Themen-Optionen
Ansicht

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks sind an
Pingbacks sind an
Refbacks sind an



Alle Zeitangaben in WEZ +1. Es ist jetzt 13:31 Uhr.

Domains, Webhosting & Vserver von Host Europe
Unterstützt das Flashforum!
Adobe User Group


Copyright ©1999 – 2012 Marc Thiele