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

Flash Discussion :

Page flip mais automatisé


Sujet :

Flash

  1. #1
    Candidat au Club
    Inscrit en
    Octobre 2006
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Octobre 2006
    Messages : 6
    Points : 2
    Points
    2
    Par défaut Page flip mais automatisé
    bonjour,
    Je souhaiterai ajouté a mon effet page flip un automatisme pur tourner les pages et ceux à la fin d'un temps x .
    Quelqu'un a des tuyau à me fournir.....:o(
    meerci
    ouaf

  2. #2
    Membre émérite
    Avatar de jean philippe
    Profil pro
    Inscrit en
    Septembre 2006
    Messages
    2 062
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2006
    Messages : 2 062
    Points : 2 313
    Points
    2 313
    Par défaut
    salut
    deja on connait pas le code que tu utilises pour ta pageflip donc difficiele de te repondre
    sinon, en gros , il te faudra utiliser setInterval() pour jouer la fonction toutes les x secondes

  3. #3
    Candidat au Club
    Inscrit en
    Octobre 2006
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Octobre 2006
    Messages : 6
    Points : 2
    Points
    2
    Par défaut un bout de mon code
    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
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    pw = 300;			//page width in pixel
    ph = 400;			//page height in pixel
    					//pages in the library must have the same size, the script will not resize them!
     
    //page data... (export names/tearing flag)
    addPage("start");		//Always start with "start"!!!
    addPage("page1");
    addPage("page2");
    addPage("page3");
    addPage("page4");
    addPage("page5");
    addPage("page6");
    addPage("page7");
    addPage("page8");
    addPage("page9");
    addPage("page10");
    addPage("page11",true);	//second argument defines page tearing.
    addPage("page12",true);
    addPage("page13");
    addPage("page14");
    addPage("page15");
    addPage("page16");
    addPage("end");			//always end with "end"!!!
     
    page=0;				//first page (normally it is 0 = the page before the cover = blank page)
    hcover = true;		//hard cover on/off
     
    clickarea = 64;		//pixel width of the click sensitive area at the edges..
    afa = 56;			//width of the autoflip starter square.
     
    gs = 2;				//goto page flip speed
    ps = 5;				//mouse pursuit speed
    es = 3;				//flip speed after mouse btn release
     
    canflip = true;		//page flipping enabled
     
    transparency = true;	//use transparent pages or not (1 level transparency)
     
    lcover = true;		//large cover on/off
    lcaddx = 10;		//width difference
    lcaddy = 10;		//height difference on top/bottom
     
    SoundOn = true;		//use page sounds
     
     
    //do not change these values:  ---------------------------------------------------------------------------------------------------------------------
     
    _global.mcnt = 0;	//counter (used on a page where is an animation)
    gpage = 0;			//gotoPage No
    gflip = false;		//gotoPage flip
    gdir = 0;			//goto direction...
    gskip = false;		//skip pages	***
    gtarget = 0;		//target when skipping
     
    aflip = false;		//auto flip
    flip = false;		//pageflip
    flipOff = false;	//terminateflip
    flipOK = false;		//good flip
    hflip = false;		//hardflip (the cover of the book)
    rotz = -30;			//hardflip max y difference
     
    preflip = false;	//corner flip status
    ctear = false;		//actual page status
    tear = false;
    teard = 0;
    tlimit = 80;
    removedPages = new Array();	//list of removed pages!
     
    mpx = 0, mpy = 0;	//mousepos at click
    sx = sy = 0;		//startpoint when flipping
    x = 0;	//mouse x,y
    y = 0;
    ax = 0;	//auto x,y
    ay = 0;
    acnt = 0;
    aadd = 0;
    aamp = 0;
     
    AM = Math.PI/180;
     
    //pageflip code by Macc ---------------------------------------------------------------------------------------------------------------------------
    function addPage(ename,tear) {		//defining pages... -------------------------------------------------------------------------------------------
    	if(ename=="start") {
    		pageOrder = new Array();
    		pageCanTear = new Array();
    		page=0;
    		ename="blankpage";
    	}
    	if(ename=="end") {
    		maxpage = page-1;
    		ename="blankpage";
    	}
    	tear = tear==undefined? false: tear;
    	pageOrder[page] = ename;
    	pageCanTear[page] = tear;
    	page++
    }
     
    function reset() {					//initializing pages... ---------------------------------------------------------------------------------------
    	pages.p4.page._x = -pw;
    	pages.p4._x = pw;
    	pages.p1.page._x = -pw;
    	pages.p1._x = 0;
     
    	pages.flip.p2.page._x = -pw;
    	pages.flip.p2._x = pw;
    	pages.flip.p3.page._x = -pw;
    	pages.flip.p3._x = 0;
     
    	pages.p0.page._x = -pw;
    	pages.p0._x = 0;
    	pages.p5.page._x = -pw;
    	pages.p5._x = pw;
     
    	pages.pLL.page._x = -pw;
    	pages.pLL._x = 0;
    	pages.pLR.page._x = -pw;
    	pages.pLR._x = pw;
     
     
    	pages.pgrad._visible = pages.mask._visible = pages.flip._visible = false;
    	pages.flip.p3mask._width = pages.pgmask._width = pw*2;
    	pages.flip.p3mask._height = pages.pgmask._height = ph;
    	pages.center._height = ph+2*lcaddy;
    	pages.flip.fmask.page.pf._width = pw;
    	pages.center._width = 6;
    	pages.flip.fmask.page.pf._height = ph;
     
    	pages.mask._height = pages.pgrad._height = pages.flip.p3shadow._height = pages.flip.flipgrad._height = 2*Math.sqrt(ph*ph+pw*pw);
     
    	pageNumber = new Array();
    	for(i=0;i<=(maxpage+1);i++) pageNumber[i] = i;
    }
     
    mousecontroll = new Object();		//initializing mouse click handler ---------------------------------------------------------------------------
    mousecontroll.onMouseDown = function() {
    	if(flip && !aflip) {//  && !preflip) {
    		flipOK = false;	
    		if(sx<0 && pages._xmouse>0) flipOK = true;
    		if(sx>0 && pages._xmouse<0) flipOK = true;
    		flipOff = true;
    		flip = false;
    	} else if((flipOff || aflip || !canflip) && !preflip) {
    		trace("donothing");
    	} else {
    		var oox = ox;
    		var ooy = oy;
    		var osx = sx;
    		var osy = sy;
    		var hit = hittest();		//hittest
    		if(hit) {
    			startsnd(1);		//Sound
    			anim._visible = false;
    			flip = true;
    			flipOff = false;
    			tear = false;			//not tearing yet...
    			ox = sx = hit*pw;
    			if(preflip) {
    				aflip = preflip = false;
    				ox = oox, oy = ooy;
    				sx = osx, sy = osy;
    			}
    			pages.flip.setMask(pages.mask);
    			mpx = pages._xmouse, mpy = pages._ymouse;
    			oef();
    			//_quality = "MEDIUM";	//it is the place to degrade image quality while turning pages if the performance is too low.
    		}
    	}
    }
    mousecontroll.onMouseUp = function() {
    	if(flip && !tear) {
    		if((Math.abs(pages._xmouse)>(pw-afa) && Math.abs(pages._ymouse)>(ph/2-afa) && Math.abs(pages._xmouse-mpx)<afa) || preflip) {
    			flip = false;
    			preflip = false;
    			autoflip();
    			startsnd(2);	//sound
    		} else if(!preflip) {
    			preflip = false;
    			flipOK = false;	
    			if(sx<0 && pages._xmouse>0) flipOK = true;
    			if(sx>0 && pages._xmouse<0) flipOK = true;
    			flipOff = true;
    			flip = false;
    			if(flipOK) startsnd(2);	//sound
    		}
    	}
    }
     
    function hittest() {	//hittest at mouse clicks, if click is over the book -> determining turning direction ------------------------------------
    	var x=pages._xmouse;
    	var y=pages._ymouse;
    	var pmh = ph/2;
     
    	if(y<=pmh && y>=-pmh && x<=pw && x>=-pw) {	//ha a megadott intervallumban klikkelunk, akkor lapozhatunk
    		var r = Math.sqrt(x*x+y*y);
    		var a = Math.asin(y/r);
    		var y = Math.tan(a)*pw;
    		if(y>0 && y>ph/2) y = ph/2;
    		if(y<0 && y<-ph/2) y = - ph/2;
    		oy = sy = y;
    		r0 = Math.sqrt((sy+ph/2)*(sy+ph/2)+pw*pw);
    		r1 = Math.sqrt((ph/2-sy)*(ph/2-sy)+pw*pw);
     
    		pageN = eval("pages.flip.p2.page");
    		pageO = eval("pages.flip.p3");
    		offs = -pw;
    		pages.flip.fmask._x = pw;
     
    		if(x<-(pw-clickarea) && page>0) {		//>-----> flip backward
    			pages.flip.p3._x = 0;
    			hflip = checkCover(page,-1);
    			setPages(page-2,page-1,page,page+1);
    			ctear = pageCanTear[page-1];
    			return -1;
    		}
    		if(x>(pw-clickarea) && page<maxpage) {	//<-----< flip forward
    			pages.flip.p3._x = pw;
    			hflip = checkCover(page,1);
    			setPages(page,page+2,page+1,page+3);
    			ctear = pageCanTear[page+2];
    			return 1;
    		}
    	} else return 0;	//wrong click
    }
    function checkCover(p,dir) {
    	if(hcover) {
    		if(dir>0) {
    			if(p==(maxpage-2) || p==0) return true;
    		} else {
    			if(p==maxpage || p==2) return true;
    		}
    	}
    	return false;	
    }
    function corner() {
    	var x = Math.abs(pages._xmouse);
    	var y = Math.abs(pages._ymouse);
    	if(x>(pw-afa) && x<pw && y>(ph/2-afa) && y<(ph/2)) {
    		return true;
    	}
    	return false;
    }
     
     
    function oef() {
    	_global.mcnt++;	//main counter incrase (need for some page effect);
     
    	if(!flip && corner()) {	//corner mouseover
    		preflip = true;
    		if(!autoflip()) preflip = false;
    	}
    	if(preflip && !corner()) {
    		preflip = false;
    		flip = false;
    		flipOK = false;
    		flipOff = true;
    	}
    	getm();
    	if(aflip && !preflip) {
    		y = (ay += (sy-ay)/(gflip? gs: ps ));
    		acnt += aadd;
    		ax -= aadd;
    		if(Math.abs(acnt)>pw) {
    			flipOK = true;
    			flipOff = true;
    			flip = false;
    			aflip = false;
    		}
    	}
    	if(flip) {							//page turning is in progress...
    		if(tear) {
    			x = tox;
    			y = (toy += teard);
    			teard *= 1.2;
    			if(Math.abs(teard)>1200) {
    				flipOff = true;
    				flip = false;
    			}
    		} else {
    			x = (ox += (x-ox)/(gflip? gs: ps ));
    			y = (oy += (y-oy)/(gflip? gs: ps ));
    		}
    		calc(x,y);						//positioning pages and shadows
    	}
    	if(flipOff) {						//terminating page turning effect... (comlplete turning... dropped on the other side)
    		if(flipOK || tear) {
    			x = (ox += (-sx-ox)/(gflip? gs: es ));
    			y = (oy += (sy-oy)/(gflip? gs: es ));
    			calc(x,y);
    			if(x/-sx > 0.99 || tear) {			//we are done with turning, so stop all turning issue...
    				flip = false;
    				flipOK = flipOff = false;
    				pages.pgrad._visible = pages.flip._visible = false;
    				//_quality = "BEST";	//if quality is decrased during turning effect, you must reset its default value!
     
    				if(tear) {				//if tear: remove page!!!
    					removePage((sx<0)? page: page+1);
    					page += (sx<0)? -2: 0;
    				} else {
    					page += (sx<0)? -2: 2;	//and tourning pages at pagenumber level...
    				}
    				if(gskip) page = gtarget;
    				setPages(page,0,0,page+1);
    				tear = false;
     
    				if(gpage>0 && !gskip) {			//gotoflip active -> is there another flipping left?
    					gpage--;
    					autoflip();
    					startsnd(0);	//sound
    				} else gflip = gskip = false;
    			}
    		} else {						//terminating page turning effect... (incomlplete turning... dropped on the dragged side)
    			x = (ox += (sx-ox)/3);
    			y = (oy += (sy-oy)/3);
    			calc(x,y);
    			if(x/sx > 0.99) {			//we are done with turning, so stop all turning issue...
    				flip = false;
    				flipOff = false;
    				aflip = false;
    				pages.pgrad._visible = pages.flip._visible = false;
    				//_quality = "HIGH"; 	//if quality is decrased during turning effect, you must reset its default value!
    				setPages(page,0,0,page+1);	//no change at pagenumbers..
    			}
    		}
    	}
    }
     
    function calc(x,y) {					//positioning pages and shadows by x,y reference points --------------------------------------------------
    	if(hflip) {	//hardflip...
    		var xp = (sx<0)? -x: x;
    		if(xp>0) {
    			sp2._visible = false;
    			sp3._visible = true;
    			scalc(sp3,x);
    		} else {
    			sp3._visible = false;
    			sp2._visible = true;
    			scalc(sp2,x);
    		}
    		pages.flip.setMask(null);
    		pages.flip._visible = true;
    		pages.flip.fgrad._visible = false;
    		pages.flip.p2._visible = pages.flip.p3._visible = false;
    		return;
    	} else pages.flip.fgrad._visible = true;
     
    	//normal flipping process---------------------------------------------------------------------
    	var rr0 = Math.sqrt((y+ph/2)*(y+ph/2)+x*x);
    	var rr1 = Math.sqrt((ph/2-y)*(ph/2-y)+x*x);
    	if((rr0>r0 || rr1>r1) && !tear) {	// we can tear off pages now:)
    							// so reference points must be recalculated!
    		if(y<sy) {	// k1-gyel kell osszehasonlitani!
    			var a = Math.asin((ph/2-y)/rr1);
    			y = (ph/2-Math.sin(a)*r1);
    			x = (x<0)? -Math.cos(a)*r1: Math.cos(a)*r1;
    			if(y>sy) {
    				if((sx*x)>0) y = sy, x = sx;
    				else y = sy, x = -sx;
    			}
    			if((rr1-r1)>tlimit && ctear) {
    				teard = -5;
    				tear = true;
    				tox = ox = x;
    				toy = oy = y;
    			}
    		} else {	// k0-val kell osszehasonlitani!
    			var a = Math.asin((y+ph/2)/rr0);
    			y = Math.sin(a)*r0-ph/2;
    			x = (x<0)? -Math.cos(a)*r0: Math.cos(a)*r0;
    			if(y<sy) {
    				if((sx*x)>0) y = sy, x = sx;
    				else y = sy, x = -sx;
    			}
    			if((rr0-r0)>tlimit && ctear) {
    				teard = 5;
    				tear = true;
    				tox = ox = x;
    				toy = oy = y;
    			}
    		}
    	}
    	if((sx<0 && (x-sx)<10) || (sx>0 && (sx-x)<10)) {
    		if(sx<0) x = -pw+10;
    		if(sx>0) x = pw-10;
    	} 
    	//calculating flipping process
    	pages.flip._visible = true;
    	pages.flip.p3shadow._visible = pages.pgrad._visible = !tear;
    	pages.flip.p2._visible = pages.flip.p3._visible = true;
    	//equation of the line
    	var vx = x-sx;
    	var vy = y-sy;
    	var a1 = vy/vx;
    	var a2 = -vy/vx;
     
    	cx = sx+(vx/2);
    	cy = sy+(vy/2);
    	//trigonometriai szamitasok
    	//calculating rotation of the page, and the masks
    	var r = Math.sqrt((sx-x)*(sx-x)+(sy-y)*(sy-y));
    	var a = Math.asin((sy-y)/r);
    	if(sx<0) a = -a;	
    	ad = a/AM; 	//in degree
    	pageN._rotation = ad*2;
    	r = Math.sqrt((sx-x)*(sx-x)+(sy-y)*(sy-y));
    	rl = (pw*2);
    	if(sx>0) { 				//flip forward
    		pages.mask._xscale = 100;
    		nx = cx-Math.tan(a)*(ph/2-cy);
    		ny = ph/2;
    		if(nx>pw) {
    			nx = pw;
    			ny = cy+Math.tan(Math.PI/2+a)*(pw-cx);
    		}
    		pageN.pf._x = -(pw-nx);
    		pages.flip.fgrad._xscale = (r/rl/2)*pw;
    		pages.pgrad._xscale = -(r/rl/2)*pw;
    		pages.flip.p3shadow._xscale = (r/rl/2)*pw;
    	} else { 				//flip backward
    		pages.mask._xscale = -100;
    		nx = cx-Math.tan(a)*(ph/2-cy);
    		ny = ph/2;
    		if(nx<-pw) {
    			nx = -pw;
    			ny = cy+Math.tan(Math.PI/2+a)*(-pw-cx);
    		}
    		pageN.pf._x = -(pw-(pw+nx));
    		pages.flip.fgrad._xscale = -(r/rl/2)*pw;
    		pages.pgrad._xscale = (r/rl/2)*pw;
    		pages.flip.p3shadow._xscale = -(r/rl/2)*pw;
    	}
    	pages.mask._x = cx;
    	pages.mask._y = cy;
    	pages.mask._rotation = ad;
    	pageN.pf._y = -ny;
    	pageN._x = nx+offs;
    	pageN._y = ny;
    	pages.flip.fgrad._x = cx;
    	pages.flip.fgrad._y = cy;
    	pages.flip.fgrad._rotation = ad;
    	pages.flip.fgrad._alpha = (r>(rl-50))? 100-(r-(rl-50))*2: 100;
    	pages.flip.p3shadow._x = cx;
    	pages.flip.p3shadow._y = cy;
    	pages.flip.p3shadow._rotation = ad;
    	pages.flip.p3shadow._alpha = (r>(rl-50))? 100-(r-(rl-50))*2: 100;
    	pages.pgrad._x = cx;
    	pages.pgrad._y = cy;
    	pages.pgrad._rotation = ad+180;
    	pages.pgrad._alpha = (r>(rl-100))? 100-(r-(rl-100)): 100;
    	pages.flip.fmask.page._x = pageN._x;
    	pages.flip.fmask.page._y = pageN._y;
    	pages.flip.fmask.page.pf._x = pageN.pf._x;
    	pages.flip.fmask.page.pf._y = pageN.pf._y;
    	pages.flip.fmask.page._rotation = pageN._rotation;
    }
     
    function scalc(obj,x) {	//hardflip calc
    	if(x<-pw) x=-pw;
    	if(x>pw) x=pw;
    	var a = Math.asin( x/pw );
    	var rot = a/AM/2;
    	var xs = 100;
    	var ss = 100*Math.sin( rotz*AM );
    	x = x/2;
    	var y = Math.cos(a)*(pw/2)*(ss/100);
    	placeImg(obj, rot, ss, x, y)
    	pages.pgrad._visible = pages.flip._visible = true;
    	pages.pgrad._xscale = x;
    	pages.pgrad._alpha = pages.flip.p3shadow._alpha = 100;
    	pages.flip.p3shadow._xscale = -x;
    	pages.flip.p3shadow._x = 0;
    	pages.flip.p3shadow._y = 0;
    	pages.flip.p3shadow._rotation = 0;
    	pages.pgrad._x = 0;
    	pages.pgrad._y = 0;
    	pages.pgrad._rotation = 0;
    }
     
    function placeImg(j, rot, ss, x, y) {
    	var m = Math.tan( rot*AM );
    	var f = Math.SQRT2/Math.sqrt(m*m+1);
    	var phxs = 100*m;
    	var phRot = -rot;;
    	var xs = 100*f;
    	var ys = 100*f;
    	j.ph.pic._rotation = 45;
    	j.ph.pic._xscale = (phxs<0)? - xs: xs;
    	j.ph.pic._yscale = ys*(100/ss);
    	j.ph._rotation = phRot;
    	j.ph._xscale = phxs;
    	j._yscale = ss;
    	j._x = x;
    	j._y = y;
    	j._visible = true;
    }
     
    function setPages(p1,p2,p3,p4) {	//attach the right page "image" at the right place:)
    	p0 = p1-2;						//pages for transparency...
    	p5 = p4+2;
    	if(p0<0) p0=0;
    	if(p5>maxpage) p5=0;
     
    	if(p1<0) p1=0;	//visible pages
    	if(p2<0) p2=0;
    	if(p3<0) p3=0;
    	if(p4<0) p4=0;
    	trace("setpages ->"+p1+","+p2+","+p3+","+p4);
     
    	pleft = pages.p1.page.pf.ph.attachMovie(pageOrder[p1],"pic",0);
    	pages.p1.page.pf.ph._y = -ph/2;
     
    	if(transparency) {
    		pleftb = pages.p0.page.pf.ph.attachMovie(pageOrder[p0],"pic",0);
    		pages.p0.page.pf.ph._y = -ph/2;
    	} else pages.p0._visible = false;
    	if(hflip) {	//hardflip pages are specials!!! 
    		var tm = pages.flip.hfliph.attachMovie("sph","sp2",0);
    		sp2 = tm.ph.pic.attachMovie(pageOrder[p2],"pic",0);
    		sp2._y = -ph/2, sp2._x = -pw/2;
    		sp2 = eval("pages.flip.hfliph.sp2");
    		var tm = pages.flip.hfliph.attachMovie("sph","sp3",1);
    		sp3 = tm.ph.pic.attachMovie(pageOrder[p3],"pic",0);
    		sp3._y = -ph/2, sp3._x = -pw/2;
    		sp3 = eval("pages.flip.hfliph.sp3");
    	} else {
    		pages.flip.hfliph.sp2.removeMovieClip();
    		pages.flip.hfliph.sp3.removeMovieClip();
    		sp2 = pages.flip.p2.page.pf.ph.attachMovie(pageOrder[p2],"pic",0);
    		pages.flip.p2.page.pf.ph._y = -ph/2;
    		sp3 = pages.flip.p3.page.pf.ph.attachMovie(pageOrder[p3],"pic",0);
    		pages.flip.p3.page.pf.ph._y = -ph/2;
    	}
    	pright = pages.p4.page.pf.ph.attachMovie(pageOrder[p4],"pic",0);
    	pages.p4.page.pf.ph._y = -ph/2;
    	if(transparency) {
    		prightb = pages.p5.page.pf.ph.attachMovie(pageOrder[p5],"pic",0);
    		pages.p5.page.pf.ph._y = -ph/2;
    	} else pages.p5._visible = false;
    	if(lcover) {
    		var lpl = transparency? p1-4: p1-2;
    		var lpr = transparency? p4+4: p4+2;
    		var limit = transparency? 0: -2;
    		if(lpl>limit) {
    			pages.pLL.page.pf.ph.attachMovie(pageOrder[2],"pic",0);
    			pages.pLL.page.pf.ph._y = -ph/2;
    			pages.pLL._visible = true;
    		} else pages.pLL._visible = false;
    		if(lpr<(maxpage-limit)) {
    			pages.pLR.page.pf.ph.attachMovie(pageOrder[maxpage-1],"pic",0);
    			pages.pLR.page.pf.ph._y = -ph/2;
    			pages.pLR._visible = true;
    		} else pages.pLR._visible = false;
    	}
    }
     
    function resetPages() {
    	setPages(page,0,0,page+1);
    }
     
    function autoflip() {								//start auto flip!
    	if(!aflip && !flip && !flipOff && canflip) {	//only when all conditions fits our needs...
    		acnt = 0
    		var pmh = ph/2;
    		aamp = Math.random()*pmh-(ph/4);
    		var x= gflip? (gdir*pw)/2: ((pages._xmouse<0)? -pw/2: pw/2);
     
    		var y= pages._ymouse;
     
    		if(y>0 && y>pmh) y = pmh;
    		if(y<0 && y<-pmh) y = - pmh;
     
    		oy = sy = y;
    		ax = (pages._xmouse<0)? -pmh: pmh;
    		ay = y*Math.random();				//page turnig style randomizing
     
    		offs = -pw;
    		var hit = 0;
    		if(x<0 && page>0) {
    			pages.flip.p3._x = 0;
    			hflip = (hcover && gskip)? (page==maxpage || gtarget==0): checkCover(page,-1);
    			if(!(preflip && hflip)) {
    				if(gskip) setPages(gtarget,gtarget+1,page,page+1);
    				else setPages(page-2,page-1,page,page+1);
    			}
    			hit = -1;
    		}
    		if(x>0 && page<maxpage) {
    			pages.flip.p3._x = pw;
    			hflip = (hcover && gskip)? (page==0 || gtarget==maxpage): checkCover(page,1);
    			if(!(preflip && hflip)) {
    				if(gskip) setPages(page,gtarget,page+1,gtarget+1);
    				else setPages(page,page+2,page+1,page+3);
    			}
    			hit = 1;
    		}
    		if(hflip && preflip) {
    			hit = 0;
    			preflip = false;
    			return false;
    		}
    		if(hit) {
    			anim._visible = false;
    			flip = true;
    			flipOff = false;
    			ox = sx = hit*pw;
    			pages.flip.setMask(pages.mask);
    			aadd = hit*(pw/(gflip? 5:10 ));			//autoflip takes 10 frames to be done!!!
    			aflip = true;
    			pages.flip.fmask._x = pw;
    			if(preflip) {
    				oy = sy = (pages._ymouse<0)? -(ph/2): (ph/2);
    			}
    			r0 = Math.sqrt((sy+ph/2)*(sy+ph/2)+pw*pw);
    			r1 = Math.sqrt((ph/2-sy)*(ph/2-sy)+pw*pw);
    			pageN = eval("pages.flip.p2.page");
    			pageO = eval("pages.flip.p3");
    			oef();
    			return true;
    		}
    	} else return false;
    }
     
    function getm() {	//get x,y reference points depending of turning style: manual/auto
    	if(aflip && !preflip) {
    		x = ax;
    		y = ay;
    	} else {
    		x = pages._xmouse;
    		y = pages._ymouse;
    	}
    }
     
    function gotoPage(i,skip) {		//quickjump to the page number i
    	i = getPN(i);				//i = target page
    	gskip = (skip==undefined)? false: skip;	//skip pages
     
    	if(i<0) return false;
    	var p = int(page/2);
    	var d = int(i/2);
    	if(p!=d && canflip && !gflip) {		//target!=current page
    		if(p<d) {						//go forward
    			gdir = 1;
    			gpage = d-p-1;
    		} else {						//go backward
    			gdir = -1
    			gpage = p-d-1;
    		}
    		gflip = true;
    		if(gskip) gtarget = d*2, gpage = 0;
    		autoflip();
    		startsnd(0);	//sound
    	} else gskip = false;
    }
    function getPN(i) {	//get the right page number
    	if(i==0) return 0;
    	var find = false;
    	for(j=1;j<=maxpage;j++) {
    		if(i==pageNumber[j]) {
    			i=j;
    			find = true;
    			break;
    		}
    	}
    	if(find) return i;
    	else return -1;
    }
    function removePage(i) {
    	trace("remove page "+i);
    	i = (Math.floor((i-1)/2)*2)+1;
    	removedPages.push(pageNumber[i], pageNumber[i+1]);
     
    	for(j=(i+2);j<=(maxpage+1);j++) {
    		pageOrder[j-2]=pageOrder[j];
    		pageCanTear[j-2]=pageCanTear[j];
    		pageNumber[j-2]=pageNumber[j];
    	}
    	trace("removed pages "+i+","+(i+1));
    	trace(removedPages.join(", "));
    	maxpage -= 2;
    }
     
    //-------------------------------------------------------------------------------
     
    snd0 = new Sound();					//adding sound objects
    snd1 = new Sound();
    snd2 = new Sound();
    snd0.attachSound("pf1");
    snd1.attachSound("pf2");
    snd2.attachSound("pf3");
     
     
    function startsnd(i) {				//Sound starter
    	if(SoundOn) {
    		if(i==0) {
    			snd0.start(0,0);
    			snd0.onSoundComplete = function () {
    				startsnd(2);
    				delete snd0.onSoundComplete;
    			}
    		} else {
    			i--;
    			this["snd"+i].start(0,0);
    		}
    	}
    }
     
    //------------------------------------------------------------------------------------------------ PUT YOUR CODE HERE --------------
     
     
    /*		you can use these functions:
     
    		gotoPage( destinationPageNo, skip );	//quick jump to the page number: destinationPageNo; values = 0-maxpages; skip: boolean; if true, pages will be skipped to the destination!
     
    		canflip		//it's a variable. setting its value to false disables flipping
     
    		other functions of page turning is automatic;
     
    		WARNING!!!
    		if you want to unload/reload tha pageflip, before unloading call function: removeML(); to remove mouse listener!
    */
     
    function startAutoFlip () {
        intervalID = setInterval(nextPage,2000);    //2 seconds
    }
    function stopAutoFlip () {
        clearInterval(intervalID);
    }
    function prevPage() {
        gotoPage(page-2);
    }
    function nextPage() {
        gotoPage(page+2);
    }

  4. #4
    Membre émérite
    Avatar de jean philippe
    Profil pro
    Inscrit en
    Septembre 2006
    Messages
    2 062
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2006
    Messages : 2 062
    Points : 2 313
    Points
    2 313
    Par défaut
    la reponse est là non ?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
     
    function startAutoFlip () {
    intervalID = setInterval(nextPage,2000); //2 seconds
    }
    function stopAutoFlip () {
    clearInterval(intervalID);
    }
    function prevPage() {
    gotoPage(page-2);
    }
    function nextPage() {
    gotoPage(page+2);
    }

  5. #5
    Candidat au Club
    Inscrit en
    Octobre 2006
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Octobre 2006
    Messages : 6
    Points : 2
    Points
    2
    Par défaut Arrf
    Heuu je vois pas....

  6. #6
    Membre émérite
    Avatar de jean philippe
    Profil pro
    Inscrit en
    Septembre 2006
    Messages
    2 062
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2006
    Messages : 2 062
    Points : 2 313
    Points
    2 313
    Par défaut
    Citation Envoyé par jean philippe
    la reponse est là non ?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    function startAutoFlip () {
    et là tu vois mieux

  7. #7
    Candidat au Club
    Inscrit en
    Octobre 2006
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Octobre 2006
    Messages : 6
    Points : 2
    Points
    2
    Par défaut
    oui cela j'ai vu mais il ne se passe rien il faut le placer à un endroit precis ?

  8. #8
    Membre émérite
    Avatar de jean philippe
    Profil pro
    Inscrit en
    Septembre 2006
    Messages
    2 062
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2006
    Messages : 2 062
    Points : 2 313
    Points
    2 313
    Par défaut
    je vois que tu ne maitrise aucunement l'AS
    te donner la ligne de code ne te ferai pas avancer, je te conseille donc de parcourir les tutoriaux et la faq pour comprendre le principe d'une fonction
    exemple :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    function foo(){
    trace("yes")};
    //pour jouer la fonction
    foo();

  9. #9
    Candidat au Club
    Inscrit en
    Octobre 2006
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Octobre 2006
    Messages : 6
    Points : 2
    Points
    2
    Par défaut
    Oui en effet je ne maitrise aucunement AS mais j'y travail en sachant tres bien que flash sans AS ne sert pas à grand chose ... en tout cas je te remercie pour ton aide ,mais cela reste difficile pour un autodidacte .....
    ouaf

Discussions similaires

  1. [PHP 5.3] Exécution de page annulée, mais pas d'erreur
    Par brunoperel dans le forum Langage
    Réponses: 1
    Dernier message: 21/04/2010, 13h58
  2. Récup code autre page web mais coté client
    Par Invité dans le forum Général Conception Web
    Réponses: 4
    Dernier message: 25/10/2009, 12h07
  3. Difficulté de créer un catalogue (page flip)
    Par canna dans le forum Flash
    Réponses: 0
    Dernier message: 11/02/2009, 10h03
  4. Catalogue page flip
    Par stef51 dans le forum Flash
    Réponses: 3
    Dernier message: 13/06/2008, 09h09
  5. Page flip et php/sql
    Par topine dans le forum Flash
    Réponses: 1
    Dernier message: 08/11/2006, 15h11

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