home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 60 / Cine Live 60.iso / pc / Data / Interface / sommaire.k < prev    next >
Encoding:
Text File  |  2002-08-07  |  36.2 KB  |  884 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$0000032D,$0000002A,$00000102,$0000038E,$FFFFFF40,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$000000AB,$000000C8,$00000344,$00000296,$0000000A,$00000017,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oMusic2,
  16.         oFureur3,
  17.         oSOMMAIRE4,
  18.         oBox_25,
  19.         oBox_26,
  20.         oSuper_Nanas7,
  21.         oCASTERMAN8,
  22.         oCasterman9,
  23.         oGAULTIER10,
  24.         oFUREUR11,
  25.         oPLUTO12,
  26.         oBOX_NANAS13,
  27.         oCOUV14,
  28.         oSMS15,
  29.         ofilm_316,
  30.         ofilm_317,
  31.         ofilm418,
  32.         ofilm_519,
  33.         ofilm_620,
  34.         ofilm_721,
  35.         ofilm_822,
  36.         ofilm_823,
  37.         ofilm_924,
  38.         ofilm_1125,
  39.         ofilm_1126,
  40.         ofilm_1127,
  41.         oAllocine28,
  42.         obios29,
  43.         oavant_premi_res30,
  44.         oReportages31,
  45.         ovid_os32,
  46.         oweb33,
  47.         oBOUCLE_DES_FILM34,
  48.         oquitter35
  49.     ];
  50.     Events is [
  51.         cOnscreenEvent
  52.         with Flags is $00000004; 
  53.             Commands is [
  54.                 cRunCommand
  55.                 with Flags is $00000004; Target is oMusic2; Rewind is true; end,
  56.                 cRunCommand
  57.                 with Flags is $00000004; Target is oGAULTIER10; Rewind is true; end,
  58.                 cRunCommand
  59.                 with Flags is $00000004; Target is oSMS15; Rewind is true; end
  60.             ];
  61.         end,
  62.         cKeyboardEvent
  63.         with Flags is $00000004; Value is "+"; 
  64.             Commands is [
  65.                 cSetVolumeCommand
  66.                 with Flags is $00000004; Mode is ExecuteHigher; end
  67.             ];
  68.         end,
  69.         cKeyboardEvent
  70.         with Flags is $00000004; Value is "-"; 
  71.             Commands is [
  72.                 cSetVolumeCommand
  73.                 with Flags is $00000004; Mode is ExecuteLower; end
  74.             ];
  75.         end,
  76.         cKeyboardEvent
  77.         with Flags is $00000004; Value is "m"; 
  78.             Commands is [
  79.                 cRunCommand
  80.                 with Flags is $00000004; Target is oMusic2; Mode is Toggle; Rewind is true; end
  81.             ];
  82.         end
  83.     ];
  84. end;
  85.  
  86. object oMusic2 is cSound
  87. with 
  88.     Name is "Music"; 
  89.     
  90.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  91.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  92.     Looping is true; 
  93.     URL is "data/Sons/1.mp3"; URLOption is GetDiskURL; 
  94.     
  95. end;
  96.  
  97. object oFureur3 is cSound
  98. with 
  99.     Flags is $00000150; 
  100.     Name is "Fureur"; 
  101.     
  102.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  103.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  104.     
  105.     URL is "Data/Sons/Fureur.mp3"; URLOption is GetDiskURL; 
  106.     
  107. end;
  108.  
  109. object oSOMMAIRE4 is cImage
  110. with 
  111.     Name is "SOMMAIRE"; 
  112.     Enabled is false; 
  113.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  114.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  115.     
  116.     URL is "data/Images/sommaire.jpg"; URLOption is GetDiskURL; 
  117.     
  118.     
  119. end;
  120.  
  121. object oBox_25 is cBox
  122. with 
  123.     Name is "Box 2"; 
  124.     Region is {$FFFF0030,$00000001,$00480038,$00000001,$001C7FFF,$00010001,$0002001C,$00387FFF,$00250037,$00387FFF,$00480002,$00377FFF,$7FFF0000};
  125.     Cursor is oEarthCursor; 
  126.     X is 27; Y is 441; 
  127.     Width is 56; Height is 73; 
  128.     
  129.     
  130.     Events is [
  131.         cMouseEnterEvent
  132.         with 
  133.             Commands is [
  134.                 cShowCommand
  135.                 with Target is oCOUV14; end,
  136.                 cRunCommand
  137.                 with Target is oCOUV14; end
  138.             ];
  139.         end,
  140.         cMouseLeaveEvent
  141.         with 
  142.             Commands is [
  143.                 cShowCommand
  144.                 with Target is oCOUV14; Mode is Clear; end,
  145.                 cRunCommand
  146.                 with Target is oCOUV14; Mode is Clear; end
  147.             ];
  148.         end,
  149.         cMouseUpEvent
  150.         with Flag is true; 
  151.             Commands is [
  152.                 cShowCommand
  153.                 with Mode is Clear; end,
  154.                 cLaunchCommand
  155.                 with URL is "http://www.cine-live.com"; URLOption is GetSiteURL; Mode is ExecuteBrowser; end
  156.             ];
  157.         end
  158.     ];
  159. end;
  160.  
  161. object oBox_26 is cBox
  162. with 
  163.     Flags is $00000150; 
  164.     release Editor:
  165.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  166.     end;
  167.     Name is "Box 2"; 
  168.     Region is {$FFFF00BC,$00010002,$00750055,$00010002,$00557FFF,$001C0051,$00537FFF,$001D0053,$00557FFF,$001E0050,$00517FFF,$0022004F,$00507FFF,$0024004F,$00507FFF,$00250050,$00517FFF,$00260051,$00527FFF,$00270052,$00537FFF,$00280053,$00547FFF,$00290054,$00557FFF,$003A0002,$00037FFF,$00470003,$00047FFF,$00480004,$00067FFF,$00490006,$00077FFF,$004A0007,$00087FFF,$004B0008,$00097FFF,$004E0009,$000A7FFF,$00510007,$000A7FFF,$00520004,$00077FFF,$00530003,$00047FFF,$00750003,$00557FFF,$7FFF0000};
  169.     Cursor is oEarthCursor; 
  170.     X is 224; Y is 399; 
  171.     Width is 86; Height is 119; 
  172.     
  173.     
  174.     Events is [
  175.         cMouseEnterEvent
  176.         with Flags is $00000004; 
  177.             Commands is [
  178.                 cShowCommand
  179.                 with Flags is $00000004; Target is oCOUV14; end,
  180.                 cRunCommand
  181.                 with Flags is $00000004; Target is oCOUV14; end
  182.             ];
  183.         end,
  184.         cMouseLeaveEvent
  185.         with Flags is $00000004; 
  186.             Commands is [
  187.                 cShowCommand
  188.                 with Flags is $00000004; Target is oCOUV14; Mode is Clear; end,
  189.                 cRunCommand
  190.                 with Flags is $00000004; Target is oCOUV14; Mode is Clear; end
  191.             ];
  192.         end,
  193.         cMouseUpEvent
  194.         with Flags is $00000004; Flag is true; 
  195.             Commands is [
  196.                 cLaunchCommand
  197.                 with Flags is $00000004; URL is "http://www.cine-live.com"; URLOption is GetSiteURL; Mode is ExecuteBrowser; end
  198.             ];
  199.         end
  200.     ];
  201. end;
  202.  
  203. object oSuper_Nanas7 is cMovie
  204. with 
  205.     Name is "Super Nanas"; 
  206.     Region is {$FFFF0070,$00000000,$0042004A,$00000000,$00010016,$00427FFF,$00010001,$00020013,$00160042,$00497FFF,$00020002,$00030011,$00137FFF,$00030003,$0004000E,$00117FFF,$00040004,$0005000C,$000E7FFF,$00050005,$00060009,$000C7FFF,$00060006,$00097FFF,$00210049,$004A7FFF,$00420000,$004A7FFF,$7FFF0000};
  207.     Enabled is false; Shown is false; 
  208.     X is 750; 
  209.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  210.     
  211.     URL is "Data/Anims/Super%20Nanas.mov"; URLOption is GetDiskURL; 
  212.     
  213. end;
  214.  
  215. object oCASTERMAN8 is cBox
  216. with 
  217.     Flags is $00000150; 
  218.     Name is "CASTERMAN"; 
  219.     Region is {$FFFF02E0,$000F0000,$00B90072,$000F0042,$00457FFF,$0010003B,$00420045,$00467FFF,$00110034,$003B0046,$00477FFF,$0012002F,$00340047,$00487FFF,$0013002E,$002F0048,$00497FFF,$00140049,$004A7FFF,$0015002D,$002E004A,$004B7FFF,$0016004B,$004C7FFF,$0017004C,$004D7FFF,$0018002C,$002D004D,$004F7FFF,$0019004F,$00507FFF,$001A002B,$002C0050,$00517FFF,$001B0051,$00527FFF,$001C002A,$002B0052,$00537FFF,$001D0053,$00547FFF,$001E0029,$002A0054,$00557FFF,$001F0055,$00567FFF,$00200056,$00577FFF,$00210028,$00297FFF,$00230027,$00280056,$00577FFF,$00250026,$00277FFF,$00280025,$00260055,$00567FFF,$002A0024,$00257FFF,$002C0023,$00247FFF,$002D0054,$00557FFF,$002E0022,$00237FFF,$00310021,$00227FFF,$00320053,$00547FFF,$00330020,$00217FFF,$00360020,$00217FFF,$00370052,$00537FFF,$003B0021,$00227FFF,$003D0051,$00527FFF,$00400022,$00237FFF,$00420050,$00517FFF,$00450023,$00247FFF,$0047004F,$00507FFF,$004A0024,$00257FFF,$004C004E,$004F7FFF,$004F0025,$00267FFF,$0051004D,$004E7FFF,$00540026,$00277FFF,$0056004C,$004D7FFF,$00580025,$00277FFF,$00590023,$0025004C,$004D7FFF,$005A0021,$0023004D,$00507FFF,$005B001F,$00210050,$00537FFF,$005C001D,$001F0053,$00567FFF,$005D001A,$001D0056,$00597FFF,$005E0018,$001A0059,$005C7FFF,$005F0016,$0018005C,$005F7FFF,$00600013,$0016005F,$00627FFF,$00610011,$00130062,$00657FFF,$0062000E,$00110065,$00687FFF,$0063000C,$000E0068,$006B7FFF,$00640009,$000C006B,$006E7FFF,$00650007,$0009006E,$00717FFF,$00660005,$00070071,$00727FFF,$00670002,$00057FFF,$00680000,$00027FFF,$006A0071,$00727FFF,$006F0000,$00017FFF,$00720070,$00717FFF,$007A006F,$00707FFF,$007E0001,$00027FFF,$0083006E,$006F7FFF,$008B006D,$006E7FFF,$008E0002,$00037FFF,$0093006C,$006D7FFF,$009B006B,$006C7FFF,$009D0003,$00047FFF,$00A3006A,$006B7FFF,$00AB0069,$006A7FFF,$00AC0004,$00057FFF,$00B30068,$00697FFF,$00B50005,$00067FFF,$00B70006,$00077FFF,$00B90007,$00687FFF,$7FFF0000};
  220.     Cursor is oEarthCursor; 
  221.     X is 96; Y is 391; 
  222.     Width is 128; Height is 211; 
  223.     
  224.     
  225.     Events is [
  226.         cMouseUpEvent
  227.         with Flags is $00000004; Flag is true; 
  228.             Commands is [
  229.                 cLaunchCommand
  230.                 with Flags is $00000004; URL is "http://www.casterman.com/tueur"; Mode is ExecuteBrowser; end
  231.             ];
  232.         end,
  233.         cMouseEnterEvent
  234.         with Flags is $00000004; 
  235.             Commands is [
  236.                 cShowCommand
  237.                 with Target is oCasterman9; end,
  238.                 cRunCommand
  239.                 with Flags is $00000004; Target is oCasterman9; Rewind is true; end
  240.             ];
  241.         end,
  242.         cMouseLeaveEvent
  243.         with Flags is $00000004; 
  244.             Commands is [
  245.                 cShowCommand
  246.                 with Target is oCasterman9; end,
  247.                 cRunCommand
  248.                 with Flags is $00000004; Target is oCasterman9; Mode is Clear; Rewind is true; end
  249.             ];
  250.         end
  251.     ];
  252. end;
  253.  
  254. object oCasterman9 is cMovie
  255. with 
  256.     Flags is $00000150; 
  257.     Name is "Casterman"; 
  258.     Region is {$FFFF0070,$00000000,$0042004A,$00000000,$00010016,$00427FFF,$00010001,$00020013,$00160042,$00497FFF,$00020002,$00030011,$00137FFF,$00030003,$0004000E,$00117FFF,$00040004,$0005000C,$000E7FFF,$00050005,$00060009,$000C7FFF,$00060006,$00097FFF,$00210049,$004A7FFF,$00420000,$004A7FFF,$7FFF0000};
  259.     Enabled is false; Shown is false; 
  260.     Y is 400; 
  261.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  262.     
  263.     URL is "Data/Anims/Casterman.mov"; URLOption is GetDiskURL; 
  264.     
  265. end;
  266.  
  267. object oGAULTIER10 is cMovie
  268. with 
  269.     Flags is $00000150; 
  270.     Name is "GAULTIER"; 
  271.     Region is {$FFFF0044,$00010000,$011000B8,$00010000,$00B87FFF,$00030000,$00017FFF,$00040001,$00027FFF,$00490001,$00027FFF,$008900B7,$00B87FFF,$00CE0000,$00017FFF,$01100000,$00B77FFF,$7FFF0000};
  272.     Cursor is oFingerCursor; 
  273.     Y is 80; 
  274.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  275.     Looping is true; 
  276.     URL is "Data/Anims/JPG.mov"; URLOption is GetDiskURL; 
  277.     
  278.     Events is [
  279.         cMouseUpEvent
  280.         with Flags is $00000004; Flag is true; 
  281.             Commands is [
  282.                 cBrowseCommand
  283.                 with Flags is $00000004; URL is "pub.k"; end
  284.             ];
  285.         end
  286.     ];
  287. end;
  288.  
  289. object oFUREUR11 is cBox
  290. with 
  291.     Flags is $00000150; 
  292.     release Editor:
  293.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  294.     end;
  295.     Name is "FUREUR"; 
  296.     Region is {$FFFF0424,$00040000,$00BB00A0,$00040057,$005D7FFF,$0005004A,$0057005D,$00607FFF,$00060042,$004A0060,$00637FFF,$00070041,$00420063,$00657FFF,$00080040,$00410065,$00687FFF,$0009003F,$00400068,$006B7FFF,$000A003E,$003F006B,$006E7FFF,$000B003D,$003E006E,$00707FFF,$000C003C,$003D0070,$00737FFF,$000D003B,$003C0073,$00767FFF,$000E003A,$003B0076,$00787FFF,$000F0039,$003A0078,$00797FFF,$00100038,$00390079,$007A7FFF,$00110037,$0038007A,$007B7FFF,$00120036,$00377FFF,$0013007B,$007C7FFF,$00140035,$0036007C,$007D7FFF,$00150034,$0035007D,$007E7FFF,$00160033,$0034007E,$007F7FFF,$00170032,$0033007F,$00807FFF,$00180031,$00327FFF,$00190030,$00310080,$00817FFF,$001A002F,$00300081,$00827FFF,$001B002E,$002F0082,$00837FFF,$001C002D,$002E0083,$00847FFF,$001D002C,$002D7FFF,$001E002B,$002C7FFF,$001F002A,$002B7FFF,$00210083,$00847FFF,$00260082,$00837FFF,$002B0081,$00827FFF,$00300080,$00817FFF,$0035007F,$00807FFF,$003A007E,$007F7FFF,$0040007D,$007E7FFF,$0045007C,$007D7FFF,$0046002A,$002B7FFF,$004A007B,$007C7FFF,$004F007A,$007B7FFF,$00540079,$007A7FFF,$00590078,$00797FFF,$005E0077,$00787FFF,$00610074,$00777FFF,$0062006B,$00747FFF,$00630066,$006B7FFF,$00640066,$00677FFF,$00650067,$00687FFF,$00660068,$00697FFF,$00670069,$006A7FFF,$0068006A,$006B7FFF,$0069006B,$006C7FFF,$006A006C,$006D7FFF,$006B006D,$006F7FFF,$006C006F,$00707FFF,$006D0070,$00717FFF,$006E0071,$00727FFF,$006F0029,$002B0072,$00737FFF,$00700027,$00290073,$00747FFF,$00710025,$00270074,$00757FFF,$00720023,$00250075,$00777FFF,$00730022,$00230077,$00787FFF,$00740020,$00220078,$00797FFF,$0075001E,$00200079,$007B7FFF,$0076001C,$001E007B,$007D7FFF,$0077001A,$001C007D,$007E7FFF,$00780018,$001A007E,$00807FFF,$00790016,$00180080,$00827FFF,$007A0015,$00160082,$00847FFF,$007B0014,$00150084,$00867FFF,$007C0086,$00877FFF,$007D0013,$00140087,$00897FFF,$007E0012,$00130089,$008B7FFF,$007F008B,$008D7FFF,$00800011,$0012008D,$008E7FFF,$00810010,$0011008E,$00907FFF,$0082000F,$00100090,$00917FFF,$00830091,$00937FFF,$0084000E,$000F0093,$00947FFF,$0085000D,$000E0094,$00957FFF,$00860095,$00977FFF,$0087000C,$000D0097,$00987FFF,$0088000B,$000C0098,$009A7FFF,$0089009A,$009B7FFF,$008A000A,$000B009B,$009D7FFF,$008B0009,$000A009D,$009E7FFF,$008C009E,$009F7FFF,$008D0008,$00097FFF,$008E0007,$00087FFF,$00900006,$00077FFF,$00910005,$00067FFF,$00930004,$00057FFF,$00940003,$0004009F,$00A07FFF,$00950002,$00037FFF,$00970001,$00027FFF,$00980000,$00017FFF,$009F009F,$00A07FFF,$00A0009E,$009F7FFF,$00A1009C,$009E7FFF,$00A2009B,$009C7FFF,$00A3009A,$009B7FFF,$00A40098,$009A7FFF,$00A50097,$00987FFF,$00A60096,$00977FFF,$00A70094,$00967FFF,$00A80093,$00947FFF,$00A90092,$00937FFF,$00AA0092,$00937FFF,$00BB0000,$00937FFF,$7FFF0000};
  297.     Cursor is oFingerCursor; 
  298.     X is 340; Y is 414; 
  299.     Width is 165; Height is 188; 
  300.     
  301.     
  302.     Events is [
  303.         cMouseUpEvent
  304.         with Flags is $00000004; Flag is true; 
  305.             Commands is [
  306.                 cBrowseCommand
  307.                 with Flags is $00000004; URL is "bonus.k"; end
  308.             ];
  309.         end,
  310.         cMouseEnterEvent
  311.         with Flags is $00000004; 
  312.             Commands is [
  313.                 cRunCommand
  314.                 with Target is oFureur3; Rewind is true; end
  315.             ];
  316.         end,
  317.         cMouseLeaveEvent
  318.         with Flags is $00000004; 
  319.             Commands is [
  320.                 cRunCommand
  321.                 with Target is oFureur3; Mode is Clear; Rewind is true; end
  322.             ];
  323.         end
  324.     ];
  325. end;
  326.  
  327. object oPLUTO12 is cBox
  328. with 
  329.     Flags is $00000150; 
  330.     Name is "PLUTO"; 
  331.     Region is {$FFFF05D4,$00000001,$00F100EF,$00000075,$008D7FFF,$0001006F,$0075008D,$008F7FFF,$0002006A,$006F008F,$00917FFF,$00030065,$006A0091,$00927FFF,$00040061,$00650092,$00947FFF,$00050060,$00610094,$00967FFF,$0006005F,$00600096,$00987FFF,$0007005E,$005F0098,$009A7FFF,$0008005D,$005E009A,$009C7FFF,$0009005C,$005D009C,$009E7FFF,$000A009E,$00A07FFF,$000B005B,$005C00A0,$00A27FFF,$000C005A,$005B00A2,$00A47FFF,$000D0059,$005A00A4,$00A67FFF,$000E0058,$005900A6,$00A77FFF,$000F00A7,$00A97FFF,$00100057,$005800A9,$00AB7FFF,$00110056,$005700AB,$00AD7FFF,$00120055,$005600AD,$00AF7FFF,$00130054,$005500AF,$00B17FFF,$00140053,$005400B1,$00B37FFF,$00160052,$005300B3,$00B47FFF,$00170051,$005200B4,$00B57FFF,$00180050,$00517FFF,$0019004F,$005000B5,$00B67FFF,$001B004E,$004F00B6,$00B77FFF,$001C004D,$004E7FFF,$001D004C,$004D00B7,$00B87FFF,$001E004B,$004C00B8,$00B97FFF,$001F004A,$004B7FFF,$002000B9,$00BA7FFF,$00210049,$004A7FFF,$00220048,$004900BA,$00BB7FFF,$00230047,$00487FFF,$00240046,$004700BB,$00BC7FFF,$002500BC,$00BD7FFF,$00260045,$00467FFF,$00270044,$004500BD,$00BE7FFF,$00280043,$00447FFF,$00290042,$004300BE,$00BF7FFF,$002A0041,$00427FFF,$002B00BF,$00C07FFF,$002C00C0,$00C17FFF,$002E00C1,$00C27FFF,$00320040,$00417FFF,$0041003F,$00407FFF,$004600C1,$00C27FFF,$004900C0,$00C17FFF,$004B00BF,$00C07FFF,$004D00BE,$00BF7FFF,$004F003E,$003F7FFF,$005000BD,$00BE7FFF,$005200BC,$00BD7FFF,$005500BB,$00BC7FFF,$005700BA,$00BB7FFF,$005900B9,$00BA7FFF,$005C00B8,$00B97FFF,$005E003D,$003E00B7,$00B87FFF,$006000B6,$00B77FFF,$006300B5,$00B67FFF,$006500B4,$00B57FFF,$0066003D,$003E00B3,$00B47FFF,$006700B2,$00B37FFF,$006900B1,$00B27FFF,$006A00B0,$00B17FFF,$006B003E,$003F00AF,$00B07FFF,$006D00AE,$00AF7FFF,$006E00AD,$00AE7FFF,$006F00AC,$00AD7FFF,$0070003F,$004000AC,$00AD7FFF,$007100AD,$00AE7FFF,$007200AE,$00AF7FFF,$007400AF,$00B07FFF,$00750040,$004100B0,$00B17FFF,$007600B1,$00B27FFF,$007800B2,$00B37FFF,$007900B3,$00B47FFF,$007A0041,$004200B4,$00B57FFF,$007C00B5,$00B67FFF,$007D00B6,$00B77FFF,$007E00B7,$00B87FFF,$007F0042,$00437FFF,$008000B8,$00B97FFF,$008100B9,$00BB7FFF,$008200BB,$00BD7FFF,$008300BD,$00BE7FFF,$00840043,$004400BE,$00C07FFF,$008500C0,$00C27FFF,$008600C2,$00C47FFF,$008700C4,$00C67FFF,$00880043,$004400C6,$00C87FFF,$00890042,$004300C8,$00CA7FFF,$008A0041,$004200CA,$00CB7FFF,$008B0040,$004100CB,$00CD7FFF,$008C003E,$004000CD,$00CF7FFF,$008D003D,$003E00CF,$00D17FFF,$008E003C,$003D00D1,$00D37FFF,$008F003B,$003C00D3,$00D57FFF,$0090003A,$003B00D5,$00D77FFF,$00910038,$003A00D7,$00D87FFF,$00920037,$003800D8,$00DA7FFF,$00930036,$003700DA,$00DC7FFF,$00940035,$003600DC,$00DE7FFF,$00950033,$003500DE,$00E07FFF,$00960032,$00337FFF,$00970031,$003200E0,$00E17FFF,$00980030,$00317FFF,$0099002F,$003000E1,$00E27FFF,$009A002D,$002F7FFF,$009B002C,$002D7FFF,$009C002B,$002C00E2,$00E37FFF,$009D002A,$002B7FFF,$009E0029,$002A00E3,$00E47FFF,$009F0028,$00297FFF,$00A00027,$002800E4,$00E57FFF,$00A10026,$00277FFF,$00A20025,$002600E5,$00E67FFF,$00A30024,$00257FFF,$00A40023,$002400E6,$00E77FFF,$00A50022,$00237FFF,$00A60021,$00227FFF,$00A70020,$002100E7,$00E87FFF,$00A8001F,$00207FFF,$00A9001E,$001F00E8,$00E97FFF,$00AA001D,$001E7FFF,$00AB001C,$001D00E9,$00EA7FFF,$00AC001B,$001C7FFF,$00AD001A,$001B00EA,$00EB7FFF,$00AE0019,$001A7FFF,$00AF0018,$001900EB,$00EC7FFF,$00B00017,$00187FFF,$00B200EC,$00ED7FFF,$00B40016,$001700ED,$00EE7FFF,$00B600EE,$00EF7FFF,$00BB0015,$00167FFF,$00C30014,$00157FFF,$00CA0013,$00147FFF,$00CF0012,$00137FFF,$00D00011,$00127FFF,$00D10010,$00117FFF,$00D2000F,$00107FFF,$00D3000E,$000F7FFF,$00D4000D,$000E7FFF,$00D5000C,$000D7FFF,$00D6000A,$000C7FFF,$00D70009,$000A7FFF,$00D80008,$00097FFF,$00D90007,$00087FFF,$00DA0006,$00077FFF,$00DB0005,$00067FFF,$00DC0004,$00057FFF,$00DD0002,$00047FFF,$00F00001,$00027FFF,$00F10001,$00EF7FFF,$7FFF0000};
  332.     Cursor is oFingerCursor; 
  333.     X is 488; Y is 361; 
  334.     Width is 239; Height is 241; 
  335.     
  336.     
  337.     Events is [
  338.         cMouseUpEvent
  339.         with Flags is $00000004; Flag is true; 
  340.             Commands is [
  341.                 cBrowseCommand
  342.                 with Flags is $00000004; URL is "bonus2.k"; end
  343.             ];
  344.         end
  345.     ];
  346. end;
  347.  
  348. object oBOX_NANAS13 is cBox
  349. with 
  350.     Flags is $00000150; 
  351.     release Editor:
  352.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  353.     end;
  354.     Name is "BOX NANAS"; 
  355.     Region is {$FFFF0204,$0002000A,$00560039,$0002002A,$002B7FFF,$00030029,$002A002B,$002C7FFF,$0004002C,$002D7FFF,$0005002D,$002E7FFF,$00060028,$0029002E,$002F7FFF,$0007002F,$00307FFF,$00080027,$00280030,$00317FFF,$00090031,$00327FFF,$000A0026,$00270032,$00337FFF,$000B0033,$00347FFF,$000C0034,$00357FFF,$000D000F,$00100025,$00267FFF,$000E0010,$00117FFF,$000F0024,$00257FFF,$0010000E,$000F0011,$00127FFF,$00110023,$00247FFF,$00120012,$00130034,$00357FFF,$00130013,$00147FFF,$00140022,$00237FFF,$00150014,$00157FFF,$0016000D,$000E0015,$00160021,$00227FFF,$00180016,$00170020,$00217FFF,$001A0017,$00187FFF,$001B0018,$0019001F,$00200033,$00347FFF,$001C001D,$001F7FFF,$001D0019,$001D7FFF,$00200033,$00347FFF,$00210034,$00357FFF,$00220035,$00367FFF,$00230036,$00377FFF,$0024000D,$000E0037,$00387FFF,$00250038,$00397FFF,$0031000D,$000E7FFF,$0032000C,$000D7FFF,$0034000B,$000C7FFF,$0035000A,$000B7FFF,$0036000A,$000B7FFF,$0038000B,$000C7FFF,$0039000C,$000D7FFF,$003B000D,$000E7FFF,$003D000E,$000F7FFF,$003F000F,$00107FFF,$00400010,$00117FFF,$00420011,$00127FFF,$00440012,$00137FFF,$00450013,$00167FFF,$00460016,$00187FFF,$00470018,$001B7FFF,$0048001B,$001E7FFF,$0049001E,$00207FFF,$004A0020,$00237FFF,$004B0023,$00247FFF,$004D0024,$00257FFF,$00530025,$00267FFF,$00550025,$002A7FFF,$00560025,$0026002A,$00397FFF,$7FFF0000};
  356.     Cursor is oFingerCursor; 
  357.     X is 745; Y is 515; 
  358.     Width is 57; Height is 86; 
  359.     
  360.     
  361.     Events is [
  362.         cMouseEnterEvent
  363.         with Flags is $00000004; 
  364.             Commands is [
  365.                 cShowCommand
  366.                 with Flags is $00000004; Target is oSuper_Nanas7; end,
  367.                 cRunCommand
  368.                 with Flags is $00000004; Target is oSuper_Nanas7; Rewind is true; end
  369.             ];
  370.         end,
  371.         cMouseLeaveEvent
  372.         with Flags is $00000004; 
  373.             Commands is [
  374.                 cShowCommand
  375.                 with Flags is $00000004; Target is oSuper_Nanas7; Mode is Clear; end,
  376.                 cRunCommand
  377.                 with Flags is $00000004; Target is oSuper_Nanas7; Mode is Clear; Rewind is true; end
  378.             ];
  379.         end,
  380.         cMouseUpEvent
  381.         with Flags is $00000004; Flag is true; 
  382.             Commands is [
  383.                 cBrowseCommand
  384.                 with Flags is $00000004; URL is "bonus3.k"; end
  385.             ];
  386.         end
  387.     ];
  388. end;
  389.  
  390. object oCOUV14 is cMovie
  391. with 
  392.     Flags is $00000150; 
  393.     release Editor:
  394.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  395.     end;
  396.     Name is "COUV"; 
  397.     Region is {$FFFF013C,$00000000,$007A0059,$00000000,$00597FFF,$00560057,$00597FFF,$00570056,$00577FFF,$00580055,$00567FFF,$00590054,$00557FFF,$005A0053,$00547FFF,$005B0052,$00537FFF,$005C0051,$00527FFF,$005D004F,$00517FFF,$005E004E,$004F7FFF,$005F004D,$004E7FFF,$0060004C,$004D7FFF,$0061004B,$004C7FFF,$0062004A,$004B7FFF,$00630048,$004A7FFF,$00640047,$00487FFF,$00650046,$00477FFF,$00660045,$00467FFF,$00670044,$00457FFF,$00680043,$00447FFF,$00690042,$00437FFF,$006A0040,$00427FFF,$006B003F,$00407FFF,$006C003E,$003F7FFF,$006D003D,$003E7FFF,$006E003C,$003D7FFF,$006F003B,$003C7FFF,$0070003A,$003B7FFF,$00710038,$003A7FFF,$00720037,$00387FFF,$00730036,$00377FFF,$00740035,$00367FFF,$00750034,$00357FFF,$00760033,$00347FFF,$00770032,$00337FFF,$00780030,$00327FFF,$0079002F,$00307FFF,$007A0000,$002F7FFF,$7FFF0000};
  398.     Enabled is false; 
  399.     X is 221; Y is 398; 
  400.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  401.     Looping is true; 
  402.     URL is "../Anims/Abocinelive.mov"; 
  403.     
  404. end;
  405.  
  406. object oSMS15 is cMovie
  407. with 
  408.     Flags is $00008155; 
  409.     release Editor:
  410.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  411.     end;
  412.     Name is "SMS"; 
  413.     Region is {$FFFF000A,$000000BF,$007B0146};
  414.     Cursor is oEarthCursor; 
  415.     X is 220; 
  416.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  417.     Looping is true; 
  418.     URL is "Data/Anims/SMS.mov"; URLOption is GetDiskURL; 
  419.     
  420.     Events is [
  421.         cMouseUpEvent
  422.         with Flags is $00004004; Flag is true; 
  423.             Commands is [
  424.                 cLaunchCommand
  425.                 with Flags is $00004004; URL is "http://www.orangeplug.orange.fr"; URLOption is GetSiteURL; Mode is ExecuteBrowser; end
  426.             ];
  427.         end
  428.     ];
  429. end;
  430.  
  431. object ofilm_316 is cBox
  432. with 
  433.     Flags is $00000150; 
  434.     release Editor:
  435.         IOWindow is {$000000A3,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  436.     end;
  437.     Name is "film 3"; 
  438.     Region is {$FFFF00CC,$00020001,$007A0050,$0002004D,$00507FFF,$00030046,$004D7FFF,$0004003F,$00467FFF,$00050038,$003F7FFF,$00060031,$00387FFF,$0007002A,$00317FFF,$00080022,$002A7FFF,$0009001B,$00227FFF,$000A0014,$001B7FFF,$000B000D,$00147FFF,$000C0006,$000D7FFF,$000D0001,$00067FFF,$003A004F,$00507FFF,$00430001,$00027FFF,$0071004C,$004F7FFF,$00720043,$004C7FFF,$0073003B,$00437FFF,$00740032,$003B7FFF,$0075002A,$00327FFF,$00760021,$002A7FFF,$00770018,$00217FFF,$00780010,$00187FFF,$00790007,$00107FFF,$007A0002,$00077FFF,$7FFF0000};
  439.     Cursor is oFingerCursor; 
  440.     X is 383; Y is 122; 
  441.     Width is 83; Height is 125; 
  442.     
  443.     
  444.     Events is [
  445.         cMouseUpEvent
  446.         with Flags is $00000004; Flag is true; 
  447.             Commands is [
  448.                 cBrowseCommand
  449.                 with Flags is $00000004; URL is "e6.k"; end
  450.             ];
  451.         end
  452.     ];
  453. end;
  454.  
  455. object ofilm_317 is cBox
  456. with 
  457.     Flags is $00000150; 
  458.     Name is "film 3"; 
  459.     Region is {$FFFF01A8,$00000003,$00800053,$00000052,$00537FFF,$0001004E,$00527FFF,$0002004A,$004E7FFF,$00030047,$004A7FFF,$00040043,$00477FFF,$0005003F,$00437FFF,$0006003B,$003F7FFF,$00070037,$003B7FFF,$00080033,$00377FFF,$0009002F,$00337FFF,$000A002C,$002F7FFF,$000B0028,$002C7FFF,$000C0024,$00287FFF,$000D0020,$00247FFF,$000E001C,$00207FFF,$000F0018,$001C7FFF,$00100014,$00187FFF,$00110011,$00147FFF,$0012000D,$00110052,$00537FFF,$00130007,$00080009,$000D7FFF,$00140007,$00097FFF,$001D0007,$00087FFF,$00330006,$00077FFF,$00350051,$00527FFF,$00490005,$00067FFF,$00580050,$00517FFF,$005F0004,$00057FFF,$006A004F,$00507FFF,$006B004C,$004F7FFF,$006C0048,$004C7FFF,$006D0045,$00487FFF,$006E0041,$00457FFF,$006F003E,$00417FFF,$0070003A,$003E7FFF,$00710037,$003A7FFF,$00720033,$00377FFF,$00730030,$00337FFF,$0074002C,$00307FFF,$00750003,$00040029,$002C7FFF,$00760025,$00297FFF,$00770022,$00257FFF,$0078001E,$00227FFF,$0079001B,$001E7FFF,$007A0017,$001B7FFF,$007B0014,$00177FFF,$007C0010,$00147FFF,$007D000D,$00107FFF,$007E0009,$000D7FFF,$007F0006,$00097FFF,$00800003,$00067FFF,$7FFF0000};
  460.     Cursor is oFingerCursor; 
  461.     X is 299; Y is 135; 
  462.     Width is 84; Height is 129; 
  463.     
  464.     
  465.     Events is [
  466.         cMouseUpEvent
  467.         with Flags is $00000004; Flag is true; 
  468.             Commands is [
  469.                 cBrowseCommand
  470.                 with Flags is $00000004; URL is "e11.k"; end
  471.             ];
  472.         end
  473.     ];
  474. end;
  475.  
  476. object ofilm418 is cBox
  477. with 
  478.     Flags is $00000150; 
  479.     Name is "film4"; 
  480.     Region is {$FFFF0054,$00030005,$00740053,$00030006,$00147FFF,$00040014,$002D7FFF,$0005002D,$00467FFF,$00060046,$00537FFF,$00210052,$00537FFF,$003C0005,$00067FFF,$00580051,$00527FFF,$0073002C,$00517FFF,$00740005,$002C7FFF,$7FFF0000};
  481.     Cursor is oFingerCursor; 
  482.     X is 461; Y is 121; 
  483.     Width is 87; Height is 121; 
  484.     
  485.     
  486.     Events is [
  487.         cMouseUpEvent
  488.         with Flags is $00000004; Flag is true; 
  489.             Commands is [
  490.                 cBrowseCommand
  491.                 with Flags is $00000004; URL is "e8.k"; end
  492.             ];
  493.         end
  494.     ];
  495. end;
  496.  
  497. object ofilm_519 is cBox
  498. with 
  499.     Flags is $00000150; 
  500.     Name is "film 5"; 
  501.     Region is {$FFFF006C,$00010008,$00730057,$00010008,$00107FFF,$00020010,$001D7FFF,$0003001D,$002A7FFF,$0004002A,$00377FFF,$00050037,$00447FFF,$00060044,$00517FFF,$00070051,$00577FFF,$00220056,$00577FFF,$00580055,$00567FFF,$00710008,$001B7FFF,$0072001B,$00427FFF,$00730042,$00557FFF,$7FFF0000};
  502.     Cursor is oFingerCursor; 
  503.     X is 538; Y is 124; 
  504.     Width is 91; Height is 120; 
  505.     
  506.     
  507.     Events is [
  508.         cMouseUpEvent
  509.         with Flags is $00000004; Flag is true; 
  510.             Commands is [
  511.                 cBrowseCommand
  512.                 with Flags is $00000004; URL is "e3.k"; end
  513.             ];
  514.         end
  515.     ];
  516. end;
  517.  
  518. object ofilm_620 is cBox
  519. with 
  520.     Flags is $00000150; 
  521.     release Editor:
  522.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  523.     end;
  524.     Name is "film 6"; 
  525.     Region is {$FFFF00CC,$000C0004,$00840053,$000C0006,$000A7FFF,$000D000A,$00137FFF,$000E0013,$001B7FFF,$000F001B,$00247FFF,$00100024,$002C7FFF,$0011002C,$00357FFF,$00120035,$003E7FFF,$0013003E,$00467FFF,$00140046,$004F7FFF,$0015004F,$00537FFF,$00260005,$00067FFF,$005D0004,$00057FFF,$00790004,$00087FFF,$007A0008,$000F7FFF,$007B000F,$00167FFF,$007C0016,$001D7FFF,$007D001D,$00247FFF,$007E0024,$002B7FFF,$007F002B,$00337FFF,$00800033,$003A7FFF,$0081003A,$00417FFF,$00820041,$00487FFF,$00830048,$004F7FFF,$0084004F,$00537FFF,$7FFF0000};
  526.     Cursor is oFingerCursor; 
  527.     X is 627; Y is 117; 
  528.     Width is 87; Height is 144; 
  529.     
  530.     
  531.     Events is [
  532.         cMouseUpEvent
  533.         with Flags is $00000004; Flag is true; 
  534.             Commands is [
  535.                 cBrowseCommand
  536.                 with Flags is $00000004; URL is "e2.k"; end
  537.             ];
  538.         end
  539.     ];
  540. end;
  541.  
  542. object ofilm_721 is cBox
  543. with 
  544.     Flags is $00000150; 
  545.     Name is "film 7"; 
  546.     Region is {$FFFF00CC,$000C0004,$00840053,$000C0006,$000A7FFF,$000D000A,$00137FFF,$000E0013,$001B7FFF,$000F001B,$00247FFF,$00100024,$002C7FFF,$0011002C,$00357FFF,$00120035,$003E7FFF,$0013003E,$00467FFF,$00140046,$004F7FFF,$0015004F,$00537FFF,$00260005,$00067FFF,$005D0004,$00057FFF,$00790004,$00087FFF,$007A0008,$000F7FFF,$007B000F,$00167FFF,$007C0016,$001D7FFF,$007D001D,$00247FFF,$007E0024,$002B7FFF,$007F002B,$00337FFF,$00800033,$003A7FFF,$0081003A,$00417FFF,$00820041,$00487FFF,$00830048,$004F7FFF,$0084004F,$00537FFF,$7FFF0000};
  547.     Cursor is oFingerCursor; 
  548.     X is 710; Y is 124; 
  549.     Width is 87; Height is 144; 
  550.     
  551.     
  552.     Events is [
  553.         cMouseUpEvent
  554.         with Flags is $00000004; Flag is true; 
  555.             Commands is [
  556.                 cBrowseCommand
  557.                 with Flags is $00000004; URL is "e1.k"; end
  558.             ];
  559.         end
  560.     ];
  561. end;
  562.  
  563. object ofilm_822 is cBox
  564. with 
  565.     Flags is $00000150; 
  566.     Name is "film 8"; 
  567.     Region is {$FFFF015C,$00030004,$00790050,$0003004C,$004D7FFF,$00040048,$004C7FFF,$00050044,$00487FFF,$00060040,$00447FFF,$0007003C,$00407FFF,$00080038,$003C7FFF,$00090034,$00387FFF,$000A0030,$00347FFF,$000B002C,$00307FFF,$000C0027,$002C7FFF,$000D0023,$00277FFF,$000E001F,$00237FFF,$000F001B,$001F7FFF,$00100017,$001B7FFF,$00110013,$00177FFF,$0012000F,$00137FFF,$0013000B,$000F7FFF,$00140007,$000B7FFF,$00150004,$00077FFF,$00190004,$00057FFF,$001D004D,$004E7FFF,$001E0005,$00067FFF,$00230006,$00077FFF,$00270007,$00087FFF,$00280008,$000B7FFF,$0029000B,$000D7FFF,$002A000D,$000F7FFF,$002B000F,$00127FFF,$002C0012,$00137FFF,$00540012,$0013004E,$004F7FFF,$00690011,$00127FFF,$00710049,$004D004F,$00507FFF,$00720042,$0049004D,$004F7FFF,$0073003B,$0042004F,$00507FFF,$00740033,$003B7FFF,$0075002C,$00337FFF,$00760024,$002C7FFF,$0077001D,$00247FFF,$00780016,$001D7FFF,$00790011,$00167FFF,$7FFF0000};
  568.     Cursor is oFingerCursor; 
  569.     X is 299; Y is 246; 
  570.     Width is 98; Height is 137; 
  571.     
  572.     
  573.     Events is [
  574.         cMouseUpEvent
  575.         with Flags is $00000004; Flag is true; 
  576.             Commands is [
  577.                 cBrowseCommand
  578.                 with Flags is $00000004; URL is "e12.k"; end
  579.             ];
  580.         end
  581.     ];
  582. end;
  583.  
  584. object ofilm_823 is cBox
  585. with 
  586.     Flags is $00000150; 
  587.     Name is "film 8"; 
  588.     Region is {$FFFF00E8,$00000002,$00700055,$00000051,$00557FFF,$00010047,$00517FFF,$0002003C,$00477FFF,$00030032,$003C7FFF,$00040028,$00327FFF,$0005001E,$00287FFF,$00060013,$001E7FFF,$00070009,$00137FFF,$00080003,$00097FFF,$00360054,$00557FFF,$003E0002,$00037FFF,$00630002,$00057FFF,$00640005,$00087FFF,$00650008,$000B7FFF,$0066000B,$000F7FFF,$0067000F,$00127FFF,$00680012,$00157FFF,$00690015,$00187FFF,$006A0018,$001B7FFF,$006B001B,$001F0051,$00547FFF,$006C001F,$00220049,$00517FFF,$006D0022,$00250041,$00497FFF,$006E0025,$00280038,$00417FFF,$006F0028,$002B0030,$00387FFF,$0070002B,$00307FFF,$7FFF0000};
  589.     Cursor is oFingerCursor; 
  590.     X is 378; Y is 239; 
  591.     Width is 89; Height is 122; 
  592.     
  593.     
  594.     Events is [
  595.         cMouseUpEvent
  596.         with Flags is $00000004; Flag is true; 
  597.             Commands is [
  598.                 cBrowseCommand
  599.                 with Flags is $00000004; URL is "e10.k"; end
  600.             ];
  601.         end
  602.     ];
  603. end;
  604.  
  605. object ofilm_924 is cBox
  606. with 
  607.     Flags is $00000150; 
  608.     Name is "film 9"; 
  609.     Region is {$FFFF0044,$00040006,$006F0053,$00040008,$00537FFF,$001F0007,$00087FFF,$00390052,$00537FFF,$00540006,$00077FFF,$006D0040,$00527FFF,$006E001A,$00407FFF,$006F0006,$001A7FFF,$7FFF0000};
  610.     Cursor is oFingerCursor; 
  611.     X is 459; Y is 235; 
  612.     Width is 88; Height is 119; 
  613.     
  614.     
  615.     Events is [
  616.         cMouseUpEvent
  617.         with Flags is $00000004; Flag is true; 
  618.             Commands is [
  619.                 cBrowseCommand
  620.                 with Flags is $00000004; URL is "e9.k"; end
  621.             ];
  622.         end
  623.     ];
  624. end;
  625.  
  626. object ofilm_1125 is cBox
  627. with 
  628.     Flags is $00000150; 
  629.     release Editor:
  630.         IOWindow is {$000000AF,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  631.     end;
  632.     Name is "film 11"; 
  633.     Region is {$FFFF0064,$00000000,$00680055,$00000002,$00557FFF,$00010002,$00037FFF,$00030054,$00557FFF,$00060054,$00557FFF,$000C0002,$00037FFF,$00210001,$00027FFF,$00360000,$00017FFF,$003C0054,$00557FFF,$00600053,$00547FFF,$00670000,$002A7FFF,$0068002A,$00537FFF,$7FFF0000};
  634.     Cursor is oFingerCursor; 
  635.     X is 543; Y is 239; 
  636.     Width is 85; Height is 118; 
  637.     
  638.     
  639.     Events is [
  640.         cMouseUpEvent
  641.         with Flags is $00000004; Flag is true; 
  642.             Commands is [
  643.                 cBrowseCommand
  644.                 with Flags is $00000004; URL is "e4.k"; end
  645.             ];
  646.         end
  647.     ];
  648. end;
  649.  
  650. object ofilm_1126 is cBox
  651. with 
  652.     Flags is $00000150; 
  653.     Name is "film 11"; 
  654.     Region is {$FFFF00B4,$00010002,$00700052,$00010003,$00077FFF,$00020007,$00107FFF,$00030010,$00197FFF,$00040019,$00217FFF,$00050021,$002A7FFF,$0006002A,$00337FFF,$00070033,$003B7FFF,$0008003B,$00447FFF,$00090044,$004D7FFF,$000A004D,$00517FFF,$00350002,$00037FFF,$003C0051,$00527FFF,$00680002,$00077FFF,$00690007,$00117FFF,$006A0011,$001B7FFF,$006B001B,$00257FFF,$006C0025,$002F7FFF,$006D002F,$00397FFF,$006E0039,$00437FFF,$006F0043,$004D7FFF,$0070004D,$00527FFF,$7FFF0000};
  655.     Cursor is oFingerCursor; 
  656.     X is 631; Y is 239; 
  657.     Width is 85; Height is 118; 
  658.     
  659.     
  660.     Events is [
  661.         cMouseUpEvent
  662.         with Flags is $00000004; Flag is true; 
  663.             Commands is [
  664.                 cBrowseCommand
  665.                 with Flags is $00000004; URL is "e5.k"; end
  666.             ];
  667.         end
  668.     ];
  669. end;
  670.  
  671. object ofilm_1127 is cBox
  672. with 
  673.     Flags is $00000150; 
  674.     Name is "film 11"; 
  675.     Region is {$FFFF0104,$00040007,$0072005A,$0004000A,$000E7FFF,$0005000E,$00157FFF,$00060015,$001C7FFF,$0007001C,$00237FFF,$00080023,$002A7FFF,$0009002A,$00317FFF,$000A0031,$00387FFF,$000B0038,$003F7FFF,$000C003F,$00460048,$004A7FFF,$000D0046,$0048004A,$004E7FFF,$000E004E,$00527FFF,$000F0052,$00567FFF,$00100056,$005A7FFF,$00160009,$000A7FFF,$00260059,$005A7FFF,$00380008,$00097FFF,$00550058,$00597FFF,$00590007,$00087FFF,$006A0007,$000A7FFF,$006B000A,$00117FFF,$006C0011,$00170055,$00587FFF,$006D0017,$001E004E,$00557FFF,$006E001E,$00240048,$004E7FFF,$006F0024,$002B0044,$00487FFF,$0070002B,$00310041,$00447FFF,$00710031,$0038003E,$00417FFF,$00720038,$003E7FFF,$7FFF0000};
  676.     Cursor is oFingerCursor; 
  677.     X is 707; Y is 246; 
  678.     Width is 91; Height is 125; 
  679.     
  680.     
  681.     Events is [
  682.         cMouseUpEvent
  683.         with Flags is $00000004; Flag is true; 
  684.             Commands is [
  685.                 cBrowseCommand
  686.                 with Flags is $00000004; URL is "e7.k"; end
  687.             ];
  688.         end
  689.     ];
  690. end;
  691.  
  692. object oAllocine28 is cBox
  693. with 
  694.     Name is "Allocine"; 
  695.     Region is {$FFFF0090,$00000000,$00250059,$00000003,$00577FFF,$00020003,$00047FFF,$00030056,$00577FFF,$00070004,$00057FFF,$000B0056,$00577FFF,$000D0005,$00067FFF,$00120006,$00077FFF,$00160006,$00077FFF,$00180005,$00060057,$00587FFF,$001A0004,$00057FFF,$001B0003,$00047FFF,$001D0002,$00037FFF,$001F0001,$00027FFF,$00210000,$00017FFF,$00240058,$00597FFF,$00250000,$00597FFF,$7FFF0000};
  696.     Cursor is oFingerCursor; 
  697.     X is 462; Y is 434; 
  698.     Width is 96; Height is 37; 
  699.     
  700.     
  701.     Events is [
  702.         cMouseUpEvent
  703.         with Flag is true; 
  704.             Commands is [
  705.                 cBrowseCommand
  706.                 with URL is "data/Interface/allocine.k"; URLOption is GetDiskURL; end
  707.             ];
  708.         end,
  709.         cMouseEnterEvent
  710.         with 
  711.             Commands is [
  712.                 cShowCommand
  713.                 with Target is oTargetSelf; end
  714.             ];
  715.         end,
  716.         cMouseLeaveEvent
  717.         with 
  718.             Commands is [
  719.                 cShowCommand
  720.                 with Target is oTargetSelf; Mode is Clear; end
  721.             ];
  722.         end
  723.     ];
  724. end;
  725.  
  726. object obios29 is cBox
  727. with 
  728.     Flags is $00000150; 
  729.     Name is "bios"; 
  730.     Region is {$FFFF00C4,$00060004,$002A0047,$0006003E,$00417FFF,$00070038,$003E7FFF,$00080032,$00380041,$00427FFF,$0009002C,$00327FFF,$000A0027,$002C0042,$00437FFF,$000B0020,$00277FFF,$000C001A,$00207FFF,$000E0014,$001A0043,$00447FFF,$000F000E,$00147FFF,$00100008,$000E0044,$00457FFF,$00110004,$00087FFF,$00120045,$00467FFF,$001B0046,$00477FFF,$001C0004,$00057FFF,$00230042,$00477FFF,$00240037,$00427FFF,$0025002C,$00377FFF,$00260022,$002C7FFF,$00280017,$00227FFF,$0029000C,$00177FFF,$002A0005,$000C7FFF,$7FFF0000};
  731.     Cursor is oFingerCursor; 
  732.     X is 695; Y is 383; 
  733.     Width is 84; Height is 43; 
  734.     
  735.     
  736.     Events is [
  737.         cMouseUpEvent
  738.         with Flags is $00000004; Flag is true; 
  739.             Commands is [
  740.                 cBrowseCommand
  741.                 with Flags is $00000004; URL is "mm1.k"; end
  742.             ];
  743.         end
  744.     ];
  745. end;
  746.  
  747. object oavant_premi_res30 is cBox
  748. with 
  749.     Flags is $00000150; 
  750.     Name is "avant premi\$E8res"; 
  751.     Region is {$FFFF0034,$00050002,$00180055,$00050003,$00547FFF,$00060054,$00557FFF,$000F0002,$00037FFF,$0017002D,$00557FFF,$00180002,$002D7FFF,$7FFF0000};
  752.     Cursor is oFingerCursor; 
  753.     X is 694; Y is 471; 
  754.     Width is 94; Height is 29; 
  755.     
  756.     
  757.     Events is [
  758.         cMouseUpEvent
  759.         with Flags is $00000004; Flag is true; 
  760.             Commands is [
  761.                 cBrowseCommand
  762.                 with Flags is $00000004; URL is "avant%20prem.k"; end
  763.             ];
  764.         end
  765.     ];
  766. end;
  767.  
  768. object oReportages31 is cBox
  769. with 
  770.     Flags is $00000150; 
  771.     Name is "Reportages"; 
  772.     Region is {$FFFF0084,$00060002,$001A0040,$00060037,$003D7FFF,$0007002C,$00377FFF,$00080020,$002C7FFF,$00090014,$00207FFF,$000A0009,$00147FFF,$000B0002,$0009003D,$003E7FFF,$000D0002,$00037FFF,$000F003E,$003F7FFF,$00130003,$00047FFF,$0014003F,$00407FFF,$00170037,$00407FFF,$00180004,$00050024,$00377FFF,$00190010,$00247FFF,$001A0005,$00107FFF,$7FFF0000};
  773.     Cursor is oFingerCursor; 
  774.     X is 694; Y is 422; 
  775.     Width is 94; Height is 29; 
  776.     
  777.     
  778.     Events is [
  779.         cMouseUpEvent
  780.         with Flags is $00000004; Flag is true; 
  781.             Commands is [
  782.                 cBrowseCommand
  783.                 with Flags is $00000004; URL is "reportages.k"; end
  784.             ];
  785.         end
  786.     ];
  787. end;
  788.  
  789. object ovid_os32 is cBox
  790. with 
  791.     Flags is $00000150; 
  792.     release Editor:
  793.         IOWindow is {$0000001A,$0000003E,$0000028F,$000001EF,$00000000,$00000000,$00000000,$00000000};
  794.     end;
  795.     Name is "vid\$E9os"; 
  796.     Region is {$FFFF004C,$00070003,$001B003B,$0007002D,$003A7FFF,$00080012,$002D7FFF,$00090003,$00127FFF,$0010003A,$003B7FFF,$00110003,$00047FFF,$0019002E,$003B7FFF,$001A0013,$002E7FFF,$001B0004,$00137FFF,$7FFF0000};
  797.     Cursor is oFingerCursor; 
  798.     X is 694; Y is 445; 
  799.     Width is 94; Height is 29; 
  800.     
  801.     
  802.     Events is [
  803.         cMouseUpEvent
  804.         with Flags is $00000004; Flag is true; 
  805.             Commands is [
  806.                 cBrowseCommand
  807.                 with Flags is $00000004; URL is "videos.k"; end
  808.             ];
  809.         end
  810.     ];
  811. end;
  812.  
  813. object oweb33 is cBox
  814. with 
  815.     Flags is $00000150; 
  816.     Name is "web"; 
  817.     Region is {$FFFF00F4,$00050008,$00380059,$00050009,$00197FFF,$00060019,$003A7FFF,$0007003A,$004A7FFF,$000F0008,$00097FFF,$00150034,$003F7FFF,$0016003F,$004A7FFF,$001B0034,$00357FFF,$001C0008,$00097FFF,$001D0009,$00147FFF,$001E0014,$001B7FFF,$001F001B,$001D7FFF,$0020001D,$001F7FFF,$0021001F,$00217FFF,$00220021,$00237FFF,$00230023,$00250035,$003B7FFF,$00240025,$0027003B,$00477FFF,$00250027,$00290047,$00537FFF,$00260029,$002A0053,$00597FFF,$0027002A,$002B7FFF,$002A002B,$002C7FFF,$002E002C,$002D7FFF,$0031002D,$002E7FFF,$0033002E,$00347FFF,$00340034,$003F7FFF,$0035003F,$004F7FFF,$0037004F,$00557FFF,$00380055,$00597FFF,$7FFF0000};
  818.     Cursor is oEarthCursor; 
  819.     X is 696; Y is 497; 
  820.     Width is 91; Height is 61; 
  821.     
  822.     
  823.     Events is [
  824.         cMouseUpEvent
  825.         with Flags is $00000004; Flag is true; 
  826.             Commands is [
  827.                 cLaunchCommand
  828.                 with URL is "http://www.cyberpress-publishing.com/"; URLOption is GetSiteURL; Mode is ExecuteBrowser; end
  829.             ];
  830.         end
  831.     ];
  832. end;
  833.  
  834. object oBOUCLE_DES_FILM34 is cBox
  835. with 
  836.     Name is "BOUCLE DES FILM"; 
  837.     Cursor is oFingerCursor; 
  838.     X is 22; Y is 576; 
  839.     Width is 158; Height is 18; 
  840.     
  841.     
  842.     Events is [
  843.         cMouseUpEvent
  844.         with Flag is true; 
  845.             Commands is [
  846.                 cBrowseCommand
  847.                 with URL is "boucle videos.k"; end
  848.             ];
  849.         end
  850.     ];
  851. end;
  852.  
  853. object oquitter35 is cBox
  854. with 
  855.     Name is "quitter"; 
  856.     Cursor is oFingerCursor; 
  857.     X is 180; Y is 576; 
  858.     Width is 158; Height is 18; 
  859.     
  860.     
  861.     Events is [
  862.         cMouseEnterEvent
  863.         with 
  864.             Commands is [
  865.                 cShowCommand
  866.                 with Target is oTargetSelf; end
  867.             ];
  868.         end,
  869.         cMouseLeaveEvent
  870.         with 
  871.             Commands is [
  872.                 cShowCommand
  873.                 with Target is oTargetSelf; Mode is Clear; end
  874.             ];
  875.         end,
  876.         cMouseUpEvent
  877.         with Flag is true; 
  878.             Commands is [
  879.                 cBrowseCommand
  880.                 with URL is "quitter.k"; end
  881.             ];
  882.         end
  883.     ];
  884. end;