pagetitle2 = inputbox("請輸入頁面標題","請輸入頁面標題",pagetitle) if isempty(pagetitle2) = false and len(pagetitle2) > 1 then pagetitle = pagetitle2 end if
filenamestart2 = inputbox("請輸入文件名前綴","請輸入文件名前綴",filenamestart) if isempty(filenamestart2) = false and len(filenamestart2) > 1 then filenamestart = filenamestart2 end if
firstpage2 = inputbox("請輸入第一頁的文件名,點取消按序號生成","請輸入第一頁的文件名",firstpage) if isempty(firstpage2) = false and len(filenamestart2) > 1 then firstpage = firstpage2 else firstpage = "" end if
if len(firstpage) > 0 and (right(lcase(firstpage),4)<>".htm" and right(lcase(firstpage),5)<>".html") then firstpage = firstpage & ".htm" end if
imgw2 = inputbox("請輸入小圖的寬度","請輸入小圖的寬度",imgw) if isnumeric(imgw2) and isempty(imgw2) = false then imgw = imgw2 end if
imgh2 = inputbox("請輸入小圖的高度","請輸入小圖的高度",imgh) if isnumeric(imgh2) and isempty(imgh2) = false then imgh = imgh2 end if
wn2 = inputbox("請輸入每行的圖像數","請輸入每行的圖像數",wn) if isnumeric(wn2) and isempty(wn2) = false then wn = wn2 end if