OFPEC Forum
Editors Depot - Mission Editing and Scripting => ArmA - Editing/Scripting General => Topic started by: LCD on 11 Nov 2007, 01:15:30
-
doesn ny1 knows how i can make a two pages overview in ArmA ? watever i do it doesnt seem to work... i get da arrow dat shud change page... but da arrow doesnt work...
LCD OUT
-
doesnt it do it anyway when the first page is full?
-
it doesnt work... it gives an arrow dat shud point 2 da next page... but nothing happens wen da arrow is clicked...
LCD OUT
-
Since it's html I wondered putting in ur own click link to the following page with an anchor would do the trick but it doesn't;
so no workarround that bug like this :shhh:
-
I haven't done any overview.html but I have been doing a lot of HTML controls for dialogs recently. The only way I can get the arrows to show up to scroll through in those is to structure it like this:
<html>
<body>
<h2><a name="Main"></a></h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</body>
</html>
Note that there is to text for the anchor tag "Main" (can be called anything) and there is no internal target marked with "#" later in the document. If I try any other sections or links I get variable results. If I do this I get the arrows to show up. Maybe it will work for overviews too!