오토런시디 제작방법좀 알려주세요

오토런시디 제작방법좀 알려주세요

작성일 2003.07.09댓글 3건
    게시물 수정 , 삭제는 로그인 필요

회사에서 대기업 브리핑후에 제공하려는 회사소개 시디를 만들까 하는데요,
플래시무비나 html문서를 오토런으로 띄울 방법이 없나요?
autorun.inf 에서 explore a.html 이나 그냥 html이름을 적어도 올바른 win32응용프로그램이 아니라는 오류가 나오구요, 아이콘만 지정되네요.

또, mp3플레이를 동시에 시키면서 텍스트파일이라도 띄우려고 하니까 실행옵션에 두개를 적으면 하나만 되구요, bat파일을 만들어서 실행시키니까 먼저 실행된 프로그램이 종료되야 실행되더군요.
그나마 이런식으로 리드미파일을 만들어서 노트패드를 같이 집어넣고 구운다음에 노트패드를 이용해서 텍스트를 띄우도록 하면 html문서를 직접 클릭하기 위해 시디롬을 클릭할때마다 다시 오토런이 실행되고...

말이 좀 복잡한데요, 그러니까 오토런 기능으로 플래시나 html문서를 띄울 방법이 없는가에 대한 질문입니다. ^^;
아시는 분 제발 답변좀 부탁드립니다.



profile_image 익명 작성일 -

INDEX.HTM을 불러올 수도 있죠.

AUTORUN.INF를 만든다.
[AUTORUN]
OPEN=AUTO.BAT

그리고 나서 AUTO.BAT를 만든다.
[AUTO.BAT]
@START INDEX.HTM

무지 편하답니다 START 명령어 제대로만 활용하면...
start는 해당 화일(htm)과 연결된 프로그램으로 해당화일을 실행시키란 거죠.
도스 시절부터 있던 명령어 입니다. win2000에서도 먹히고요^^


나중에 말한 건... INDEX.HTM을 손봐야 하겠는 걸요?
그건 AUTORUN 차원에서 할 문제가 아닌데요^^;

A Href="./readme.txt" target="_blank"를 쓰면 다른 창을 띄우면서 readme.txt를 실행시키고.
a href="music.mp3" 버튼을 추가하는 것도 괜찮겠고요.

중요한 점 하나... index.htm을 만들면서 탐색기 버튼도 꼭 만들어야 합니다.
안 그러면 정작 평범한 탐색기 기능을 이용하기 위해서 항상 오른쪽 버튼을 눌러야 한다는
것 무지 짜증나죠 ^^

이건 아마 a href="./" 정도로 하면 탐색기효과가 날 겁니다.

근데 위의 영어는 좀 심했군요 -.-;;; 해석문제도 아니고...

profile_image 익명 작성일 -

안녕하세요?

다음 자료를 참고하세요!

Our step-by-step tutorial will guide you to the whole process of
how to create an autorun CD.

1. Open up a text editor like Windows Notepad and type in.
[autorun]
open=kickstart.exe
icon=icon.ico (optional if you want customize your CDROM icon, if
you dont have your . icon remove the line "icon=icon.ico")
2. Replace 'kickstart.exe' with the file name of your .exe movie,
and 'icon.ico' with the name of your custom icon.
3. Save the file with the filename autorun.inf
4. Burn your cd with the following files in the root directory of
the cd.
autorun.inf
icon.ico (if any)
projector.exe (projector is assumed to be the name of your .EXE
file)
When you push the cd into the drive, it will automatically autorun,
starting your .exe file.
What is WinOpen?
WinOpen is a small Win32 application that gives you advance control
over what application is run or what file is opened from an
AUTORUN.INF file. Actually WinOpen will open any file type as long
as the computer running your CD has a program associated with that
file type like pdf, txt, doc, bmp, jpg, mpg. WinOpen allows apps to
be run or files to be opened in a CD AUTORUN.INF For example, the
normal AUTORUN.INF syntax is: [autorun]
open=executable program
However, the problem with this syntax is that is does not allow you
to specify an HTML file to be opened, like: [autorun]
open=index.htm (this does not work) The solution is WinOpen
application. The following allows index.htm to be opened in a
browser window: [autorun]
open=winopen \index.htm (this will works)

