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