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

Thema: Movieclip

Beiträge zum Thema "Movieclip"
 
 Seite1 2 3 4 5
Benutzerbild von bill-da-machade

Prototype: Movieclip.Prototyp.ll_fills [Flash 8]Bitmap-Füllung aus Bibliothek auf mc anwenden (einfach) MovieClip.prototype.ll_fills = function(BitmapDataItem) { this._bdi = BitmapDataItem; var tile:BitmapData = BitmapData.loadBitmap(this._bdi); this.beginBitmapFill(tile); this.moveTo(0 [...]
Benutzerbild von bill-da-machade

Prototype: Movieclip.Prototyp.ll_fill [Flash 8]Bitmap-Füllung aus Bibliothek auf mc anwenden MovieClip.prototype.ll_fill = function(GlobalMarginLeft, GlobalMarginTop, GlobalMarginRight, GlobalMarginBottom, BitmapDataItem, BitmapDataAlpha, debug) { this._gml = GlobalMarginLeft; this._gmt = [...]
Benutzerbild von bill-da-machade

Prototype: Movieclip.Prototyp.ll_pos [Flash 8]Positions- und Eiganschaftswerte "fließend" ändern MovieClip.prototype.ll_pos = function(newHeight, newWidth, newX, newY, newSP, newSPD, newSPK, newAlpha, round, callback, debug) { this._dx = newX; this._dy = newY; this._dh = newHeight; t [...]
Benutzerbild von mathis

Prototype: rotateTo [Flash 8]Drehung mit Angabe des Zielwinkels, der Drehrichtung und der easing-Funktion // === dir === // short: den kurzen weg // long: den langen weg // ccw: gegen den uhrzeigersinn // cw: mit dem uhrzeigersinn MovieClip.prototype.rotateTo = function(e [...]
Benutzerbild von mathis

Prototype: smoothToMouse [Flash 8]Mausverfolgung mit Angabe der maximalen Geschwindigkeit und Abbremsen am Ende MovieClip.prototype.smoothToMouse = function(maxSpeed, brakeDist) { this.onEnterFrame = function() { var difX:Number = this._parent._xmouse - this._x; [...]
Benutzerbild von bill-da-machade

Prototype: Movieclip.Prototyp.Pause [Flash 8]MC auf seiner Zeitleite pausieren lassen MovieClip.prototype.kaffeepause= function(dur) { this.stop(); this.clearduration= function() { clearInterval(this.newduration); delete this.newduration; delete this.clear [...]
Benutzerbild von bill-da-machade

Prototype: Movieclip.Prototyp.FadeOut [Flash 8]MC ausblenden (_alpha) MovieClip.prototype.fadeOut = function(speed) { this.onEnterFrame = function() { this._alpha -= speed; if (this._alpha<=0) { delete this.onEnterFrame; this._visible = false; } }; }; mein_mc.fadeOut(3); [...]
Benutzerbild von bill-da-machade

Prototype: Movieclip.Prototyp.FadeIn [Flash 8]MC einblenden (_alpha) MovieClip.prototype.fadeIn = function(speed) { this.onEnterFrame = function() { this._alpha += speed; ac._visible = true; if (this._alpha>=100) { delete this.onEnterFrame; } }; }; mein_mc.fadeIn(3); [...]
Benutzerbild von bill-da-machade

Prototype: Movieclip.Prototyp._SHELL [Flash 8]Variablenwerte global schreiben und lesen // Um aus JEDER Zeitleiste oder Objektaktion heraus eine globale Variable zu definieren, setze ich auf den Prototype _SHELL. // Vorteil liegt darin, dass die Werte einer Variable ohne Pfadangaben erreichba [...]
Benutzerbild von bill-da-machade

Prototype: Movieclip.Prototyp.MoveObject [Flash 8]Object-Positionswechsel bei Ereignis // in einen frame der Hauptzeitleiste schreiben MovieClip.prototype.moveobject = function() { dest = _root.xnew; pos = this._x; vel = (dest-pos)/1.5; this._x += vel; }; // das auf den mc der sich [...]
Benutzerbild von Sickdog

Prototype: patternFill [Flash 8]MC mit Hintergrundbild füllen und repeaten // // MovieClip.patternFill(tile:String, width:Number, height:Number):Void // // author: Tobias Friese // date: 26.01.2006 // ///// requirements // // // » import flash.display.BitmapData; // » [...]
Benutzerbild von Sickdog

Prototype: createRectangleMC [Flash 8]schnell einen MC mit Rechteck erstellen // // MovieClip.createRectangleMC = function(instanceName:String, width:Number, height:Number, color:Color, alpha:Number, origin:String, depth:Number):MovieClip // // author: Tobias Friese // date: 25.01. [...]
Benutzerbild von Sickdog

Prototype: MovieClip.fitInto [Flash 8]MC auf Bereich skalieren // MovieClip.fitInto(width:Number, height:Number):Void // // Author: Tobias Friese // Date: 20.01.2006 // MovieClip.prototype.fitInto = function(width:Number, height:Number):Void { var targetRatio = width / height [...]
Benutzerbild von Madokan

Prototype: MovieClip.setzeMauszeiger [Flash 8]Benutzerdefinierter Mauszeiger // Benutzerdefinierte Mauszeiger MovieClip.prototype.setzeMauszeiger = function (unsichtbar) { if (unsichtbar) { Mouse.hide (); } this.onMouseMove = function () { this._x = _xmouse; this._y = _ymo [...]
Benutzerbild von Madokan

Prototype: MovieClip.setzeMausverfolger [Flash 8]Benutzerdefinierte Mausverfolger // Benutzerdefinierte Mausverfolger MovieClip.prototype.setzeMausverfolger = function (tempo) { this.onEnterFrame = function () { this._x += (_xmouse - this._x) / tempo; this._y += (_ymouse - this._y) / [...]
Benutzerbild von Madokan

Prototype: MovieClip.fpsmeter_extended [Flash 8]Bildrate (im Trace oder Textfeld) MovieClip.prototype.fpsmeter_extended = function (aktion, ausgabe) { if (aktion == "start") { this.zaehler = 0; this.onEnterFrame = function () { this.zaehler++; }; this.anzeigen = function [...]
Benutzerbild von Madokan

Prototype: MovieClip.prototype.fpsmeter [Flash 8]FPS Meter (Anzeige) MovieClip.prototype.fpsmeter = function () { this.zaehler = 0; this.onEnterFrame = function () { this.zaehler++; }; anzeigen = function () { trace(this.zaehler); this.z [...]
Benutzerbild von petalustik

Prototype: changeParam [Flash 8]smoothe Parameterveränderung MovieClip.prototype.changeParam = function(fps, step, param, aim, tol, mround) { /* create unique object: */ this = new Object(); this.mc = this; this.step = step; this.param = param; this.aim = aim; this [...]
Benutzerbild von Madokan

Prototype: MovieClip.prototype.ZoomIntDiv [Flash 8]Zoom-Effekt (IntDiv-Variante) MovieClip.prototype.ZoomIntervalDiv = function (pDim, pTempo, pBps) { var obj = this; clearInterval(obj.iv); obj.zoom = function () { if (obj._xscale < pDim - 1 / pTempo) { obj._xscale = obj._xs [...]
Benutzerbild von Madokan

Prototype: MovieClip.prototype.ZoomInt [Flash 8]Zoom-Effekt (Interval-Variante) MovieClip.prototype.ZoomInterval = function (pOption, pDim, pTempo, pBps) { var obj = this; clearInterval(obj.iv); if (pOption) { obj.zoomIn = function () { if (obj._xscale < pDim) { [...]
Benutzerbild von Madokan

Prototype: MovieClip.prototype.ZoomAdd [Flash 8]Zoom-Effekt (Add-Variante) MovieClip.prototype.ZoomAdd = function (pOption, pDim, pTempo) { if (pOption) { this.onEnterFrame = function () { if (this._xscale < pDim) { this._xscale = this._yscale += pTempo; } else [...]
Benutzerbild von Madokan

Prototype: MovieClip.prototype.ZoomPulsar [Flash 8]Zoom-Effekt (Pulsar-Variante) MovieClip.prototype.ZoomPulsar = function (pDim, pTempo) { this.onEnterFrame = function () { if (this._xscale < pDim) { this._xscale = this._yscale += pTempo; } else if (this._xscale > pDim) { [...]
Benutzerbild von Madokan

Prototype: MovieClip.prototype.ZoomDiv [Flash 8]Zoom-Effekt (Div-Variante) MovieClip.prototype.ZoomDiv = function (pDim, pTempo) { this.onEnterFrame = function () { if (this._xscale < pDim - 1 / pTempo) { this._xscale = this._xscale + (pDim - this._xscale) / pTempo; this._ysca [...]
Benutzerbild von Madokan

Prototype: Movieclip.leseTiefen [Flash 8]Hiermit können die belegten Tiefen ausgegeben werden // leseTiefen Funktion // - pMax bis zu welcher Tiefe soll analysiert werden // - Gibt die belegten Tiefen aus + MocieClip Namen MovieClip.prototype.leseTiefen = function(pMax) { var liste [...]
Benutzerbild von Madokan

Prototype: Movieclip.atmosphere [Flash 8]Atmosphere - Effekt MovieClip.prototype.atmosphere = function(pObj, pAnzahl, pBreite, pHoehe) { for (var i = 0; i<=pAnzahl; i++) { this.attachMovie(pObj, "flocke"+i, i); this._x = Math.round(Math.random()*pBreite); this._y = Math.round(M [...]
 Seite1 2 3 4 5
Partner Webseiten: art-and-law.de  Mediengestalter.info   phpwelt.de   Scubacube.de  
Haftungsausschluss   Datenschutzerklärung   Impressum
© 1999-2024 Sebastian Wichmann - Flashhilfe.de