Skills Summary: Flash some common code
Related Tags:
Now compiled some information on, for you to get
The first method:
Do not show the browser menu bar, the full-screen toolbar. This full-screen bit complicated and has nothing to do with FLASH settings, but should take advantage of JavaScript to complete. Method: In an html document <head> </ head> intergovernmental by adding the following code:
<script Language="JavaScript">
<! --
Window.open ( "nfd.swf ",""," fullscreen = 1, menubar = no, Width = 100%, Height = 100%")
//-->
</ Script>
The second method:
SWF files can be in the first frame Actions on GETURL order to add:
Javascript: window.open ( "nfd.swf ",""," fullscreen = 1, menubar = no, width = 800, height = 600")
This full-screen is similar screensavers, use ALT F4 button or setting out. Set the fullscreen = 0, then just do not show that the browser menu bar, the full-screen toolbar.
Another way: javascript: window.open ( "*. swf ",""," menubar = no,
Toolbar = no, location = no, status = no, fullscreen = yes ")
Personally, I recommend this ^ _ ^
The third method:
Some little trouble, and needs two websites Oh *-*
You can create a blank page with the code:
<html>
<script Language="JavaScript">
Window.open ( "*. htm," "newwin", "fullscreen = yes, status = no, location = no,
Toolbar = no, directories = no, menubar = no, resizable = yes, scrollbars = no ");
</ Script>
</ Html>
*. Htm you his replacement for yourself open to the page on the screen can be a
Some little trouble, and needs two websites Oh *-*
You can create a blank page with the code:
<html>
<script Language="JavaScript">
Window.open ( "*. htm," "newwin", "fullscreen = yes, status = no, location = no,
Toolbar = no, directories = no, menubar = no, resizable = yes, scrollbars = no ");
</ Script>
</ Html>
*. Htm you his replacement for yourself open to the page on the screen can be a
The fourth method:
This method is more detailed, there are steps, but I do not have the experience, you can first try ah.
I wrote steps:
1, in Flashk do a good job in animation, the first choice in the main menu of the File Publish Settings (document issued an order setting), the pop-up dialog box, click access to HTML settings: Setting Dimensions size units Percent percentage in the wide, high school settings 100. And click on the release button can be released. Thus, in the original document, you will create an animation and the HTML file the same name.
2, the establishment of a blank HTML pages blank.htm, retaining only <html> </ html> Tags part.
3, with the establishment of a framework document show.html html page html text as follows:
<html>
<frameset Rows="100%,*" framespacing="0" frameborder="no" border="0">
<Frame name = "top" src = "of animation. Html" frameborder = "0" Border = "0"
Marginwidth = "0" marginheight = "0" leftmargin = "0" rightmargin = "0" topmargin = "0">
<Frame name = "blank" src = "blank.html"
Frameborder = "0" border = "0" marginwidth = "0" marginheight = "0" leftmargin = "0" rightmargin = "0" topmargin = "0">
</ Frameset>
</ Html>
The document will be divided into two pages framework, the above release of animation. Html document, the following release blank.html document.
Note: The animation were. Html document is the first step to publish it in the corresponding html file.
4, the establishment of a zone JavaScript script html document full.html. Show.html use this document and open its Display window for the definition of full-screen, non-menu, scroll bar, status bar.
Html text of the document are as follows:
<html>
<script Language="JavaScript">
Window.open ( "show.html", "newwin", "fullscreen = yes, status = no, location = no, toolbar = no,
Directories = no, menubar = no, resizable = yes, scrollbars = no ");
</ Script>
</ Html>
Step 4 above and the third the same way
FLASH how to achieve Favorite folders, and the effect of Homepage
Q: How do I set actionscript Home page and Favorites folder?
A: First, use the getURL:
Homepage:
On (release) (
GetURL ( "getURL (" javascript: void (document.links [0]. Style.behavior = 'url (# # default homepage)'); void document.links [0]. SetHomePage ( 'your site http:// Address /');", "_self", "POST");)
Favorites folder:
On (release) (
GetURL ( "getURL (" javascript: void window.external.AddFavorite ( 'http:// your website address,' 'website name');", "_self", "POST");)
The second method is by using fscommand approach to a complicated than some of the above. First in Flash ActionScript Add button on the script code Homepage
On (release) (fscommand ( "setHomePage", "your http:// address of the Web site");) Add to Favorites
On (release) (fscommand ( "addFavorite", "Web site address http:// | Site Name");) in the Flash animation released when elected HTML, in the drop-down menu, choose Template Flash with fscommand, then issued a html pages the right to publish it to amend the HTML page in the HTML code to find such a
/ / Handle all the the FSCommand messages in a Flash movie function sethomepage_DoFSCommand (command, args) ()
This section of a modified / / Handle all the the FSCommand messages in a
Flash movie function sethomepage_DoFSCommand (command, args) (
Var sethomepageObj = InternetExplorer? Sethomepage: document.sethomepage; if (command == "setHomePage") (
Document.links [0]. Style.behavior = "url (# # default homepage)";
Document.links [0]. SetHomePage (args);) else if (command == "addFavorite")
Args = (args.split ("|"); window.external.AddFavorite (args [0], args [1]); Finally, if html, a link is no need In "SCRIPT LANGUAGE = javascript> This Add in front of a <a href = "javascript :"></ a>
Related articles:This method is more detailed, there are steps, but I do not have the experience, you can first try ah.
I wrote steps:
1, in Flashk do a good job in animation, the first choice in the main menu of the File Publish Settings (document issued an order setting), the pop-up dialog box, click access to HTML settings: Setting Dimensions size units Percent percentage in the wide, high school settings 100. And click on the release button can be released. Thus, in the original document, you will create an animation and the HTML file the same name.
2, the establishment of a blank HTML pages blank.htm, retaining only <html> </ html> Tags part.
3, with the establishment of a framework document show.html html page html text as follows:
<html>
<frameset Rows="100%,*" framespacing="0" frameborder="no" border="0">
<Frame name = "top" src = "of animation. Html" frameborder = "0" Border = "0"
Marginwidth = "0" marginheight = "0" leftmargin = "0" rightmargin = "0" topmargin = "0">
<Frame name = "blank" src = "blank.html"
Frameborder = "0" border = "0" marginwidth = "0" marginheight = "0" leftmargin = "0" rightmargin = "0" topmargin = "0">
</ Frameset>
</ Html>
The document will be divided into two pages framework, the above release of animation. Html document, the following release blank.html document.
Note: The animation were. Html document is the first step to publish it in the corresponding html file.
4, the establishment of a zone JavaScript script html document full.html. Show.html use this document and open its Display window for the definition of full-screen, non-menu, scroll bar, status bar.
Html text of the document are as follows:
<html>
<script Language="JavaScript">
Window.open ( "show.html", "newwin", "fullscreen = yes, status = no, location = no, toolbar = no,
Directories = no, menubar = no, resizable = yes, scrollbars = no ");
</ Script>
</ Html>
Step 4 above and the third the same way
FLASH how to achieve Favorite folders, and the effect of Homepage
Q: How do I set actionscript Home page and Favorites folder?
A: First, use the getURL:
Homepage:
On (release) (
GetURL ( "getURL (" javascript: void (document.links [0]. Style.behavior = 'url (# # default homepage)'); void document.links [0]. SetHomePage ( 'your site http:// Address /');", "_self", "POST");)
Favorites folder:
On (release) (
GetURL ( "getURL (" javascript: void window.external.AddFavorite ( 'http:// your website address,' 'website name');", "_self", "POST");)
The second method is by using fscommand approach to a complicated than some of the above. First in Flash ActionScript Add button on the script code Homepage
On (release) (fscommand ( "setHomePage", "your http:// address of the Web site");) Add to Favorites
On (release) (fscommand ( "addFavorite", "Web site address http:// | Site Name");) in the Flash animation released when elected HTML, in the drop-down menu, choose Template Flash with fscommand, then issued a html pages the right to publish it to amend the HTML page in the HTML code to find such a
/ / Handle all the the FSCommand messages in a Flash movie function sethomepage_DoFSCommand (command, args) ()
This section of a modified / / Handle all the the FSCommand messages in a
Flash movie function sethomepage_DoFSCommand (command, args) (
Var sethomepageObj = InternetExplorer? Sethomepage: document.sethomepage; if (command == "setHomePage") (
Document.links [0]. Style.behavior = "url (# # default homepage)";
Document.links [0]. SetHomePage (args);) else if (command == "addFavorite")
Args = (args.split ("|"); window.external.AddFavorite (args [0], args [1]); Finally, if html, a link is no need In "SCRIPT LANGUAGE = javascript> This Add in front of a <a href = "javascript :"></ a>
- Hidden in the website of the skills DIV
- [Skills] CSS broadcast of the Super Skills
- Div + css ? ? ?
- DIV and Layer
- Fillet div
- [HTML] show / hide DIV skills (visibility and display the difference)
- Internet search skills of the hookup skills
- What is DIV?
- Common DIV + CSS page layout production of technical skills
- Div borders
- CSS skills learning: the same as table layout div
- Web production skills ------ DIV CSS style tags in the application design
- Div ?asp.net ? ?
- DIV
- Css skills
- Web design skills: how to hide in the pages of DIV
- Div ? ? ? ¨°
- CSS: ? ? ? ?div ? ?
- On the hidden div
- Div layer
Use javascript to achieve (the effect of loading pages)

Code documents: Using System; Using System.Collections; Using System.ComponentModel; Using System.Data; Using System.Drawing; Using System.Web; Using System.Web.SessionState; Using...
Implementation of dynamic page transition effects

FrontPage through the "Format" menu "Web transition" option, the website can enter or exit the dynamic effect of different settings. But Dreamweaver was not the special effects options, the need to install plug-ins. In fact, to achieve this effect...
DIV of the increase with rolling

<Div style = "PADDING-RIGHT: 10px; OVERFLOW-Y: auto; HEIGHT: 256px; TEXT-ALIGN: left; background-repeat: no-repeat; width: 305px; "> </ Div> ...
How to Optimize Flash animation, the document will be smaller and more fluid player?

Macromedia Flash as a production company produced the website and animation creation software, simple, powerful and has now become an interactive vector graphics and the de facto standard Web animation. However, if production of the Flash movie files larger, several hundred k, ...
Like how a website can do a good job

Office before playing in the game are those big games, only 97 contacts computer and found computer games more fun, and that time is Hongjing, Delta, etc. Half-Life games. 99, QQ chat beginning of the epidemic, in a friend's lead, first contact with the network. Vegetables t...