Gamestudio Links
Zorro Links
Newest Posts
Stooq now requires an API key
by jcl. 04/13/26 09:42
Strange "Alien" Skull created with >Knubber<
by NeoDumont. 04/10/26 18:58
400 free seamless texture pack downl. here !
by NeoDumont. 04/08/26 19:55
ZorroGPT
by TipmyPip. 04/08/26 17:08
AUM Magazine
Latest Screens
Dorifto samurai
Shadow 2
Rocker`s Revenge
Stug 3 Stormartillery
Who's Online Now
3 registered members (vince, Quad, 1 invisible), 4,052 guests, and 14 spiders.
Key: Admin, Global Mod, Mod
Newest Members
VladMak, Geir, ondrej, mredit, vestriaa
19207 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Multi strategy HTML page #457399
01/16/16 23:18
01/16/16 23:18
Joined: Jan 2016
Posts: 122
V
Veratyr Offline OP
Member
Veratyr  Offline OP
Member
V

Joined: Jan 2016
Posts: 122
I wrote up a very basic bit of HTML that shows multiple Z strategy logs on the same page:

Code:
<html>
<head>
<title>Zorro Panel</title>
<style type="text/css">
    iframe {
        width: 33%;
        height: 100%;
    }
</style>
</head>
<body>
    <iframe src="Z12.htm"></iframe>
    <iframe src="Z3.htm"></iframe>
    <iframe src="Z7.htm"></iframe>
</body>
</html>



If you're running multiple Z strategies on a VPS or something, using IIS to serve the log folder, you can put this in a .htm beside the Z1/2/3/7/12.htm files and open it instead.

Pretty basic and probably something only a few people will care about but thought I'd share it nonetheless.

Last edited by Veratyr; 01/16/16 23:25.
Re: Multi strategy HTML page [Re: Veratyr] #457429
01/18/16 10:38
01/18/16 10:38
Joined: Jul 2000
Posts: 28,093
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 28,093
Frankfurt
Thanks! Very useful when you don't want to have your status on different pages.

Re: Multi strategy HTML page [Re: jcl] #457470
01/18/16 22:07
01/18/16 22:07
Joined: Mar 2015
Posts: 336
Rogaland
N
nanotir Offline
Senior Member
nanotir  Offline
Senior Member
N

Joined: Mar 2015
Posts: 336
Rogaland
Really useful nice one!
What about doing that each Z is bellow the other ones in the htm? No idea how to code that.

Re: Multi strategy HTML page [Re: nanotir] #457493
01/19/16 19:33
01/19/16 19:33
Joined: Jan 2016
Posts: 122
V
Veratyr Offline OP
Member
Veratyr  Offline OP
Member
V

Joined: Jan 2016
Posts: 122
If you set width to 100% as well you'll get them stacked one above the other but you'll have to scroll:

Code:
<html>
<head>
<title>Zorro Panel</title>
<style type="text/css">
    iframe {
        width: 100%;
        height: 100%;
    }
</style>
</head>
<body>
    <iframe src="Z12.htm"></iframe>
    <iframe src="Z3.htm"></iframe>
    <iframe src="Z7.htm"></iframe>
</body>
</html>



If you want them all visible but half height, you can set width to 100% and height to 33%:

Code:
<html>
<head>
<title>Zorro Panel</title>
<style type="text/css">
    iframe {
        width: 100%;
        height: 33%;
    }
</style>
</head>
<body>
    <iframe src="Z12.htm"></iframe>
    <iframe src="Z3.htm"></iframe>
    <iframe src="Z7.htm"></iframe>
</body>
</html>


Last edited by Veratyr; 01/19/16 22:18.
Re: Multi strategy HTML page [Re: Veratyr] #457497
01/19/16 22:07
01/19/16 22:07
Joined: Mar 2015
Posts: 336
Rogaland
N
nanotir Offline
Senior Member
nanotir  Offline
Senior Member
N

Joined: Mar 2015
Posts: 336
Rogaland
Thanks laugh


Moderated by  Petra 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1