{lang: 'de'}
Flashhilfe.de - Flash Community

Thema: Array

Beiträge zum Thema "Array"
 
 Seite1 2
Benutzerbild von pmae

ArrayCollection nach Spaltennamen auslesen [Flex 3]
30.11.2010 - 4 Kommentare - Forum, Apache Flex / Adobe AIR - pmae
Schlagwörter: Array, ArrayCollection
Hallo, ich kriege das auslesen einer ArrayCollection nicht hin. Die Daten selber bekomme ich von SAP. Der ArrayCollection hat zwei Spalten mit den spaltennamen idfrom, idto. Meine Idee war nun folgende: var object:Object = new Object(); for [...]
Benutzerbild von powerdrive

Objekt in den Vordergrund bringen und skalieren [Flash 10]
29.09.2010 - 2 Kommentare - Forum, ActionScript 3.0 - powerdrive
Schlagwörter: Array, objekt, Vordergrund
Hallo Gemeinde, mit folgender Funktion, will ich ein Objekt eines Arrays bei MouseOver vergrössern: function fl_MouseOverHandler(e:MouseEvent):void { TweenLite.to(e.currentTarget, 1, { scaleX:2, scaleY:2}); } funktioniert auch prima [...]
Benutzerbild von fabi22

Zufallsgenerator, Bild.swf nur einmal geladen [Flash 8]
07.09.2010 - 9 Kommentare - Forum, Sonstige Flash Themen - fabi22
Guten Tag, Ich stehe vor einer mehr oder weniger komplexen Aufgabe mit Flash. Die Flash-Datei ist jetzt so Aufgebaut das in sogenannte "Container", insgesamt sind es 16 Container, verschiedene Bilder in swf-Datei hineingeladen werden. Also von [...]
Benutzerbild von Tsukikage

zufallsgenerator für satzteilkombination [Flash CS5]hallo, ich habe erst seit kurzem flash cs5 und versuche mich gerade da reinzuarbeiten. um einfach mal irgendwo anzufangen, hab ich erstmal vor, ein projekt zu basteln, bei dem zufällig satzteile zusammengesetzt werden sollen und dann einen ganz [...]
Benutzerbild von Felisuco

Daten über Datendienst in Array übergeben [Flex 3]
26.05.2010 - 1 Kommentar - Forum, Apache Flex / Adobe AIR - Felisuco
Schlagwörter: Array, Datendienst, Flex
Hi, ich habe nun schon eine Weile mit den Beispieltutorials zur Einbindung von Daten aus einer DB in ein DataGrid mittels Datendiensten herum experimentiert ( siehe ) Bei den Beispielen ist es immer so, dass ich mittels eines Dienstes einem Dat [...]
Benutzerbild von GERA-WERBUNG

Highscore Ausgabe array Problem [Flash 6]
09.05.2010 - 6 Kommentare - Forum, ActionScript 2.0 - GERA-WERBUNG
Schlagwörter: Array, Highscore, problem
Hallo an die Flash Gemeinde, ich habe ein dringendes Problem und suche mir hier im Forum bereits die Finger wund. Da es hier offensichtlich viele Leute gibt die deutlich mehr Ahnung haben als meine Wenigkeit, einmal die kurze Bitte um Hilfe. [...]
Benutzerbild von Dread

Tabelle aus Multidiemsionalen Arrays erzeugen. [Flash 10]
11.03.2010 - 1 Kommentar - Forum, ActionScript 3.0 - Dread
Guten Abend, Ich hoffe ich habe die ganze sache mit arrays nicht gänzlich falsch verstanden gehabt. Aber ich dachte das ich mit zwei verknüpften arrays auch eine art tabelle erstellen kann. Zu meinem Problem. Ich habe 36Felder. Jedes der Fe [...]
Benutzerbild von deflashoman

Array Strings ausfiltern [Flash 10]
04.03.2010 - 6 Kommentare - Forum, ActionScript 2.0 - deflashoman
Schlagwörter: Array, filtern
Hallo, Ich habe per aus der XML herraus mein Array gefüllt ! In diesem Array sind verschiedene Länder gespeichert: Deutschland, Holland, Belgien etc. Nun möchte ich gerne nur Deutschland aus dem Array angezeigt bekommen und alle anderen h [...]
Benutzerbild von Alagandor

Prototype: Array.findnumber [Flash 8]Prototype, um die Indexzahl eines Wertes zu erhalten Array.prototype.findnumber = function(eingabe) { for (i=0; i<=this.length; i++) { trace(this); if (eingabe == this) { return i; } } }; ; trace(Beispiel.findnumber("Wert4")); [...]
Benutzerbild von BackToDos

