If you did not find your answer on this page, please write your question in this field and click Send.

How do I make the game with the same color as my homepage ?
Do I have to buy a new game if I want to change the images ?
Can I get SuccesUrl to show up in a popupwindow without toolbars ?
How do I find heaxadecimal values for my colors ?



How do I make the game with the same color as my homepage ?
There are 3 options for backgrounds

  1. MyBg=transp
    Will make the background same color as your homepage 
    See example
  2. MyBg=0xB60E24
    Will make the background red 
    (find values with the Color picker in the menu)
    See example
  3. MyBg=image
    Will use "bg.jpg" as background
    See example



Do I have to buy a new game if I want to change the images ?
No when you replace the images in your game directory the game will play with new images.
If you donīt want to do the editing yourself, you can use the free CropShop to resize your images to fit the game.


When I set SuccesUrlTarget=_blank my SuccesUrl shows up in a new browser. I want it to show up in a popupwindow without toolbars.
Is this possible ?

This function is not part of the game.
Here is a way to solve the problem by making a asp-file ("timetester_a.asp") that will 
1 open a window ("timetester_b.asp") without toolbars
2 go back to the game with "window.history.back();"
This presuppose that you use these settings
in the "config.txt"
SuccesUrlTarget=_self 
SuccesUrl=http://www.yourserver.com/timetester_a.asp

timetester_a.asp
<HTML><HEAD>
<TITLE>Welcome</TITLE>
<script language="JavaScript">
<%
time_in=request.QueryString("time")
response.Write "window.open('timetester_b.asp?time=" & time_in & "','','scrollbars=no,status=no,width=300,height=400');"
%>
window.history.back();
</script>
</HEAD><BODY></BODY></HTML>

 

timetester_b.asp
<HTML><HEAD>
<TITLE>Welcome</TITLE>
</HEAD><BODY>
<br>
<%
time_in=request.QueryString("time")
response.Write "Your time: <b>"
response.Write time_in
response.Write " Sec.</b><br><br>"
%>
Fill out the form and bla bla bla...........
</BODY>
</HTML>

See how it works here
And Download the "config.txt" and asp-files here: popup_package.zip (2 Kb)


How do I find heaxadecimal values for my colors ?
Please use the Color picker in the menu