kann jemand helfen bitte?

enh2wschen

Mitglied
wie kann ich ein swf datei in einer flash upload machan

ich möchte in einem flash site swf da drin zusammen bauen

kann jemadn helfen bitte?

How do I load swf files into another Flash?
 
Zuletzt bearbeitet:
EDIT: since german doesn't seem to be your native language, i herewith cancel my comments.

it is no problem to make a posting in english if this is easier for you.

greetings
.
 
Zuletzt bearbeitet:
Du kannst eine externe swf in einen Container laden, den du vorher mit createEmptyMovieClip erstellt hast

You can load an external swf file into a container using the createEmptyMovieClip option of Flash

PHP:
 createEmptyMovieClip ("containerx",1); // Instanzname & Tiefe / instancename & depth
 loadMovie("Path of the file.swf",_root.containerx);
 
just a comment:

this example (as seen above) will only work if the code is placed on _root (primary timeline).

It might be better to use the return values of those functions:
PHP:
var container = this.createEmptyMovieClip("container", 5000);
container.loadMovie("my_movie.swf");

SWF-movies can be also loaded into levels:
PHP:
loadMovieNum("my_movie.swf", 2); // will load into level 2

greetings
.
 
Zuletzt bearbeitet:
ich danke euch herzlich
und kann ich irgendwie bestimmen sodass dies flash datei swf in bestimmten platzt sein solltet?
na z.B. wenn ich ein dokument mit width=600 und height=300 aufmache und ein swf datei ganz unten haben will, wie mache ich das?
bitte?
schulige dass so viele unversändliche fragen an euch stelle
ich kann deutsch net so gut :)

ihr seit so nett und hier gefählt mir einfach super
 
Zuletzt bearbeitet:
Klar, Du kannst den Container positionieren:
PHP:
var container = this.createEmptyMovieClip("container", 25);
container._x = 400; // x-position
container._y = 300; // y-position
container.loadMovie("foobar.swf");

Gruß
.
 
Tagchen,

Code:
mein_Container._x = 40; // Wert ändern! X-Position 
mein_Container._y = 40; // Wert ändern! Y-Position
mein_Container._xscale = 40; // Wert ändern! Skalierung in % X-Achse
mein_Container._yscale = 40; // Wert ändern! Skalierung in % Y-Achse

mein_Container._height = 40; // Wert ändern! Höhe in Pixel
mein_Container._width = 40; // Wert ändern! Breite in Pixel

Damit Solltest du deinen eingeleandenn Film positionieren können....

Gruß,
der Guru

/edit Datic du bist zu schnell
 
wow wie schnell ihr seid?
ich könnte eure hilfe gut gebrauchen,
morgen habe ich vor euch bissl zu nerven,weil ich an einem flashsite arbeite

und danke nochmal nochmal
ihr seit klasse , muss man sagen

es funktioniert klasse
 
Zurück