forked from jimbonator/tads-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
132 additions
and
20 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta property="og:type" content="website"> | ||
<link rel="icon" href="/assets/images/tads-favicon.png" type="image/png"> | ||
<link rel="stylesheet" type="text/css" | ||
href="/assets/css/styles.css"> | ||
<title></title> | ||
<meta property="og:title" content= | ||
""> | ||
<meta name="description" content=""> | ||
<meta property="og:description" content=""> | ||
</head> | ||
<header id="header"><div class="header-search"> | ||
<form class="header-search-form" action="/search" method="get"> | ||
<input type="text" id="search-box" name="query"> | ||
<input type="submit" value="search"> | ||
</form> | ||
</div> </header> | ||
<body> | ||
<main id="content"> | ||
<table width="100%" data-border="0" data-cellspacing="0" data-cellpadding="3" data-bgcolor="#C0C0C0"> | ||
<colgroup> | ||
<col style="width: 50%" /> | ||
<col style="width: 50%" /> | ||
</colgroup> | ||
<tbody> | ||
<tr> | ||
<td style="text-align: left;"><strong>TopHintMenu : <a href="hintmenu.html">HintMenu</a>, PreinitObject<br /> | ||
</strong></td> | ||
<td style="text-align: right;"><a href="hints-overview.html">[Previous]</a> <a href="generalintroduction.html">[Main]</a> <a href="hintmenu.html">[Next]</a></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<p>TopHintMenu is a class which defines the top of your hints menu tree. | ||
You use it to create an object in which to nest the rest of your hint | ||
system, and the library will automatically register it as the root of | ||
your hint menus.</p> | ||
|
||
<p>In the file where you’re going to create your hint system, simply | ||
define:</p> | ||
|
||
<p>TopHintMenu ’Hints’;</p> | ||
|
||
|
||
</main> | ||
<footer id="footer"> | ||
<p>This is an unofficial informational website to aggregate TADS 3 information and does not claim authorship over, or any rights to, TADS 3 itself. All resources copyright their credited owners. TADS itself is <a href="https://www.tads.org/copyright.htm">Copyright ©2001-2013 Michael J. Roberts</a>.</p> | ||
<p><a href="/">Back to Homepage</a></p> | ||
</footer> | ||
</body> | ||
</html> | ||
|
||
<script> | ||
if(window.location !== window.top.location) { | ||
let header = document.getElementById('header'); | ||
let footer = document.getElementById('footer'); | ||
header.remove(); | ||
footer.remove(); | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters