answersLogoWhite

0


Best Answer

If you are playing the video in Flash you can call a javascript function at the end of the video streaming through getURL. So internally the javascript function will open the pop up window.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you get a window to pop up only after a video finishes using JavaScript or VBscript?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can one use JavaScript to open a window?

JavaScript contains a function that is specifically written and designed for the purpose of opening a new window. In Javascript, this function is simply called 'open new window'. When this object is initiated, one can determine the properties of the window to be called and open a new window using JavaScript.


Why use VBscript in ASP?

The choice of VBscript in ASP versus other options is mostly personal perferance. Using VBscript allows you access to thousands of functions and operators to help you code easier, and more effectivley.A personal preference towards VBscript when coding in ASP may be because it follows the same style of programming. For example, a Javascript operator might look like this:&&Whereas an asp operator will be written as:AndVBscript follows this same methodology, and make for an easier "mesh" with the natural coding of ASP.


Home page containing pull down menu box for the links using vbscript?

Home page containing pull down menu box for the links using VBScript.


How do you close a browser window with HTML code?

You can't do it with HTML code.You can use the Javascript method window.close() but for security reasons, you can only close a window if you opened it with Javascript. For instancevar popUp = window.open('popup.html');(.......)popUp.close();This code isn't worth much, because it's not connected to any event (so it opens a window that it immediately closes) but that's the basic idea.


How do you check length of password using javascript?

Use the length property of string in javascript.


How do you find out how many digits are in integer using vbscript?

num=32767 MsgBox(len(num))


Can you get ipaddress by using javascript?

No, use asp


How do you show the text box output in the browser using Ajax code?

You can directly do that in the JavaScript. Just get the value of the input type in JavaScript using id and show it using .innerHTML.


What are the benefits of using JavaScript for forms?

JavaScript can help with dynamic retrieval of form data using AJAX and also the data can be checked and validated before sending it to the server. Apart from that you could add some animation and change views using javascript and jquery.


What is the php code to close the existing window using button?

It is not a PHP code but a Javascript code. w3schools.com has all the answers you need about Javascript. It will teach you how to use the code and implement it into your website. If you're creating your own websites I suggest you actually learn the code. It will come in handy later on.


What has the author Sloan Trasher written?

Sloan Trasher has written: 'Building web applications using VBScript' -- subject(s): World Wide Web, HTML (Document markup language), VBScript (Computer program language)


How can you close the iframe in calling page in php and javascript?

Using JavaScript, you can accomplish this by deleting the iframe node from the DOM.