Accueil > Forum > > > > Correction de syntax pour passer un code As1 en As2
Correction de syntax pour passer un code As1 en As2
mercredi 3 novembre 2010 à 13:04:21 |
Correction de syntax pour passer un code As1 en As2

marine34000
|
Bonjour,
J'ai une partie d'un code en As1 qui ne marche pas quand je le passe en flash 8 script 2
Je pense que c'est le "(_global._popUpLevel==undefined) ? 20000"
avec le point d'interrogation.
Quelqu'un a une idée ?
Code PHP : #initclip 3
/*
FComboBoxClass
EXTENDS FScrollSelectListClass
This class manages a "pulldown" scrolling list.
*/
function FComboBoxClass()
{
_global._popUpLevel = (_global._popUpLevel==undefined) ? 20000 : _global._popUpLevel+1;
// Testing for _root's existence?
this.superHolder = _root.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel);
var testContainer = this.superHolder.createEmptyMovieClip("testCont", 20000);
var testBox = testContainer.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0);
if (testBox._name==undefined) {
// _root doesn't exist.
this.superHolder.removeMovieClip();
this.superHolder = this._parent.createEmptyMovieClip("superHolder" + _popUpLevel, _popUpLevel);
} else {
testContainer.removeMovieClip();
}
if (this.rowCount==undefined) {
this.rowCount=6;
this.editable = false;
}
this.itemSymbol = "FComboBoxItemSymbol";
this.init();
this.permaScrollBar = false;
this.proxyBox_mc.gotoAndStop(1);
this.width = this._width;
this.height =this.proxyBox_mc._height*this._yscale/100;
for (var i=0; i<this.labels.length; i++) {
this.addItem(this.labels[i], this.data[i]);
}
this.lastSelected = 0;
this.selectItem(0);
this._xscale = this._yscale = 100;
this.opened = false;
this.setSize(this.width);
this.highlightTop(false);
if (this.changeHandler.length>0) {
this.setChangeHandler(this.changeHandler);
}
this.onUnload = function()
{
this.superHolder.removeMovieClip();
}
this.setSelectedIndex(0, false);
this.value = "";
this.focusEnabled = true;
this.changeFlag = false;
}
FComboBoxClass.prototype = new FScrollSelectListClass();
Object.registerClass("FComboBoxSymbol", FComboBoxClass);
// ::: PUBLIC METHODS
FComboBoxClass.prototype.modelChanged = function(eventObj)
{
super.modelChanged(eventObj);
var event = eventObj.event;
if (event=="addRows" || event=="deleteRows") {
var diff = eventObj.lastRow - eventObj.firstRow + 1;
var mode = (event=="addRows") ? 1 : -1;
var len = this.getLength();
var lenBefore = len-mode*diff;
if (this.rowCount>lenBefore || this.rowCount>len) {
this.invalidate("setSize");
}
if (this.getSelectedIndex()==undefined) {
this.setSelectedIndex(0, false);
}
} else if (event=="updateAll") {
this.invalidate("setSize");
}
}
FComboBoxClass.prototype.removeAll = function()
{
if (!this.enable) {
return;
}
super.removeAll();
if (this.editable) this.value="";
this.invalidate("setSize");
}
FComboBoxClass.prototype.setSize = function(w)
{
if (w==undefined || typeof(w)!="number" || w<=0 || !this.enable) {
return;
}
this.proxyBox_mc._width = w;
this.container_mc.removeMovieClip();
this.measureItmHgt();
this.container_mc = this.superHolder.createEmptyMovieClip("container", 3);
this.container_mc.tabChildren = false;
this.setPopUpLocation(this.container_mc);
this.container_mc.attachMovie("FBoundingBoxSymbol", "boundingBox_mc", 0);
this.boundingBox_mc = this.container_mc.boundingBox_mc;
this.boundingBox_mc.component = this;
this.registerSkinElement(this.boundingBox_mc.boundingBox, "background");
this.proxyBox_mc._height = this.itmHgt;
this.numDisplayed = Math.min(this.rowCount, this.getLength());
if (this.numDisplayed<3) {
this.numDisplayed = Math.min(3, this.getLength());
}
this.height = this.numDisplayed * (this.itmHgt-2) + 2;
super.setSize(w, this.height);
this.attachMovie("DownArrow", "downArrow", 10);
this.downArrow._y = 0;
this.downArrow._width = this.itmHgt;
this.downArrow._height = this.itmHgt;
this.downArrow._x = this.proxyBox_mc._width-this.downArrow._width;
this.setEditable(this.editable);
this.container_mc._visible = this.opened;
this.highlightTop(false);
this.fader = this.superHolder.attachMovie("FBoundingBoxSymbol", "faderX", 4);
this.registerSkinElement(this.fader.boundingBox, "background");
this.fader._width = this.width;
this.fader._height = this.height;
this.fader._visible = false;
}
FComboBoxClass.prototype.setDataProvider = function(dp)
{
super.setDataProvider(dp);
this.invalidate("setSize");
this.setSelectedIndex(0);
}
FComboBoxClass.prototype.getValue = function()
{
if (this.editable) {
return this.fLabel_mc.getLabel();
} else {
return super.getValue();
}
}
FComboBoxClass.prototype.getRowCount = function()
{
return this.rowCount;
}
FComboBoxClass.prototype.setRowCount = function(count)
{
this.rowCount = (this.getLength()>count) ? Math.max(count,3) : count;
this.setSize(this.width);
var len = this.getLength();
if (len-this.getScrollPosition()<this.rowCount) {
this.setScrollPosition(len-(Math.min(this.rowCount, len)));
this.invalidate("updateControl");
}
}
FComboBoxClass.prototype.setEditable = function(editableFlag)
{
if (!this.enable) return;
this.editable = editableFlag;
if (!this.editable) {
this.onPress = this.pressHandler;
this.useHandCursor = false;
this.trackAsMenu = true;
this.attachMovie("FComboBoxItemSymbol", "fLabel_mc", 5, {controller:this, itemNum:-1});
this.fLabel_mc.onRollOver = undefined;
this.fLabel_mc.setSize(this.width-this.itmHgt+1, this.itmHgt);
this.topLabel = this.getSelectedItem();
this.fLabel_mc.drawItem(this.topLabel, false);
this.highlightTop(false);
} else {
this.attachMovie("FLabelSymbol", "fLabel_mc", 5);
this.fLabel_txt = this.fLabel_mc.labelField;
this.fLabel_txt.type = "input";
this.fLabel_txt._x = 4;
this.fLabel_txt.onSetFocus = this.onLabelFocus;
this.fLabel_mc.setSize(this.width-this.itmHgt-3);
delete this.onPress;
this.fLabel_txt.onKillFocus = function()
{
this._parent._parent.myOnKillFocus();
}
this.fLabel_mc.setLabel(this.value);
this.fLabel_txt.onChanged = function() {
this._parent._parent.findInputText();
}
this.downArrow.onPress = this.buttonPressHandler;
this.downArrow.useHandCursor = false;
this.downArrow.trackAsMenu = true;
}
}
FComboBoxClass.prototype.setEnabled = function(enabledFlag)
{
enabledFlag = (enabledFlag == undefined || typeof(enabledFlag)!="boolean") ? true : enabledFlag;
super.setEnabled(enabledFlag);
this.registerSkinElement(this.boundingBox_mc.boundingBox, "background");
this.proxyBox_mc.gotoAndStop( (this.enable) ? "enabled" : "disabled");
this.downArrow.gotoAndStop( (this.enable) ? 1 : 3);
if (this.editable) {
this.fLabel_txt.type = (enabledFlag) ? "input" : "dynamic";
this.fLabel_txt.selectable = enabledFlag;
} else if (enabledFlag) {
this.fLabel_mc.drawItem(this.topLabel, false);
this.setSelectedIndex(this.getSelectedIndex(), false);
}
this.fLabel_mc.setEnabled(this.enable);
this.fLabel_txt.onSetFocus = (enabledFlag) ? this.onLabelFocus : undefined;
}
FComboBoxClass.prototype.setSelectedIndex = function(index, flag)
{
super.setSelectedIndex(index, flag);
if (!this.editable) {
this.topLabel = this.getSelectedItem();
this.fLabel_mc.drawItem(this.topLabel, false);
} else {
this.value = (flag!=undefined) ? "" : this.getSelectedItem().label;
this.fLabel_mc.setLabel(this.value);
}
this.invalidate("updateControl");
}
FComboBoxClass.prototype.setValue = function(value)
{
if (this.editable) {
this.fLabel_mc.setLabel(value);
this.value = value;
}
}
// ::: PRIVATE METHODS
FComboBoxClass.prototype.pressHandler = function()
{
this.focusRect.removeMovieClip();
if (this.enable) {
if (!this.opened) {
this.onMouseUp = this.releaseHandler;
} else {
this.onMouseUp = undefined;
}
this.changeFlag = false;
if (!this.focused) {
this.pressFocus();
this.clickFilter = (this.editable) ? false : true;
}
if (!this.clickFilter) {
this.openOrClose(!this.opened);
} else {
this.clickFilter = false;
}
}
}
FComboBoxClass.prototype.clickHandler = function(itmNum)
{
if (!this.focused) {
if (this.editable) {
this.fLabel_txt.onKillFocus = undefined;
}
this.pressFocus();
}
super.clickHandler(itmNum);
this.selectionHandler(itmNum);
this.onMouseUp = this.releaseHandler;
}
FComboBoxClass.prototype.highlightTop = function(flag)
{
if (!this.editable) {
this.fLabel_mc.drawItem(this.topLabel, flag);
}
}
FComboBoxClass.prototype.myOnSetFocus = function()
{
super.myOnSetFocus();
this.fLabel_mc.highlight_mc.gotoAndStop("enabled");
this.highlightTop(true);
}
FComboBoxClass.prototype.drawFocusRect = function()
{
this.drawRect(-2,-2, this.width+4, this._height+4);
}
FComboBoxClass.prototype.myOnKillFocus = function()
{
if (Selection.getFocus().indexOf("labelField")!=-1) return; // if the label is in focus, don't kill my focus!
super.myOnKillFocus();
delete this.fLabel_txt.onKeyDown;
this.openOrClose(false);
this.highlightTop(false);
}
FComboBoxClass.prototype.setPopUpLocation = function(mcRef)
{
mcRef._x = this._x;
var point = { x : this._x, y : this._y + this.proxyBox_mc._height};
this._parent.localToGlobal(point);
mcRef._parent.globalToLocal(point);
mcRef._x = point.x;
mcRef._y = point.y;
if (this.height+mcRef._y>=Stage.height) {
this.upward = true;
mcRef._y = point.y-this.height - this.proxyBox_mc._height;
} else {
this.upward = false;
}
}
FComboBoxClass.prototype.openOrClose = function(flag)
{
if (this.getLength()==0) return;
this.setPopUpLocation(this.container_mc);
if (this.lastSelected!=-1 && (this.lastSelected<this.topDisplayed || this.lastSelected>this.topDisplayed+this.numDisplayed)) {
super.moveSelBy(this.lastSelected-this.getSelectedIndex());
}
//(flag) ? this.downArrow.gotoAndStop(2) : this.downArrow.gotoAndStop(1);
if (flag==this.opened) {
return ;
}
this.highlightTop(!flag);
this.fadeRate = this.styleTable.popUpFade.value;
if (!flag || this.fadeRate==undefined || this.fadeRate==0) {
this.opened = this.container_mc._visible = flag;
return;
}
// code for fading in - depends on a prop called popUpFade.
this.setPopUpLocation(this.fader);
this.time = 0;
this.const = 85 / Math.sqrt(this.fadeRate);
this.fader._alpha = 85;
this.container_mc._visible = this.fader._visible = true;
this.onEnterFrame = function()
{
this.fader._alpha = 100 - (this.const * Math.sqrt(++this.time) + 15);
if (this.time>=this.fadeRate) {
this.fader._visible = false;
delete this.onEnterFrame;
this.opened = true;
}
}
}
FComboBoxClass.prototype.fireChange = function()
{
this.lastSelected = this.getSelectedIndex();
if (!this.editable) {
this.topLabel = this.getSelectedItem();
this.fLabel_mc.drawItem(this.topLabel, true);
} else {
this.value=this.getSelectedItem().label;
this.fLabel_mc.setLabel(this.value);
}
this.executeCallback();
}
FComboBoxClass.prototype.releaseHandler = function()
{
var onCombo = this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse);
if (this.changeFlag) {
if (onCombo) {
this.fireChange();
}
this.openOrClose(!this.opened);
} else if (onCombo) {
this.openOrClose(false);
} else {
this.onMouseDown = function()
{
if (!this.boundingBox_mc.hitTest(_root._xmouse, _root._ymouse) && !this.hitTest(_root._xmouse, _root._ymouse)) {
this.onMouseDown = undefined;
this.openOrClose(false);
}
}
}
this.changeFlag=false;
this.onMouseUp=undefined;
clearInterval(this.dragScrolling);
this.dragScrolling = undefined;
}
FComboBoxClass.prototype.moveSelBy = function(itemNum)
{
if (itemNum!=0) {
super.moveSelBy(itemNum);
if (this.editable) {
this.setValue(this.getSelectedItem().label);
}
if (!this.opened) {
if (this.changeFlag && !this.isSelected(this.lastSelected)) {
this.fireChange();
}
}
}
}
FComboBoxClass.prototype.myOnKeyDown = function()
{
if (!this.focused) return ;
if (this.editable && Key.isDown(Key.ENTER)) {
this.setValue(this.fLabel_mc.getLabel());
this.executeCallback();
this.openOrClose(false);
}
else if ( (Key.isDown(Key.ENTER) || (Key.isDown(Key.SPACE)&&!this.editable)) && this.opened) {
if (this.getSelectedIndex()!=this.lastSelected) {
this.fireChange();
}
this.openOrClose(false);
this.fLabel_txt.hscroll = 0;
}
super.myOnKeyDown();
}
FComboBoxClass.prototype.findInputText = function()
{
if (!this.editable) {
super.findInputText();
}
}
FComboBoxClass.prototype.onLabelFocus = function()
{
this._parent._parent.tabFocused = false;
this._parent._parent.focused = true;
this.onKeyDown = function()
{
this._parent._parent.myOnKeyDown();
}
Key.addListener(this);
}
FComboBoxClass.prototype.buttonPressHandler = function()
{
this._parent.pressHandler();
}
#endinitclip
this.deadPreview._visible = false;
--------------------------------------------------
Merci
Marine
msn: marin-a@live.fr
|
|
mercredi 3 novembre 2010 à 16:16:07 |
Re : Correction de syntax pour passer un code As1 en As2

