Forums Zebulon.fr: Aide sur un script database.... - Forums Zebulon.fr

Aller au contenu

Aide sur un script database.... Noter : -----

#1 L'utilisateur est hors-ligne   Jack54 

  • Junior Member
  • Groupe : Membres
  • Messages : 2
  • Inscrit(e) : 20-octobre 08

Posté 29 novembre 2008 - 04:58

Bonjour,
J'ai acheté un Template pour un petit commerce en ligne pour vêtements et autres.
J'ai rajouté deux boutons pour des chaussures (un numericStepper et un pour les pointures); et un autre pour des accessoires divers "ACC".
Cela fonctionne sauf au niveau du panier qui n'affiche pas le détail des commandes l'une au-dessous de l'autre, mais sur une même ligne.
Il n'affiche pas non plus les tailles de chaussures ajoutées au panier (sauf la pointure 34)...
Le total des prix est bon.
Je pense que mon fichier "database" est incomplet...
Le voici :

meuXML.onLoad = function()  
{ 
 var childs:XMLNode = meuXML.firstChild; 
 var childTotal:Number = childs.childNodes.length; 
 _global.fcn = function()  
 { 
  for (var i = 0; i<childTotal; i++)  
  { 
   if (i != selecionado)  
   { 
    _parent.bar['bt'+i].enabled = true; 
    _parent.bar['bt'+i].useHandCursor = true; 
   } 
  } 
 } 
  
 //REMOVE PREVIOUSLY STORED MOVIECLIPS 
 for (var i = 0; i<getTotal; i++)  
  { 
   _parent.bar['bt'+i].removeMovieClip(); 
  } 
 
 _global.getTotal = childTotal; 
 _parent.bar.bt._visible = false; 
  
 //set variables 
 var v:Number = 4; //How Many Columns 
 var space:Number =2; //Space Between Products 
 var xIni:Number = 0; //x Cordinates 
 var yIni:Number = 0; //y Cordinates 
 var rows = bt._width + space; 
 var columns = bt._height + space; 
 
 //Easing Effect 
 function createColumns (s)  
 { 
  for (var i = 0; i<childTotal; i++)  
  { 
   posX = xIni + rows * (i % s); 
   posY = yIni + columns * int (i / s); 
   eval ("bt" + i).tween ("_x", posX, 0, "easeOutCubic", products.length); 
   eval ("bt" + i).tween ("_y", posY, 0, "easeOutCubic", products.length); 
  } 
 } 
  
  
 for (var i = 0; i<childTotal; i++) { 
   
  duplicateMovieClip ("bt", "bt" + i, i);//which item to duplicate 
  createColumns (v);//pass on the v variable ligne 27 
   
  /*************************/ 
  var nName    = (childs.childNodes[i].childNodes[0].firstChild.nodeValue); 
  var nPrice    = (childs.childNodes[i].childNodes[1].firstChild.nodeValue); 
  var nDescription = (childs.childNodes[i].childNodes[2].firstChild.nodeValue); 
  var nImage     = (childs.childNodes[i].childNodes[3].firstChild.nodeValue); 
  var nImageBig   = (childs.childNodes[i].childNodes[4].firstChild.nodeValue); 
  
  _parent.bar['bt'+i].picture._alpha = 0; 
  _parent.bar['bt'+i].picture.alphaTo(100,.3,'easeoutcubic',i*.15); 
  _parent.bar['bt'+i].picture.loadMovie(nImage) 
   
  //ONLOAD GET VARIABLES FROM XML 
  var loadName   = childs.childNodes[0].childNodes[0].firstChild.nodeValue; 
  var loadPrice    = childs.childNodes[0].childNodes[1].firstChild.nodeValue; 
  var loadDescription = childs.childNodes[0].childNodes[2].firstChild.nodeValue; 
  var loadImage   = childs.childNodes[0].childNodes[3].firstChild.nodeValue; 
  var loadImageBig  = childs.childNodes[0].childNodes[4].firstChild.nodeValue; 
    
  _parent.bar['bt'+i].nName    = nName 
  _parent.bar['bt'+i].nPrice    = nPrice 
  _parent.bar['bt'+i].nDescription = nDescription 
  _parent.bar['bt'+i].nImage    = nImage 
  _parent.bar['bt'+i].nImageBig   = nImageBig 
   
  //ADD SOUND 
  //clickSound = new Sound(); 
  //clickSound.attachSound("Click" ); // IMPORT YOUR AUDIO TO THE LIBRARY AND HAVE A LINKAGE ID NAMED "Click" 
   
  //PRODUCT ON ROLLOVER ACTION 
  _parent.bar['bt'+i].onRollOver = function()  
  { 
   this.fd_txt.colorTo(0xEBEBEB, 1); 
      //clickSound.start(); //REFER TO YOUR AUDIO ON WHICH EVER STATE 
  } 
   
  //PRODUCT ON ROLLOUT ACTION 
  _parent.bar['bt'+i].onRollOut = function()  
  { 
   this.fd_txt.colorTo(0xFFFFFF, 1); 
  } 
   
  //PRODUCT ON RELEASE ACTION 
  _parent.bar['bt'+i].onRelease = function()  
  { 
   this.fd_txt.colorTo(0xFFFFFF, 1); 
   _global.selecionado = this.i; 
   this.enabled = true; 
   this.useHandCursor = true; 
   fcn(); 
   
  //UPON RELEASE OF PRODUCT BUTTON - XML LOADS IMAGE / NAME / PRICE / DESCRIPTION ON TOP RIGHT 
   _parent._parent.orderform._visible = false; 
   _parent._parent.view_cart.gotoAndStop(1); 
   this._parent._parent.alvo.loadMovie(this.nImageBig) 
   this._parent._parent.des.description_txt.htmlText = "NOM DU PRODUIT: "+this.nName+"<br/><br/>"+"PRIX : € "+this.nPrice+"<br/><br/>"+this.nDescription; 
    
   this.onEnterFrame=function() 
   { 
       percent=Math.round((this._parent._parent.alvo.getBytesLoaded()/this._parent._parent.alvo.getBytesTotal())*100); 
       
    if(!isNan(percent)) 
    { 
          this._parent._parent.preloader._visible = true; 
    } 
       if(percent == 100) 
    { 
     this._parent._parent.preloader._visible = false; 
     delete this.onEnterFrame; 
       } 
   } 
/////////////////////////////////////////////////////////////////////////////////////< choix pour la sélection des produits 
   this._parent._parent.alvo._alpha = 0; 
   this._parent._parent.alvo.alphaTo(100,.3,'easeoutcubic',i*.05); 
 
  _parent._parent.quantity_ns.value = 1;//<<<<<<<< numeric stepper quantité 
  _global.NAME = this.nName; 
  _global.PRICE = this.nPrice; 
  _global.QUANTITY = 1; 
  _parent._parent.pointure_ns.value = 0;//<<<<<<<< numeric stepper pointure 
  _global.POINT = 34; 
   
  _parent._parent.small.onPress = function() // bouton Small 
   { 
   _parent._parent.total_fade.gotoAndPlay(2); 
      this._parent.additem(new _parent._parent.CartItem("S" + " " + NAME, PRICE, QUANTITY)); 
   } 
  _parent._parent.medium.onPress = function() // bouton Medium 
   { 
   _parent._parent.total_fade.gotoAndPlay(2); 
      this._parent.additem(new _parent._parent.CartItem("M" + " " + NAME, PRICE, QUANTITY)); 
   } 
  _parent._parent.large.onPress = function() // bouton Large 
   { 
   _parent._parent.total_fade.gotoAndPlay(2); 
      this._parent.additem(new _parent._parent.CartItem("L" + " " + NAME, PRICE, QUANTITY)); 
   } 
  _parent._parent.xlarge.onPress = function() // bouton XL 
   { 
   _parent._parent.total_fade.gotoAndPlay(2); 
      this._parent.additem(new _parent._parent.CartItem("XL" + " " + NAME, PRICE, QUANTITY)); 
   } 
  _parent._parent.divers.onPress = function() // bouton accessoires 
   { 
   _parent._parent.total_fade.gotoAndPlay(2); 
      this._parent.additem(new _parent._parent.CartItem("ACC" + " " + NAME, PRICE, QUANTITY)); 
   } 
  _parent._parent.point.onPress = function() // bouton pointures 
   { 
   _parent._parent.total_fade.gotoAndPlay(2); 
      this._parent.additem(new _parent._parent.CartItem("POINT" + " " + POINT, PRICE, QUANTITY)); 
   } 
  } 
 } 
  
 _parent.meuScroll.scroller._y = 0; //GET SCROLLBAR TO THE TOP 
   
 //ONLOAD GET PICTURE + DESCRIPTION 
 _parent.alvo.loadMovie(loadImageBig) 
 _parent.des.description_txt.html = true; 
 _parent.des.description_txt.htmlText = "NOM DU PRODUIT : "+loadName+"<br /><br />"+"PRIX : € "+loadPrice+"<br /><br />"+loadDescription; 
 } 

