Thursday, July 29th 2010, 1:29pm UTC+2

You are not logged in.

  • Login
  • Register

[Flash MX] XML Produktslider

Madokan

Super Moderator

Posts: 1,654

Location: US/Germany

1

Tuesday, April 15th 2003, 12:14pm

XML Produktslider

Hi Folks,

Hier was zum rumspielen - bin sicher Ihr macht euch drüber her.

XML-Bestandteil:

ActionScript-Quelltext

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
mein_xml = new XML();
mein_xml.ignoreWhite true;
mein_xml.load("produkte.xml");
mein_xml.onLoad = function(status) {
    if (status) {
        obj_xml this.firstChild.childNodes;
        clipGen();
    }
};

function clipGen() {
    for (var 0obj_xml.lengthi++) {
        this.attachMovie("clip""clip" ii);        
        this["clip" i].anzeige_txt.text i+1;
        this["clip" i]._x this["clip" i]._width i;
        this["clip" i]._y 0;        
        this["clip" i].titel_txt.text obj_xml[i].attributes.titel;
        this["clip" i].datum_txt.text obj_xml[i].attributes.datum;
        this["clip" i].inhalt_txt.text obj_xml[i].firstChild;
        this["clip" i].bild_mc.loadMovie(obj_xml[i].attributes.bild);
        this["clip" i].url_btn.url obj_xml[i].attributes.links;        
        this["clip" i].url_btn.onRelease = function() {            
            getURL(this.url,"_blank");
        }
    }
}


Beispiel:
Beispiel Hor.
Beispiel Vert.

Be inspired.

Liebe Grüsse
Matze
[Flashstar]
Flashstar Site
[ActionScript - Praxis]
ActionScript Praxis - Buchinfo
[Flash 8 - HotStuff Buch]
Bestellung
[Flash 8 - Professional Series Buch]
Bestellung
[Flash CS3 Powerworkshops]
Bestellung
  • Go to the top of the page

Sven G.

Administrator

Posts: 3,343

Location: NRW / Bochum

2

Tuesday, April 15th 2003, 9:37pm

Habe ich mir gerade mal genauer angeschaut, cool gemacht :)
Schön Dynamisch...
Mit freundlichen Grüßen
Sven Gasser @ BountyKiller.de
Flashbattle.deGründer
webmaster@flashbattle.de
Flashbattle.de ActionScript Referenz
DELTA Agentur - Agentur für Werbung & Kommunikation
News aus der Medienwelt & mehr @ Delta Agentur twittert

(Kein Support per eMail, PN oder ICQ)

Irren ist menschlich, aber für das totale Chaos braucht man einen Computer :)
http://twitter.com/deltaagentur
  • Go to the top of the page

Madokan

Super Moderator

Posts: 1,654

Location: US/Germany

3

Wednesday, April 16th 2003, 1:26am

Yup und ich glaub der Slide-Effekt ist recht einfach nachzuvollziehen. Was so ein bissel Division ausmachen kann. :)

Liebe Grüsse
Matze
[Flashstar]
Flashstar Site
[ActionScript - Praxis]
ActionScript Praxis - Buchinfo
[Flash 8 - HotStuff Buch]
Bestellung
[Flash 8 - Professional Series Buch]
Bestellung
[Flash CS3 Powerworkshops]
Bestellung
  • Go to the top of the page

4

Monday, June 25th 2007, 10:50pm

eine doofe frage:
wie bekomme ich das ding in einen movieclip?
bin anfänger.
wenn ichs in nen clip ziehe und starte, hauen die bilder einfach ab oder werden nicht angezeigt......
  • Go to the top of the page