Hello ,
I would like to add a kinda of slideviewer on initial login page.
Could you please help on this ?
What I need and how to implement it ?
Thanks !!!
The what is easy: You need Javascript and JQuery… the how, well, you will have to look for some examples and documentation on how to implement and use slideshows using JQuery. Maybe this helps: http://www.slidesjs.com/
OK, now you have the JS and JQuery code that you needed.
This is just a basic idea you could extend. You could use iframes, the base page would be the one with the slide show on top and below the iframe containing the login page of your Scriptcase application. The code below is pretty simple but just to give you an idea from where to start:
<html>
<body>
<p align=“center”><iframe src=“app_Login.htm” width=500 height=“500”></iframe></p>
</body>
</html>