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 :

[XML] Comment disposer les fichiers pour qu'ils soient pris en compte ?


Sujet :

Flash

  1. #1
    Candidat au Club
    Profil pro
    Inscrit en
    Mars 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2007
    Messages : 7
    Points : 2
    Points
    2
    Par défaut [XML] Comment disposer les fichiers pour qu'ils soient pris en compte ?
    Bonjour, j'ai besoin d'un renseignement d'un expert !
    voila j'ai un un xml qui appel des images mais pour que cela fonctionne, je dois créer les répertoires "arborescence" selon le xml ci dessous ! mais je n'arrive pas a comprendre le chemin !
    par exemple : pour la photo mick.jpg, je pensais devoir faire faire :
    projects/print/project/images/mick.jpg
    mais c'est pas bon !!
    je pige pas ce xml ! au secour !

    merci d'avance.

    christophe

    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
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- 
     Projects: 
     - print
     - web
     - photo
     - interactive
     - video 
    -->
    <projects>
     
    <!--*************************************-->
     <print>
    <!--*************************************-->  
      <project>
       <title>MJ</title>
       <date>06.09.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>balbla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project showOnMain="true">
       <title>Fantasmagoria</title>
       <date>06.08.04</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project showOnMain="true">
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     </print>
     
    <!--*************************************-->
     <web>
    <!--*************************************-->
     
      <project showOnMain="true">
       <title>MJ</title>
       <date>06.09.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project showOnMain="true">
       <title>Fantasmagoria</title>
       <date>06.08.04</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project showOnMain="true">
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     </web>
     
    <!--*************************************-->
     <photo>
    <!--*************************************-->
     
        <project>
       <title>MJ</title>
       <date>06.09.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Fantasmagoria</title>
       <date>06.08.04</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
     <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     </photo>
     
    <!--*************************************-->
     <interactive>
    <!--*************************************-->
     
        <project showOnMain="true">
       <title>MJ</title>
       <date>06.09.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project showOnMain="true">
       <title>Fantasmagoria</title>
       <date>06.08.04</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
     <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     </interactive>
     
    <!--*************************************-->
     <video>
    <!--*************************************-->
     
     
        <project>
       <title>Mick Jagger</title>
       <date>06.09.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Fantasmagoria</title>
       <date>06.08.04</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>blabla</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
    <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>mick.jpg</img>
        <img>mick2.jpg</img>
        <img>mick3.jpg</img>
        <img>mick4.jpg</img>
        <img>mick5.jpg</img>
       </images>
       <thumb>mick_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>fantasmagoria01.jpg</img>
       </images>
       <thumb>fantasmagoria_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     
      <project>
       <title>Te Quiero Web</title>
       <date>06.11.05</date>
       <images>
        <img>blue.jpg</img>
        <img>pap.jpg</img>
       </images>
       <thumb>blue_s.jpg</thumb>
       <info>info here...</info>
       <link>http://blabla.com</link>
      </project>
     </video>
     
    </projects>

  2. #2
    Expert éminent
    Avatar de Swoög
    Profil pro
    Inscrit en
    Janvier 2003
    Messages
    6 045
    Détails du profil
    Informations personnelles :
    Âge : 36
    Localisation : France

    Informations forums :
    Inscription : Janvier 2003
    Messages : 6 045
    Points : 8 339
    Points
    8 339
    Par défaut
    Il serait bon que tu donnes plus de détails, quelle application tu utilises ? quel langage XML ? etc...

    Parce qu'avec juste les informations que tu as donné là, on ne absoluement peut pas t'aider...
    Rédacteur "éclectique" (XML, Cours PHP, Cours JavaScript, IRC, Web...)
    Les Règles du Forum - Mon Site Web sur DVP.com (Développement Web, PHP, (X)HTML/CSS, SQL, XML, IRC)
    je ne répondrai à aucune question technique via MP, MSN ou Skype : les Forums sont là pour ça !!! Merci de me demander avant de m'ajouter à vos contacts sinon je bloque !
    pensez à la balise [ code ] (bouton #) et au tag (en bas)

  3. #3
    Candidat au Club
    Profil pro
    Inscrit en
    Mars 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2007
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    ok pas de soucis,
    en fait j'ai un site internet en flash qui se lit avec des fichiers XML.
    tout fonctionne bien sauf l'affiche des images car elles ne sont pas au bon endroit! ce que j'aimerai, c'est connaitre l'architecture selon ce XML afin de bien creer les bons repertoires et y placer les photos !
    j'espere etre clair dans mes explications.
    merci de votre aide.

  4. #4
    Membre émérite Avatar de dom_dev
    Profil pro
    Inscrit en
    Février 2006
    Messages
    2 073
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2006
    Messages : 2 073
    Points : 2 338
    Points
    2 338
    Par défaut
    bonjour,
    justement tel qu'on lit ton fichier XML il n'y a pas de chemin en théorie tes images doivent se trouver dans le même répertoire que le fichier .swf qui les utilise...
    ceci dit le chemin peut avoir été écrit en "dur" dans le fichier source avant la compilation.
    Si la ou les réponses obtenues vous ont donné satisfaction n'oublier pas ->
    Et ne rajoutez pas de nouvelles questions éternellement dans le même post surtout si vous en n'êtes pas l'auteur
    MERCI

  5. #5
    Candidat au Club
    Profil pro
    Inscrit en
    Mars 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2007
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    merci de ta reponse!
    apres verification dans la source du swf, il n'y a aucune donnée concerant les images car le swf appel les fichiers xml qui gerent les menu et les images !
    pour une autre page, je devais placer les images dans un repertoire a la racine nommé "images" et cela fonctionne ! pour ce xml, je ne trouve pas ! je viens d'essayer de les placer a la racine mais cela ne donne rien de plus !
    une idée?

  6. #6
    Candidat au Club
    Profil pro
    Inscrit en
    Mars 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2007
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    oups, tu avais raison !ca vient d'un 2ème fla que j'avais pas vu ! malgré cela, je ne trouve toujours pas le chemin ! tu peux m'aider avec ce fla?

  7. #7
    Candidat au Club
    Profil pro
    Inscrit en
    Mars 2007
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2007
    Messages : 7
    Points : 2
    Points
    2
    Par défaut
    normalement, le chemin devrait etre dans ce bout de code?nan?


    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
    // Frame 2 actions...
     
    function setStage(w, h)
    {
        menu_mc._x = w / 2 - menu_mc._width / 2;
        menu_mc._y = 25;
        player_mc._x = menu_mc._x + menu_mc._width + 2;
        player_mc._y = menu_mc._y + 5;
        pane_mc._x = w / 2;
        news_mc._x = w / 2;
        lab_mc._x = w / 2;
        about_mc._x = w / 2;
        contacts_mc._x = w / 2;
        solutions_mc._x = w / 2;
        proj_mc.setStage(w, h);
        corners_mc._x = w / 2 - corners_mc._width / 2;
        main_mc._x = w / 2 - main_mc._width / 2;
    }
     
    function changeSection(id)
    {
        if (id != prevID) 
        {
            gotoSection(id);
            prevID = id;
        }
     
    }
     
    function gotoSection(id)
    {
        main_mc.gotoAndPlay("out");
        menuEnabled = false;
        newId = id;
        manageSubmenu(id);
        gotoAndStop(_root.menu_array[id].nick);
    }
     
    function manageSubmenu(id)
    {
        menu_mc.removeSubmenu(prevID);
        if (_root.menu_array[id].submenu) 
        {
            menu_mc.createSubmenu(id);
        }
     
    }
     
    function manageProjectClick(type, id)
    {
        this.attachMovie("ProjectDetails", "proj_mc", 10000);
        proj_mc.type = type;
        proj_mc.id = id;
    }
     
    function setTip(title)
    {
        this.attachMovie("tipMC", "tip_mc", 15000);
        tip_mc._x = _xmouse;
        tip_mc._y = _ymouse;
        tip_mc.title = title;
        tip_mc.startDrag();
    }
     
    function removeTip()
    {
        tip_mc.removeMovieClip();
    }
     
    menuEnabled = true;
    setStage(Stage.width, Stage.height);
    stop();
     
     
    for (;;) 
    {
    }
    ;
     
     
     
    // Frame 12 actions...
     
    function setSubsection(mc)
    {
        menuEnabled = false;
        prevActive = active;
        active = mc;
        if (typeIsSet) 
        {
            pane_mc.removeThumbs();
            return;
        }
     
        setNewType();
    }
     
    function getType(nick)
    {
        var __reg3 = _root.projects_array.length;
        var __reg2 = 0;
        for (;;) 
        {
            if (__reg2 >= __reg3) 
            {
                return;
            }
     
            if (nick == _root.projects_array[__reg2].type) 
            {
                type = __reg2;
                return type;
            }
     
            ++__reg2;
        }
     
    }
     
    function setNewType()
    {
        var __reg2 = _root.menu_array[active.superId].submenu[active.id].nick;
        type = getType(__reg2);
        setPane(type);
    }
     
    function changeType()
    {
        var __reg2 = _root.menu_array[prevActive.superId].submenu[prevActive.id].nick;
        type = getType(__reg2);
        Key.removeListener(pane_mc.keyer);
        pane_mc.removeMovieClip();
        setNewType();
    }
     
    function setPane(type)
    {
        this.attachMovie("ProjectsPane", "pane_mc", 1000);
        pane_mc.type = type;
        typeIsSet = true;
        menuEnabled = true;
    }
     
    function gotoSection(id)
    {
        menuEnabled = false;
        newId = id;
        manageSubmenu(id);
        if (pane_mc) 
        {
            pane_mc.exit = true;
            pane_mc.removeThumbs();
            return;
        }
     
        paneIsRemoved();
    }
     
    function paneIsRemoved()
    {
        typeIsSet = false;
        autoSet = false;
        pane_mc.unloadMovie();
        gotoAndStop(_root.menu_array[newId].nick);
    }
     
    if (autoSet) 
    {
        menu_mc.manageSubmenu(menu_mc.submenu_mc["b" + autoId]);
    }
     
    menuEnabled = true;

Discussions similaires

  1. [OL-2010] Comment "espacer" les messages reçus pour qu'ils soient plus visibles. ?
    Par jean du 86 dans le forum Outlook
    Réponses: 2
    Dernier message: 20/03/2015, 10h33
  2. Réponses: 2
    Dernier message: 02/02/2012, 13h23
  3. Comment implémenter les méthodes pour sauvegarder un fichier ?
    Par ti3um dans le forum Eclipse Platform
    Réponses: 1
    Dernier message: 10/04/2009, 17h13
  4. Réponses: 2
    Dernier message: 22/02/2009, 14h02
  5. Réponses: 3
    Dernier message: 07/06/2006, 16h53

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