Home   Help Search Login Register  

Author Topic: two pages overview  (Read 1023 times)

0 Members and 1 Guest are viewing this topic.

Offline LCD

  • Former Staff
  • ****
    • Everon Cartel
two pages overview
« 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
"guess being the community has downsides .." - cheetah
Help Perfecting Da Next Best Thing - O-Team Beta

Offline Surdus Priest

  • Members
  • *
  • Only I can Forgive You!
Re: two pages overview
« Reply #1 on: 11 Nov 2007, 02:31:53 »
doesnt it do it anyway when the first page is full?
Campaigns are hard, I'll stick with scripting for now!

Offline LCD

  • Former Staff
  • ****
    • Everon Cartel
Re: two pages overview
« Reply #2 on: 11 Nov 2007, 02:38:02 »
it doesnt work... it gives an arrow dat shud point 2 da next page... but nothing happens wen da arrow is clicked...

LCD OUT
"guess being the community has downsides .." - cheetah
Help Perfecting Da Next Best Thing - O-Team Beta

Offline Seven

  • Members
  • *
  • Am I a llama?
Re: two pages overview
« Reply #3 on: 11 Nov 2007, 14:23:38 »
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:

Offline Loyalguard

  • Former Staff
  • ****
Re: two pages overview
« Reply #4 on: 11 Nov 2007, 20:00:11 »
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:

Code: [Select]
<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!