I have a menial task to do that involves copying and pasting hundreds of titles, descriptions, dates, urls and durations into various places in an HTML code.
This is the file. What I'd like to do is create a basic form with the following text boxes,
Title (title of event)
Link (mp3 file)
Summary (description)
Duration (00:00:00)
To then copy itself into that code at the respective places. How would I accomplish this? Is there an easy way to create a html/exe that could do this?
Code:
<item>
<title>title of event</title>
<pubDate>Tue, 29 April 2008 12:00:00 -0400</pubDate>
<link>mp3 file</link>
<guid isPermaLink="true">mp3 file</guid>
<enclosure url="mp3 file" length="" type="audio/mpeg" />
<itunes:summary><![CDATA[Description]]> </itunes:summary>
<itunes:duration>00:00:00</itunes:duration>
</item>
Title (title of event)
Link (mp3 file)
Summary (description)
Duration (00:00:00)
To then copy itself into that code at the respective places. How would I accomplish this? Is there an easy way to create a html/exe that could do this?