• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[ALL AAC's] Simple POPUP for IMAGES or HTML PAGES 1.0

RaikND

facebook.xenoria.org
Joined
May 12, 2010
Messages
942
Reaction score
10
Location
Spain
Heya, i want share this simple script but usefull for make promo for ours servers.
I will put only simple guide for Modern AAC, but can be use for all AAC, simple coded on javascript & html.
Soon i will upgrade for EASY modify.

If any can make for Gesior & Znote, i will upload on first theard and give credits who's helping how to make intro on another AAC's.

How to config?:
- width=450, height=450 (change size from you HTML Page or IMAGE)
- /YOUFOLDER/YOUIMAGE.png (change direction from where is saved the HTML PAGE or IMAGE)

Okey, first step, put this code intro template:
For MODERN ACC (htdocs&www/web/templates/YOUTEMPLATENAME/index.tpl) - under "<meta></meta>":
PHP:
<script language="javascript">
function openWindows (showit) {
var options="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=450, height=450, top=85, left=140";
window.open(showit,"/YOUFOLDER/YOUIMAGE.png",options);
}
</script>

For MODERN ACC (htdocs&www/web/system/application/views/home.php) under "require("config.php");):
PHP:
echo "<body onload=\"showit('/YOUFOLDER/YOUIMAGE.png');\">";

If you like, feel free to give REP+, i will returnback, put in comment // YOUNAME.
Thanks in advance.
 
Back
Top