home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1999 April / CD_Shareware_Magazine_31.iso / Free / Prg / imagemapmaker.exe / modGlobals.bas < prev    next >
Encoding:
BASIC Source File  |  1998-07-02  |  707 b   |  29 lines

  1. Attribute VB_Name = "modGlobals"
  2. 'Integer that holds the total of regions on the
  3. 'image map
  4. Public NofRegions As Integer
  5.  
  6. Public Region(100, 6)
  7. 'An array that holds all the information of all
  8. 'the regions on the image map:
  9. '
  10. 'Region(x,y)
  11. '
  12. 'x
  13. '-> an integer ,the index of the region
  14. 'It's  0 <= x <= NofRegions and there can be
  15. 'up to 100 regions on one image map.
  16. '
  17. 'Region(x,1) , Region(x,2) , Region(x,3) , Region(x,4)
  18. '-> The coordinates of the two pixels that define
  19. 'the rectangular region
  20. '
  21. 'Region(x,5)
  22. '-> A string that holds the URL that the region will
  23. '-> lead to
  24. '
  25. 'Region(x,6)
  26. '-> A string that holds the name of the frame in
  27. 'which the new HTML file will load in
  28.  
  29.