


Flash embedded in html Solution for embedding Flash files in html web page code (Part 1) _HTML/Xhtml_Web page production
It is the custom of the Chinese people to celebrate the New Year before the fifteenth day of the first lunar month. Here I would like to wish your friends in the garden a happy new year.
In the past few days, the company's website homepage needs to be revised. After the company's "staff reduction" at the end of last year, one person has to do the work of multiple people, and suddenly he feels that the burden is heavy. No, this is not something within the scope of my work. Unfortunately, I have been involved in it. Fortunately among the misfortunes, the task assigned to me by BOSS this time is exactly the front-end development task I have always been passionate about. I have been engaged in the development of back-end management programs for the company's website before, mostly processing business logic on the server side. I have never had the opportunity to put my skills into use in front-end development, which I am passionate about. Practice is the best way to test true knowledge. Solving the practical tasks assigned to me is a rare test. I learned a lot of scattered knowledge through books and various materials, but did not get the opportunity to combine them together. Comprehensive test”, haha. There are so many ink stains on the front, which are caused by suppressing them for a long time, haha.
Let me first describe the task requirements: There is a JPG picture composed of five balls on the homepage of the company's website. It is used for navigation. Clicking on the text on each ball will open the corresponding information. On the secondary page, there is an almost identical Flash version corresponding to the image. One of the tasks assigned to me by my boss is: when the client browser has a Flash file player installed, the Flash version of the navigation is displayed, and vice versa, the JPG image navigation is displayed. After getting the task, think about it for a moment. As a front-end development, of course you have to consider browser compatibility issues. The best way to bridge the gap between browsers is to use one or more mature JavaScript frameworks. Fortunately, there happens to be one A very mature and sophisticated JS framework exists, named: SWFObject.js.
The first time I came into contact with SWFObject.js was its V1.5, and this time I used V2.1 to solve the problem. There are still some differences in the use of the two. Overall, I feel that V2.1 is a big leap forward compared to V1.5. V2.1 is more in line with the object-oriented JavaScript programming style in terms of the source code of the framework and the usage process.
I will take you to experience this "tortuous" journey from the perspective of a researcher who has just explored JavaScript. Whether you are a novice like me, or you are already proficient in writing various JS As a veteran of coding, please be merciful and hope that everyone can point out the short-sightedness in my thinking and the errors in my writing in a civilized manner.
The following code is an example of usage that I adapted from a documentation of SWFObject V1.5 (if you want to learn more about V1.5, please click this link):
If you want to briefly understand the meaning of each parameter in SWFObject(), please refer to the documentation, which I won’t repeat here.
I strongly recommend that you copy the code in "V1.5 Usage Example" into Notepad, and click SWFObject V1.5 to download the source file of the required V1.5 framework. After decompressing, find swfobject_source.js (uncompressed version, the file name of the compressed version is swfobject.js) file, rename the notepad file to demo.html and place it in the same folder as the swfobject_source.js file. Then please install it in IE6/IE7 and fox respectively. Run it in any browser such as , opera, safari, navigator, chrome, etc. and see what the result is.
If you follow my suggestions, you should find that this picture

If you happen to be using the VS 2003/2005/2008 series of IDEs for development, then I don’t need to teach you how to debug JavaScript code. You can var so = above... Open a debugger, and then debug and trace it. Keep pressing F11 until you trace the inside of the swfobject_source.js file through the so.write() method. You will find that the actual parameter "flashcontent" passed to so.write(elementId) is in the document. The value of .getElementById("flashcontent") is always null. Why is this? Found the problem?
Haha, if you are still a newbie who doesn’t know much about JavaScript, you will be as confused as I was at that time. After many times of debugging and modifying the code, I firmly believe that what I wrote There is no error in the JS code itself. Is there a problem with the externally loaded swfobject_source.js file? If there is a problem, where is the problem? At that time, I was looking for a solution to the error, and I modified the above code into the following example:
If you execute the above code, you will find that this picture is still displayed on the page

If you see this, you will definitely experience my annoyance at that time. After taking a short rest, I cleared my mind and looked back, only to find that the essence of the problem lies in "HTML DOM loading". In a page, JS scripts in the head of the page (that is, between ) and JS files loaded from external files will be executed before the HTML DOM is actually constructed. Therefore, the scripts executed in these two places cannot access the DOM that does not yet exist. You should know the real reason, which is that during the execution of the JS code in Example 1.1, the
Okay, after seeing this, there is one last step that you need to do yourself, which is to simply modify the above code and adopt an inelegant method to solve it
About "HTML DOM" "Loading" problem, which method is it? I think you may have guessed it. Yes, it is exactly the following method:
_fcksavedurl=""swfobject_source.js">"
< body>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.
