IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

ActionScript 1 & ActionScript 2 Discussion :

Barre de scroll avec un texte dynamique


Sujet :

ActionScript 1 & ActionScript 2

  1. #1
    Nouveau membre du Club
    Étudiant
    Inscrit en
    Avril 2006
    Messages
    33
    Détails du profil
    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Avril 2006
    Messages : 33
    Points : 32
    Points
    32
    Par défaut Barre de scroll avec un texte dynamique
    Salam alikoum :-)
    Je suis débutant en AS, je voulais construire, une barre de scroll, en utilisant les deux classes :

    VirtualScroller

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
     
     
    class VirtualScroller
    {
    	//---------//
    	//Variables//
    	//---------//
    	private var			_sizeContent:Number; //size content
    	private var			_sizeScroller:Number; //size scroller
    	private var			_sizeMask:Number; //size mask
    	private var			_sizePlaceScroller:Number; //size place scroller	
    	private var			_realSizeContent:Number; //calculated size
    	private var			_realSizeScroller:Number; //calculated size
    	private var			_currentPlaceContent:Number; //current place content
    	private var			_currentPlaceScroller:Number; //current place scroller
    	private var			_ratioContent:Number; //ratio of the content
     
    	/**
    	 * Called when a content is scrolled.
    	 * <p>Prototype of the function :<br>
    	 * <code>onScroll = function(posContent:Number, posScroller:Number):Void { ... }</code></p>
    	 */
    	public var onScroll:Function;
     
    	//-----------//
    	//Constructor//
    	//-----------//
     
    	/**
    	 * Create a new VirtualScroller.
    	 * 
    	 * @param		sizeContent			Size of the content that must be scrolled.
    	 * @param		sizeMask			Size of the mask of the content.
    	 * @param		sizeScroller		Size of the scroller.
    	 * @param		sizePlaceScroller	Size of the place of the scroller (by default {@code sizeMask}).
    	 * @throws		Error				If {@code sizeContent} is {@code null} or less than 0.
    	 * @throws		Error				If {@code sizeMask} is {@code null} or less than 0.
    	 * @throws		Error				If {@code sizeScroller} is {@code null} or less than 0.
    	 */
    	public function VirtualScroller(sizeContent:Number, sizeMask:Number,
    									sizeScroller:Number, sizePlaceScroller:Number)
    	{
    		if (sizeContent == null)
    		{
    			throw new Error(this+".<init> : sizeContent is undefined");
    		}
     
    		if (sizeContent < 0)
    		{
    			throw new Error(this+".<init> : sizeContent is invalid ("+sizeContent+")");
    		}
     
    		if (sizeMask == null)
    		{
    			throw new Error(this+".<init> : sizeMask is undefined");
    		}
     
    		if (sizeMask < 0)
    		{
    			throw new Error(this+".<init> : sizeMask is invalid ("+sizeMask+")");
    		}
     
    		if (sizeScroller == null)
    		{
    			throw new Error(this+".<init> : sizeScroller is undefined");
    		}
     
    		if (sizeScroller < 0)
    		{
    			throw new Error(this+".<init> : sizeScroller is invalid ("+sizeScroller+")");
    		}
     
    		if (sizePlaceScroller == null || sizePlaceScroller < 0)
    		{
    			sizePlaceScroller = sizeMask;
    		}
     
    		//init
    		_sizeScroller = sizeScroller;
    		_sizeMask = sizeMask;
    		_sizePlaceScroller = sizePlaceScroller;
    		_sizeContent = sizeContent;
    		_realSizeContent = sizeContent-sizeMask;
    		_realSizeScroller = sizePlaceScroller-sizeScroller;
    		_currentPlaceContent = 0;
    		_currentPlaceScroller = 0;
    		_ratioContent = 1;
    		onScroll = null;
    	}
     
    	//--------------//
    	//Public methods//
    	//--------------//
     
    	/**
    	 * Get the size of the content.
    	 * 
    	 * @return	The size of the content.
    	 */
    	public function getContentSize(Void):Number
    	{
    		return _sizeContent;
    	}
     
    	/**
    	 * Get the size of the scroller.
    	 * 
    	 * @return	The size of the scroller.
    	 */
    	public function getScrollerSize(Void):Number
    	{
    		return _sizeScroller;
    	}
     
    	/**
    	 * Get the size of the mask.
    	 * 
    	 * @return	The size of the mask.
    	 */
    	public function getMaskSize(Void):Number
    	{
    		return _sizeMask;
    	}
     
    	/**
    	 * Get the size of the place of the scroller.
    	 * 
    	 * @return	The size of the place of the scroller.
    	 */
    	public function getPlaceScrollerSize(Void):Number
    	{
    		return _sizePlaceScroller;
    	}
     
    	/**
    	 * Get the virtually place of the scroller.
    	 * 
    	 * @return	The current place of the scroller.
    	 */
    	public function getCurrentPlaceScroller(Void):Number
    	{
    		return _currentPlaceScroller;
    	}
     
    	/**
    	 * Get the virtually place of the content.
    	 * 
    	 * @param	The current place of the content.
    	 */
    	public function getCurrentPlaceContent(Void):Number
    	{
    		return _currentPlaceContent;
    	}
     
    	/**
    	 * Get if the {@code VirtualScroller} can be scrolled or not.
    	 * <p>A non scrollable {@code VirtualScroller} means that the mask is
    	 * bigger thant the content (so the content is already totaly visible) or
    	 * that the size of the scroller is bigger than the place it has for scrolling.</p>
    	 * 
    	 * @return	{@code true} if the {@code VirtualScroller} is scrollable.
    	 */
    	public function isScrollable(Void):Boolean
    	{
    		return (_sizeMask < _sizeContent && _sizeScroller < _sizePlaceScroller);
    	}
     
    	/**
    	 * Get the maximum value for the {@link #moveContentTo(Number)} method.
    	 * <p>Note that the minimal value is 0.</p>
    	 * 
    	 * @return	The maximum value for the content move.
    	 */
    	public function getMaxMoveContent(Void):Number
    	{
    		return _realSizeContent;
    	}
     
    	/**
    	 * Get the maximum value for the {@link #moveScrollerTo(Number)} method.
    	 * <p>Note that the minimal value is 0.</p>
    	 * 
    	 * @return	The maximum value for the scroller move.
    	 */
    	public function getMaxMoveScroller(Void):Number
    	{
    		return _realSizeScroller;
    	}
     
    	/**
    	 * Move the content (relative).
    	 * <p>This method simply call the {@link moveContentTo(Number)} method,
    	 * taking the current place and adding {@code append}.</p>
    	 * <p>Note that if the current place of the content adding {@code append}
    	 * is bigger than {@link @getMaxMoveContent()}, no {@code Error} is thrown,
    	 * it will go to the max position.</p>
    	 * 
    	 * @param	append	The new relative place.
    	 */
    	public function appendContent(append:Number):Void
    	{
    		var np:Number = _currentPlaceContent+append;
     
    		if (np > getMaxMoveContent())
    		{
    			np = getMaxMoveContent();
    		}
    		else if (np < 0)
    		{
    			np = 0;
    		}
     
    		moveContentTo(np);
    	}
     
    	/**
    	 * Move the scroller (relative).
    	 * <p>This method simply call the {@link moveScrollerTo(Number)} method,
    	 * taking the current place and adding {@code append}.</p>
    	 * <p>Note that if the current place of the scroller adding {@code append}
    	 * is bigger than {@link @getMaxMoveScroller()}, no {@code Error} is thrown,
    	 * it will go to the max position.</p>
    	 * 
    	 * @param	append	The new relative place.
    	 */
    	public function appendScroller(append:Number):Void
    	{
    		var np:Number = _currentPlaceScroller+append;
     
    		if (np > getMaxMoveScroller())
    		{
    			np = getMaxMoveScroller();
    		}
    		else if (np < 0)
    		{
    			np = 0;
    		}
     
    		moveScrollerTo(np);
    	}
     
    	/**
    	 * Move the content (absolute).
    	 * <p>This method call the {@link onScroll} function with the associated
    	 * parameters and adjust the scroller position.</p>
    	 * 
    	 * @param	target		The new place of the content.
    	 * @throws	Error		If {@code target} is less than 0 or bigger
    	 * 						than {@link getMaxMoveContent()}.
    	 */
    	public function moveContentTo(target:Number):Void
    	{
    		//check
    		if (target < 0 || target > getMaxMoveContent())
    		{
    			throw new Error(this+".moveContentTo : invalid target ("+target+")");
    		}
     
    		var ratio:Number = target / getMaxMoveContent();
    		_currentPlaceContent = target;
    		_currentPlaceScroller = getMaxMoveScroller()*ratio;
     
    		//scroll event
    		onScroll(_currentPlaceContent*_ratioContent, _currentPlaceScroller);
    	}
     
    	/**
    	 * Move the scroller (absolute).
    	 * <p>This method call the {@link onScroll} function with the associated
    	 * parameters and adjust the content position.</p>
    	 * 
    	 * @param	target		The new place of the scroller.
    	 * @throws	Error		If {@code target} is less than 0 or bigger
    	 * 						than {@link getMaxMoveScroller()}.
    	 */
    	public function moveScrollerTo(target:Number):Void
    	{
    		//check
    		if (target < 0 || target > getMaxMoveScroller())
    		{
    			throw new Error(this+".moveScrollerTo : invalid target ("+target+")");
    		}
     
    		var ratio:Number = target / getMaxMoveScroller();
    		_currentPlaceContent = getMaxMoveContent()*ratio;
    		_currentPlaceScroller = target;
     
    		//scroll event
    		onScroll(_currentPlaceContent*_ratioContent, _currentPlaceScroller);
    	}
     
    	/**
    	 * Get the ratio.
    	 * 
    	 * @return	The ratio.
    	 */
    	public function getRatio(Void):Number
    	{
    		return _ratioContent;
    	}
     
    	/**
    	 * Set the ratio.
    	 * <p>The ratio is used when dispatching the {@link onScroll(Number,Number)}
    	 * event for the new content position. It is very useful to have directly
    	 * the inverted position (ratio = -1).</p>
    	 * <p>By default, the ratio is set to 1.</p>
    	 * 
    	 * @param	ratio	The new ratio.
    	 */
    	public function setRatio(ratio:Number):Void
    	{
    		_ratioContent = ratio;
    	}
     
    	/**
    	 * Represent the current instance into a String.
    	 *
    	 * @return	A String representing the VirtualScroller instance.
    	 */
    	public function toString(Void):String
    	{
    		return "VirtualScroller";
    	}
    }
    et GUIScroller
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
     
    import VirtualScroller;
     
    /**
     * Provides the methods of a GUIScroller.
     * 
     * @author		Tabin Cedric - thecaptain
     * @since		8 dec. 2005
     * @version		1.0
     */
    class GUIScroller
    {
    	//---------//
    	//Variables//
    	//---------//
    	private var		_virtualScroller:VirtualScroller; //the scroller
    	private var		_content:MovieClip; //the content
    	private var		_contentStart:Number; //start postiion of the content
    	private var		_mask:MovieClip; //the mask
    	private var		_arrowUP:MovieClip; //arrow up
    	private var		_arrowDown:MovieClip; //arrow down
    	private var		_scroller:MovieClip; //the scroller
    	private var		_scrollerStart:Number; //start position of the scroller
     
    	//-----------//
    	//Constructor//
    	//-----------//
     
    	/**
    	 * Create a new GUIScroller.
    	 * 
    	 * @param	content				The clip content.
    	 * @param	mask				The clip mask of the content.
    	 * @Param	arrowUp				The arrow up.
    	 * @param	arrowDown			The arrow down.
    	 * @param	scroller			The clip scroller.
    	 * @param	sizePlaceScroller	The place for the scroller
    	 */
    	public function GUIScroller(content:MovieClip, mask:MovieClip,
    								arrowUP:MovieClip, arrowDown:MovieClip,
    								scroller:MovieClip, sizePlaceScroller:Number)
    	{
    		_content = content;
    		_contentStart = content._y;
    		_mask = mask;
    		_arrowUP = arrowUP;
    		_arrowDown = arrowDown;
    		_scroller = scroller;
    		_scrollerStart = _scroller._y;
    		_virtualScroller = new VirtualScroller(content._height, mask._height, scroller._height, sizePlaceScroller);
     
    		init();
    	}
     
    	//---------------//
    	//Private methods//
    	//---------------//
     
    	private function init(Void):Void
    	{
    		var me:GUIScroller = this;
     
    		//on scroll
    		_virtualScroller.setRatio(-1);
    		_virtualScroller.onScroll = function(posContent:Number, posScroller:Number):Void
    		{
    			me._content._y = posContent+me._contentStart;
    			me._scroller._y = posScroller+me._scrollerStart;
    		}
     
    		_arrowUP.onPress = function(Void):Void
    		{
    			me._virtualScroller.appendContent(-20);
    		}
     
    		_arrowDown.onPress = function(Void):Void
    		{
    			me._virtualScroller.appendContent(20);
    		}
     
    		_scroller.onPress = function(Void):Void
    		{
    			this.startDrag(false, this._x,
    						   me._scrollerStart,
    						   this._x,
    						   me._virtualScroller.getMaxMoveScroller()+me._scrollerStart);
    			this.onEnterFrame = function(Void):Void
    			{
    				me._virtualScroller.moveScrollerTo(this._y-me._scrollerStart);
    			}
    		}
     
    		_scroller.onRelease = function(Void):Void
    		{
    			this.stopDrag();
    			this.onEnterFrame = null;
    		}
    		_scroller.onReleaseOutside = function(Void):Void
    		{
    			this.stopDrag();
    			this.onEnterFrame = null;
    		}
    	}
    }
    avec le code sur la scène principale
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    var gu:GUIScroller = new GUIScroller(content_mc, mask_mc, arrowUp_mc, arrowDown_mc, scroller_mc, arrowDown_mc._y-(scroller_mc._y+scroller_mc._height)+30);
    ça fonctionne trés bien , mais seulement mes amis, je voudrais avoir un texte dynamique dans le movie_clip lorsque j'insère un texte dynamique il n'apparait pas !!
    J'ai vraiment besoin de ça, merci pour votre aide

  2. #2
    Membre régulier Avatar de SnowStyle
    Homme Profil pro
    Développeur Web
    Inscrit en
    Octobre 2005
    Messages
    73
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Octobre 2005
    Messages : 73
    Points : 91
    Points
    91
    Par défaut
    Perso moi je peux pas t'aider, a part si tu as un fait une erreur dans la mise en place de ton TextField dynamique, sinon si ca vient du scroller, ca me dépasse

    Juste pour savoir, pour quelle raison tu n'utilises pas la scrollbar déjà inclue en tant que Component dans Flash?

Discussions similaires

  1. Réponses: 6
    Dernier message: 25/04/2008, 11h35
  2. Réponses: 5
    Dernier message: 24/08/2006, 16h17
  3. [JScrollPane] Affichage dynamique des barres de scroll
    Par Atharendil dans le forum AWT/Swing
    Réponses: 2
    Dernier message: 14/01/2006, 21h07
  4. Réponses: 6
    Dernier message: 10/11/2005, 08h58
  5. [Flash MX] Actualisation scroll sur texte dynamique
    Par Gothico dans le forum Flash
    Réponses: 2
    Dernier message: 23/09/2004, 14h42

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo