Pages: [1]   Go Down

Author Topic: Creating a CD-ROM from my website??  (Read 2305 times)

m021478

  • Newbie
  • *
  • Offline Offline
  • Posts: 24
Creating a CD-ROM from my website??
« on: November 04, 2006, 02:20:49 pm »

Does anyone know how I can put a 'virtual' copy of my flash animated website onto a cd-rom disc so that when its inserted into a computer (Mac and PC), it automatically 'autoruns' and pops open a web browser on the viewers computer that shows the content of my website (being read locally from the disc rather than from online, so as to allow for offline viewing)?

Any suggestions would be greatly appreciated. Thanks!
Logged

cescx

  • Jr. Member
  • **
  • Offline Offline
  • Posts: 65
    • http://
Creating a CD-ROM from my website??
« Reply #1 on: November 04, 2006, 06:11:16 pm »

please, wite the url of your web to be able to help you
Logged
Francesc Costa

61Dynamic

  • Sr. Member
  • ****
  • Offline Offline
  • Posts: 1442
    • http://
Creating a CD-ROM from my website??
« Reply #2 on: November 04, 2006, 07:30:45 pm »

Add the flash/html to the CD just as you did on the website itself. The only differences are that any HTML on the CD can't use server-side scripting (ASP, PHP, Pearl, etc), they have to be static pages. Second, make sure all of the links pointing to other pages are relative links.

Example, an abosllute link may look like this:
http://www.oaktree-imaging.com/knowledge/digital_bw/

A relative link replaces the "http://www.oaktree-imaging.com" with "../" or "/"
i.e. "../knowledge/digital_bw/"

"../" takes the link back one directory and "/" takes the link back to the home-page.

Relative Links
Logged

61Dynamic

  • Sr. Member
  • ****
  • Offline Offline
  • Posts: 1442
    • http://
Creating a CD-ROM from my website??
« Reply #3 on: November 04, 2006, 07:42:12 pm »

For autorun you want to create a text file called "autorun.inf" that will reside in the root directory of the CD.

Inside that, type:
"[autorun]
shellexecute=index.htm"

In the above make sure the index.html file (your sites homepage) is in the root of the directory as well.


It should be noted that this will only work on systems with autoplay active (no Windows system should due to blatantly huge security issues though many do) and it will not work on Mac or Linux systems.
« Last Edit: November 04, 2006, 07:45:37 pm by 61Dynamic »
Logged
Pages: [1]   Go Up