Guest Posted May 18, 2011 Report Share Posted May 18, 2011 Hello captains' could be included in the exam center time for each question? Example: The pilot asks his take on the central of the pilot, when you open the pilot test would be required to have 10 to 15 minutes to perform this examination. PLEASE HELP ME!! Quote Link to comment Share on other sites More sharing options...
Moderators Kyle Posted May 18, 2011 Moderators Report Share Posted May 18, 2011 You could add a code to the exam, such as webpage timer. So say if the pilot enters the exam, and writes and when the timer hits, it could be redirected back to the page. Quote Link to comment Share on other sites More sharing options...
Guest Posted May 19, 2011 Report Share Posted May 19, 2011 You are able to do so? Quote Link to comment Share on other sites More sharing options...
vader21 Posted June 20, 2011 Report Share Posted June 20, 2011 You may do this with javascript <script type = "text/javascript"> var parselimit = 110; function submitForm() { document.forms[0].submit(); alert ("Your Exam has been submited due to your time limit."); } function begintimer(){ if (!document.images){return} if (parselimit==1){ submitForm(); } else { parselimit --; curhr=Math.floor(parselimit/3600); curmin=Math.floor(parselimit/60); curmin=curmin-(curhr*60); cursec=parselimit%60; if (curhr!=0) { curtime=curhr+" hr: "+curmin+" min: "+cursec+" sec"; } else if (curmin!=0) { curtime=curmin+" min: "+cursec+" sec"; } else { curtime=cursec+" seconds left" ; } window.status=curtime; tim = setTimeout("begintimer()",1000); thelement.innerHTML="<b style='font-size:14;color:red;'>"+curtime+"</b>" } } </script> And then don't forget to use the <body onload = "begintimer()"> Let me know if it all worked out for you! If not we can try to find the issue Quote Link to comment Share on other sites More sharing options...
RoylesVA Posted August 8, 2011 Report Share Posted August 8, 2011 were do u add this code ? Quote Link to comment Share on other sites More sharing options...
NathanV8 Posted July 28, 2012 Report Share Posted July 28, 2012 I Agree where does The script go? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.