Please note that the back slash ("\") in front of "index.htm" is
required. It works fine on most of computers, but some computers
will fail without it, so my little advise is to play safe by
including it.
WinOpen Example
To create a CD with autorunning "index.htm" file in a web browser,
you will need to package the following files in the root of the CD:
autorun.inf
winopen.exe
index.htm

WinOpen Features
If you want to start the web browser in maximized mode on autorun:
WinOpen takes an optional "/max" at the beginning of the command
line that will cause a signal to be sent to the application to
start 'maximized'. Most applications will obey that signal and
start maximized. Here is an example of an autorun.inf changed to
use this feature:
[autorun]
open=winopen /max \index.html (remember to add a space before and
after "/max" just like in example)
Specifying the shell operation:
WinOpen.exe takes an optional "/op:CMD", where CMD is a shell
operation command such as edit, explore, open, play, print,
properties. For example, if you wanted to play a video, the syntax
will be.

[autorun]
open=winopen /op:play \yourvideo.mpg

도움이 되시기를...

profile_image 익명 작성일 -

INDEX.HTM을 불러올 수도 있죠.

AUTORUN.INF를 만든다.
[AUTORUN]
OPEN=AUTO.BAT

그리고 나서 AUTO.BAT를 만든다.
[AUTO.BAT]
@START INDEX.HTM

무지 편하답니다 START 명령어 제대로만 활용하면...
start는 해당 화일(htm)과 연결된 프로그램으로 해당화일을 실행시키란 거죠.
도스 시절부터 있던 명령어 입니다. win2000에서도 먹히고요^^


나중에 말한 건... INDEX.HTM을 손봐야 하겠는 걸요?
그건 AUTORUN 차원에서 할 문제가 아닌데요^^;

A Href="./readme.txt" target="_blank"를 쓰면 다른 창을 띄우면서 readme.txt를 실행시키고.
a href="music.mp3" 버튼을 추가하는 것도 괜찮겠고요.

중요한 점 하나... index.htm을 만들면서 탐색기 버튼도 꼭 만들어야 합니다.
안 그러면 정작 평범한 탐색기 기능을 이용하기 위해서 항상 오른쪽 버튼을 눌러야 한다는
것 무지 짜증나죠 ^^

이건 아마 a href="./" 정도로 하면 탐색기효과가 날 겁니다.

근데 위의 영어는 좀 심했군요 -.-;;; 해석문제도 아니고...

오토런시디 제작방법좀 알려주세요

... 위해 시디롬을 클릭할때마다 다시 오토런이 실행되고... 말이 복잡한데요, 그러니까 오토런 기능으로 플래시나 html문서를 띄울 방법이 없는가에 대한...

[오토런] 오토런에 관한질문입니다^^

... Q: 오토런이 뭐하는 프로그램인지 알려 주세요 ? A... Q: 더 쉽게 설명해 주세요 ! A: 게임 시디 인스톨을... 하는 방법 좀.. Q: 오토런을 씨디에 담기전에 테스트...

오토런바이러스 급하게 치료방법!!!

... 오토런 바이러스의 가장 효과적인방법좀 알려주세요. 디스크의 몇게 오토런파일... 포맷하는방법은 안됩니다. 새로 깔 윈도우 시디도 없을뿐더러 중요한파일들이...

오토런에 관련된 질문 다시 드립니다.

... exe' 같이 오토런을 기본적으로 실행 시키는 방법을... (상업적 목적은 아니므로 봐 주세요) 오토런 시디... apm은 호환이 안되므로 어떤 오토런 프로그램으로 제작...

게임cd 오토런 되게 iso로 만드는법

... (성공함) lcd는 오토런이 되는데 iso는 안되더라구요. (변환... 많은데 방법좀 알려주세요 네로버닝롬 이란 프로그램이 있어요 그걸로 게임 시디를 이미지 레코딩하면...

★★내공100★★ 오토런(자동실행)에...

... 음악파일이 시디넣자마자 들리게(자동실행 되게)하는법 좀 알려주세요. 실행파일을 자동실행 되게 하는건 아는데... 이것도 그런방법으로 하는 건가요? autorun....

예쁘게 만드는 방법알려주세요

... 정품시디처럼 예쁘게 만드는 방법알려주세요' 로 네이버... 하기는 여러 기술이 필요 할 것 같습니다. 어찌되었던 님이 원하는대로 하실려면, Content를 제작 해 주는...

미디어 프로그램좀 도와주세요.....

... 아주간단한 ~~ 오토 플레이 미디어 프로그램으로 페이지 링크 걸고 제작을 하였는데 문제는 바탕화면사이즈에 맞추는 방법은 없는지요... 예를 들어 ALt+ enter 나...