Hi,
Here are samples of the text:
I would like to copy each line and save to a new HTM file. I wanted to create a popup HTML file based on the saved file.
Example:
Copy 105:1 Lorem ipsum dolor sit amet. and save as s105a1.htm
next
Copy 105:2 Consectetuer adipiscing elit. and save as s105a2.htm
The layout of the HTM file are like this:
Note that the arrangement of the text have been changed. Is it possible to do that too?
Kindly advise on how can I do it with UE. Thanks.
Here are samples of the text:
Code: Select all
105:1 Lorem ipsum dolor sit amet.
105:2 Consectetuer adipiscing elit.
105:3 Maecenas venenatis semper lorem.
105:4 Mauris dapibus.
105:5 Phasellus tempor est vitae nulla.
106:0 Aliquam tempor augue eu purus.
Example:
Copy 105:1 Lorem ipsum dolor sit amet. and save as s105a1.htm
next
Copy 105:2 Consectetuer adipiscing elit. and save as s105a2.htm
The layout of the HTM file are like this:
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Pop Up</title>
<link href="style.css" rel="stylesheet" type="text/css">
<SCRIPT TYPE="text/javascript">
<!--
window.focus();
//-->
</SCRIPT>
</head>
<body class="c">
<p>[b]Lorem ipsum dolor sit amet. (105:1)[/b]</p>
<hr size="1" noshade>
<p align="center"><a href="javascript:window.close()">X close X </a>
</p>
</body>
</html>
Kindly advise on how can I do it with UE. Thanks.