pagetitle2 = inputbox("請(qǐng)輸入頁(yè)面標(biāo)題","請(qǐng)輸入頁(yè)面標(biāo)題",pagetitle) if isempty(pagetitle2) = false and len(pagetitle2) > 1 then pagetitle = pagetitle2 end if
filenamestart2 = inputbox("請(qǐng)輸入文件名前綴","請(qǐng)輸入文件名前綴",filenamestart) if isempty(filenamestart2) = false and len(filenamestart2) > 1 then filenamestart = filenamestart2 end if
firstpage2 = inputbox("請(qǐng)輸入第一頁(yè)的文件名,點(diǎn)取消按序號(hào)生成","請(qǐng)輸入第一頁(yè)的文件名",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("請(qǐng)輸入小圖的寬度","請(qǐng)輸入小圖的寬度",imgw) if isnumeric(imgw2) and isempty(imgw2) = false then imgw = imgw2 end if
imgh2 = inputbox("請(qǐng)輸入小圖的高度","請(qǐng)輸入小圖的高度",imgh) if isnumeric(imgh2) and isempty(imgh2) = false then imgh = imgh2 end if
wn2 = inputbox("請(qǐng)輸入每行的圖像數(shù)","請(qǐng)輸入每行的圖像數(shù)",wn) if isnumeric(wn2) and isempty(wn2) = false then wn = wn2 end if