marine34000
|
personne ne trouve ?? :-(
--------------------------------------------------
Merci
Marine
msn: marin-a@live.fr
|
|
mercredi 3 novembre 2010 à 17:50:47 |
Re : Correction de syntax pour passer un code As1 en As2
|
mercredi 3 novembre 2010 à 19:50:30 |
Re : Correction de syntax pour passer un code As1 en As2

BBFUNK01
|
Mouais... 480 lignes de code à démêler sans voir le fichier et donc sans savoir à quels objets s'appliquent telles ou telles parties du code... Et bien dur dur !
BBFUNK01
//C'est en forgeant qu'on devient forgeron... ;-) ;
|
|
mercredi 3 novembre 2010 à 20:52:11 |
Re : Correction de syntax pour passer un code As1 en As2

marine34000
|
a ok :-(
c'est une application de mise en forme de texte.
Mais tu ne vois rien sur une syntaxe en As1 qui ne passerai pas en As2 ?
--------------------------------------------------
Merci
Marine
msn: marin-a@live.fr
|
|
mercredi 3 novembre 2010 à 20:58:44 |
Re : Correction de syntax pour passer un code As1 en As2

marine34000
|
BBFUNK01 je viens de voir ton message lol
Je peux vous donner le fla si vous voulez :-)
--------------------------------------------------
Merci
Marine
msn: marin-a@live.fr
|
|
mercredi 3 novembre 2010 à 21:23:54 |
Re : Correction de syntax pour passer un code As1 en As2
|
Cette discussion est classée dans : function, mc, false, if, fcomboboxclass
Répondre à ce message
Sujets en rapport avec ce message
moviecliploader [ par well33t ]
Bonjour, j'ai un petit probleme avec mon moviecliploader. Le truc cest que je suis un peu meler dans mes chemins relatif... Ce que je veux faire cest
problème slideshow [ par jpthali ]
Salut à tous, J'ai récupérer la source pour créer un slide show sur Kirupa:"Adding Thumbnails" Avec des miniatures. J'ai ajouté la fonction slideshow
galerie photo Flash avec conteneur... [ par fififine ]
Bonjour à tous,
Besoin d'aide pour un novice [ par jussy ]
Bonjour a tous et tout d'abord bonne année! Je suis nouveau ici et je galère pas mal avec flash en xml, j'ai recupéré un fichier fla avec un xml, j'ai
sql>php>flash [ par pingouinchti ]
bjr tout le monde, je voudrai faire en sorte que quand je clique sur une photo, il s'affiche un texte sur cette photo. ce texte se trouverais sur une
probleme d'action sur les boutons [ par jul13n ]
Bonjour, J'ai réalisé un site se basant sur pageflip. Ce site est composé de deux animations, le pageflip et une animation acceuillant les boutons et
Script qui devrait agir sur tous mes clips et c'est pas le cas ! [ par Gizmil ]
Salut, Désolé pour le titre du sujet mais difficile de résumer le problème en quelques mots ![^^yeuxenlair] Voilà, en fait, j'ai créé un script qui
Problème galerie photo en xlm [ par jeanmichello9 ]
Bonjour à tous ! Je suis entrain de créer un site avec une galerie photo dynamique (xlm), le problème c'est que je voudrais que le nom de la photo ap
diaporama loadmovie : SetInterval qui ne se vide pas [ par croco73 ]
Bonsoir à tous et à toutes, J'appelle la communauté de flashkod en l'espoir que celle ci puisse m'aider. J'ai un site intégralement en AS2. le fichie
Galerie photo dynamique [ par jeanmichello9 ]
Bonjours à tous, J'ai besoin d'aide ! Je suis entrain de créer un site avec des galeries photos en xlm, le soucis c'est que je voudrais que dans un
Livres en rapport
|
Derniers Blogs
IMAGINE CUP 2012, MAKE A SIGN EN FINALEIMAGINE CUP 2012, MAKE A SIGN EN FINALE par junarnoalg
Voilà qui est fait, la nouvelle est officielle ! L'équipe belge "Make a Sign" va au pays des kangourous défendre son projet dans la catégorie Software Design. http://www.imaginecup.com/CompetitionsContent/Competition/WorldwideFinalists.aspx V...
Cliquez pour lire la suite de l'article par junarnoalg KINECT 1.5 IS OUT !KINECT 1.5 IS OUT ! par Vko
La version 1.5 du Kinect For Microsoft vient tout juste de sortir ! Plein de nouveautés: Tracking de squelette en Near Mode Détection en position assise Détection faciale avec un SDK dédié Documentation et des guideline (enfin) Un out...
Cliquez pour lire la suite de l'article par Vko LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) par richardc
Mise à jour des Web API du 14 Mai
Réservez dès maintenant votre journée du 20 juin pour le Windows Azure Dev Camp 2012 à Paris
Mise à jour de Team Foundation Service
MechCommander 2 sur Windows 8
Entity Framework 5 Release Candidate e...
Cliquez pour lire la suite de l'article par richardc REACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITERREACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITER par Groc
Une mauvaise utilisation de rx lors de l'écriture d'une couche d'accès à des services peut conduire à des cas embarassants avec des erreurs mal gérées, des appels qui ne partent lorsqu'ils le devraient, et même des résultats incorrects . le tout nuis...
Cliquez pour lire la suite de l'article par Groc SHAREPOINT BLOG SITE, PROBLèME D'ARCHIVESSHAREPOINT BLOG SITE, PROBLèME D'ARCHIVES par junarnoalg
Dernièrement, nous avons migré le site
myTIC
vers un nouveau serveur SharePoint 2010. Dans les contenus que nous vouloins récupérer, nous avions un certain nombre de blogs.
Nous avons utilisé les commandes Power...
Cliquez pour lire la suite de l'article par junarnoalg
Logiciels
sDEVIS-FACTURES vlPRO (8.1.0.3)SDEVIS-FACTURES VLPRO (8.1.0.3)sDEVIS-FACTURES vlPRO a été mis au point pour les particuliers, créateurs, entrepreneurs, artisa... Cliquez pour télécharger sDEVIS-FACTURES vlPRO 974 Application Server (12.2.4.6)974 APPLICATION SERVER (12.2.4.6)Développez de puissantes applications dans un environnement de 'cloud computing', clusterisé, séc... Cliquez pour télécharger 974 Application Server vPicture (1.4.2.1)VPICTURE (1.4.2.1)Avec vPicture, hébergez vos images facilement et rapidement.
vPicture est un utilitaire simple, ... Cliquez pour télécharger vPicture Easy-Planning (2.2.1.6)EASY-PLANNING (2.2.1.6)Easy-Planning permet de créer des plannings sous la représentation de diagrammes et est adapté au... Cliquez pour télécharger Easy-Planning COM-BACKUP (2.0)COM-BACKUP (2.0)
COM-BACKUP est un logiciel de sauvegarde qui permet de planifier les sauvegardes de vos dossiers ...
Cliquez pour télécharger COM-BACKUP
|