Quelqu'un pourrat-il me venir en aide ?
Merci.
Cordialement,
0

PUBLICITÉ

  • Annonces Google



Réponse rapide

  

Similar Topics
  Sujet Commencé par Statistiques Infos sur le dernier message
Sujet ouvert (nouvelles réponses) CPU à 100%, ordinateur ralenti, script ne répond plus Luca 
  • 3 réponses
  • 137 vues
Sujet ouvert (nouvelles réponses) Demande aide pour booter sur USB b noel 
  • 11 réponses
  • 288 vues
Sujet ouvert (nouvelles réponses) Demande d'aide pour interpréter HijackThis ilayah 
  • 6 réponses
  • 217 vues
Sujet ouvert (nouvelles réponses) Besoin d'aide pour ce code JavaScript
Ajouter un champ input text
caramela-bxl  
  • 0 réponses
  • 179 vues
Sujet ouvert (nouvelles réponses) Aide pour contrôle si infection + problème Avira jp9905 
  • 12 réponses
  • 619 vues
Sujet chaud (nouvelles réponses) [Résolu] PC qui rame - besoin d'aide
Envoyé par ab-web
Grenimarouille 
  • 26 réponses
  • 720 vues
Sujet ouvert (nouvelles réponses) Aide à la désinfection
PC très lent
dubitatus 
  • 0 réponses
  • 108 vues
Sujet ouvert (nouvelles réponses) [Résolu] Automatisation script VBS 9project 
  • 6 réponses
  • 336 vues
Sujet ouvert (nouvelles réponses) Besoin d'aide – virus « gendarmerie »
Nettoyer PC Vista infecté, sans accès réseau
clache 
  • 0 réponses
  • 204 vues
Sujet ouvert (nouvelles réponses) Aide pour désinfecter mon PC selenee 
  • 7 réponses
  • 288 vues

1 utilisateur(s) en train de lire ce sujet
0 membre(s), 1 invité(s), 0 utilisateur(s) anonyme(s)



    Page officielle Zebulon.fr