home *** CD-ROM | disk | FTP | other *** search
/ Hacker CD 2 / HACKER_CD.iso / Hacker_CD / somm.dxr / 00021.ls < prev    next >
Encoding:
Text File  |  2003-04-09  |  1.5 KB  |  43 lines

  1. global contenu, n, theme, soustheme1, soustheme2, imporjpg, total_teme, dossier, gversionos
  2.  
  3. on mouseDown me
  4.   if gversionos = "\" then
  5.     if (n = VOID) or (n = EMPTY) then
  6.       nothing()
  7.     else
  8.       if soustheme2 = EMPTY then
  9.         open(the moviePath & dossier & gversionos & theme & gversionos & soustheme1 & gversionos & n, the moviePath & "Acdsee32\Acdsee32.exe")
  10.       else
  11.         if soustheme1 = EMPTY then
  12.           open(the moviePath & dossier & gversionos & theme & gversionos & soustheme2 & gversionos & n, the moviePath & "Acdsee32\Acdsee32.exe")
  13.         else
  14.           open(the moviePath & dossier & gversionos & theme & gversionos & soustheme1 & gversionos & soustheme2 & gversionos & n, the moviePath & "Acdsee32\Acdsee32.exe")
  15.         end if
  16.       end if
  17.     end if
  18.   else
  19.     if (n = VOID) or (n = EMPTY) then
  20.       nothing()
  21.     else
  22.       objet = new(xtra("filextra3"))
  23.       if soustheme2 = EMPTY then
  24.         fx_FileOpenDocument(objet, the moviePath & dossier & gversionos & theme & gversionos & soustheme1 & gversionos & n)
  25.       else
  26.         if soustheme1 = EMPTY then
  27.           fx_FileOpenDocument(objet, the moviePath & dossier & gversionos & theme & gversionos & soustheme2 & gversionos & n)
  28.         else
  29.           fx_FileOpenDocument(objet, the moviePath & dossier & gversionos & theme & gversionos & soustheme1 & gversionos & soustheme2 & gversionos & n)
  30.         end if
  31.       end if
  32.     end if
  33.   end if
  34. end
  35.  
  36. on mouseEnter me
  37.   cursor(280)
  38. end
  39.  
  40. on mouseLeave me
  41.   cursor(-1)
  42. end
  43.