Prototype: Array.prototype.group [Flash 8]gruppiert und zählt die Elemente eines Arrays /** * diese Methode gruppiert alle Elemente eines Arrays zählt diese dann gruppenweise durch * und gibt ein Array zurück, welches an jeder Stelle ein Ursprungselement und seine Häufigkeit enthält [...]
Benutzerbild von BackToDos

Prototype: Array.prototype.walk [Flash 8]Führt eine Funktion für jeden Index eines Arrays aus = function (todo:Function) { for (var i:Number = 0;i<this.length;i++) { todo.apply(this,); } } //rechne Partialsummen einer Folge aus ... :D var f:Function = function (index:Number) [...]
Benutzerbild von BackToDos

Prototype: Array.prototype.fill [Flash 8]füllt ein Array /* gibt ein Array zurück, welches mit dem Ursprungsarray beginnt und auf die neue Länge mit einem bestimmten wert aufgefüllt wird. Ist die neue Länge kürzer als die Ursprungslänge, wird das Array einfach gekürzt. das urspr [...]
Benutzerbild von Vampire

Prototype: Array.removeEmpty() [Flash 8]
21.03.2006 - 0 Kommentare - Forum, Tipps & Tricks zu Flash, Flex und Adobe AIR - Vampire
Schlagwörter: Array, prototype
Enfernt leere Einträge aus einem Array Array.prototype.removeEmpty = function() : Array { var cache_array:Array = new Array(); for (i=0; i<this.length;i++) if (this); return cache_array; }; var test:Array = new Array(); test = "Holga"; [...]
Benutzerbild von Kai Jansen

Prototype: Array.copy [Flash 8]Kopiert ein Array Array.prototype.copy = function() { return this.slice(0, this.length); } ASSetPropFlags(Array.prototype,"copy" , 1, true); ; zweites_array = erstes_array.copy(); erstes_array.splice(0,2); trace("erstes_array = " + erstes_ [...]
Benutzerbild von Madokan

Prototype: Array.prototype.arrayToVar [Flash 8]
30.10.2004 - 5 Kommentare - Forum, Tipps & Tricks zu Flash, Flex und Adobe AIR - Madokan
Schlagwörter: Array, prototype
Array Elemente in Variablen überführen. // Array in Variablen umwandeln Array.prototype.arrayToVar = function(varname) { if (varname == undefined) varname = "variable"; for (var i = 0; i < this.length; i++) { _root; [...]
Benutzerbild von Kai Jansen

Prototype: Array.indexOf [Flash 8]Gibt den ersten vorkommenden Index in einem Array zurück Array.prototype.indexOf = function (s) { var index = -1; for (var i in this) { if (this == s) { index = i; } } index = (isNaN(index)) ? index : Number(index); return inde [...]
abgemeldeter Benutzer
Prototype: Array.addDim & Array.delDim [Flash 8]
25.05.2004 - 0 Kommentare - Forum, Tipps & Tricks zu Flash, Flex und Adobe AIR - .cYe
Schlagwörter: Array, prototype
Helferchen zur Arbeit mit mehrdimensionalen Arrays. // addDim fuegt ein oder mehrere Werte in einer neuen Dimension eines Arrays hinzu Array.prototype.addDim = function() { var arg, std = (arguments.length==1)? arguments : 0; for(var [...]
Benutzerbild von Madokan

Prototype: Array.unique [Flash 8]
04.02.2004 - 2 Kommentare - Forum, Tipps & Tricks zu Flash, Flex und Adobe AIR - Madokan
Schlagwörter: Array, prototype
Entfernt doppelte Einträge aus einem Array Array.prototype.unique = function() { for (var i = 0; i < this.length; i++) { for (var j = (i + 1); j <= this.length; j++) { if (this) { this.splice(j, 1); } } } }; // Verwenden [...]
Benutzerbild von Sebastian

Prototype: Array.maxLength [Flash 8]Länge des Arrays auf nr kürzen Array.prototype.maxLength = function(i) { if(i>0 && this.length>i) this.pop(), this.maxLength(i); else if(i<0 && this.length>i*-1) this.shift(), this.maxLength(i); } ; ary.maxLength(4); trace(ary); // a,b,c [...]
Benutzerbild von Madokan

Prototype: Array.findRemove [Flash 8]Eintrag suchen und entfernen! Array.prototype.findRemove = function(removeEntry) { return this.toString().split(removeEntry + ",").join("").split(","); }; // Verwenden liste = ; liste = liste.findRemove("Matze"); trace(liste [...]
Benutzerbild von Kai Jansen

Prototype: Array.lastIndexOf() [Flash 8]Gibt den letzten vorkommenden Index aus einem Array zurück. Array.prototype.lastIndexOf = function (s) { var index = -1; for (var i in this) { if (this == s) { index = i; break; } } index = (isNaN(index)) ? index : Number(ind [...]
Benutzerbild von Sebastian

Prototype: Array.find [Flash 8]Findet Eintrag im Array und gibt true zurück Array.prototype.find = function(eingabe) { for(var i in this) if(this === eingabe) return true; return false; } ASSetPropFlags(Array.prototype,"find",1,true); ; trace(test_ary.find("Fr 02.0 [...]
Benutzerbild von Sebastian

Prototype: Array.rand [Flash 8]Liefert einen oder mehrere zufällige Einträge eines Arrays Array.prototype.rand = function(nr,i,temp_ary,temp_ary_2) { if(temp_ary.length == undefined) { var i = 0, temp_ary = ; for(var j in this) temp_ary_2.push(this); } i++; if(i< [...]
Benutzerbild von Sebastian

Prototype: Array.shuffle [Flash 8]Array in zufälliger Reihenfolge sortieren // ## Ohne Typ Umwandlung: ############################ function rand() { return random(3)-1; } Array.prototype.shuffle = function() { return this.sort(rand); } ASSetPropFlags(Array.prototy [...]
Benutzerbild von Sebastian

Prototype: Array_unique(); [Flash 8]Entfernt doppelte Werte aus einem Array // FH Array_unique // // Copyright (C) 2003 Sebastian Wichmann :: sebastian at flashhilfe.de // This Software is distributed under the GNU General Public License. // // http://www.flashhilfe.de [...]
 Seite1 2
Partner Webseiten: art-and-law.de  Mediengestalter.info   phpwelt.de   Scubacube.de  
Haftungsausschluss   Datenschutzerklärung   Impressum
© 1999-2024 Sebastian Wichmann - Flashhilfe.de