Application of HTML and CSS in Flash

Application of HTML and CSS in Flash
Application of HTML and CSS in Flash:
I accidentally saw my colleague Den making something: using HTML and CSS in Flash. The code is as follows:
var myStyle:TextField.StyleSheet = new TextField.StyleSheet();
myStyle.load("sample.css");
content_txt.styleSheet = myStyle;
content_txt.multiline = true;
content_txt.wordWrap = true;
content_txt.html = true;
var story:XML = new XML();
story.ignoreWhite = true;
story.load("sample.html");
story.onLoad = function () {
content_txt.htmlText = story;
}
This is for loading external CSS and HTML (actually loading XML as HTML using -_-b). Later, Den wrote two ways to write styles in AS:
var css_str:String = ".aoao{color:#010101;font-weight:bold;} .aoao:hover{color:#ff0000}";
myStyle.parseCSS(css_str)myStyle.setStyle(".aoao", {color:'#010101', fontWeight:'bold'});
myStyle.setStyle(".aoao:hover", {color:"#ff0000"});
In fact, HTML can also be written in AS, just spell the string directly. Whether to write CSS in AS or load external CSS depends on the situation. When using it on the Web, you also need to consider the number of requests, file size, cache, and more importantly, maintenance costs. However, I can't think of any suitable application in Web applications. It doesn't make much sense to use HTML to load Flash in the browser and then use Flash to load HTML and CSS. Moreover, the support is very weak. Take a look at the supported HTML tags and CSS attributes. = I originally wanted to use it to solve the problem of Chinese underline, but it didn't work. I heard that others use flash to draw underline.
Just play around with the browser app. Stay with the desktop app.

<<:  Summary of common docker commands

>>:  MySQL DATE_ADD and ADDDATE functions add a specified time interval to a date

Recommend

JavaScript Dom Object Operations

Table of contents 1. Core 1. Get the Dom node 2. ...

Install Python virtual environment in Ubuntu 18.04

For reference only for Python developers using Ub...

How to implement horizontal bar chart with percentage in echarts

Table of contents Example Code Rendering Code Ana...

CSS sets the box container (div) height to always be 100%

Preface Sometimes you need to keep the height of ...

How to change the domestic source of Ubuntu 20.04 apt

UPD 2020.2.26 Currently Ubuntu 20.04 LTS has not ...

Thoughts on copy_{to, from}_user() in the Linux kernel

Table of contents 1. What is copy_{to,from}_user(...

Summary of 16 XHTML1.0 and HTML Compatibility Guidelines

1. Avoid declaring the page as XML type . The pag...

Example of how to quickly build a Redis cluster with Docker

What is Redis Cluster Redis cluster is a distribu...

CentOS 8 officially released based on Red Hat Enterprise Linux 8

The CentOS Project, a 100% compatible rebuild of ...

The simplest form implementation of Flexbox layout

Flexible layout (Flexbox) is becoming increasingl...

Notes on using the blockquote tag

<br />Semanticization cannot be explained in...

Analysis of the use of the MySQL database show processlist command

In actual project development, if we have a lot o...

Summary of common knowledge points required for MySQL

Table of contents Primary key constraint Unique p...

Examples of vertical grid and progressive line spacing

New Questions Come and go in a hurry. It has been...

A complete record of a Mysql deadlock troubleshooting process

Preface The database deadlocks I encountered befo...