Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
makthar #1
html
in your aspx page change
<asp:Datagrid.......width="100%" ....
to
<asp:Datagrid.......width="700px"....to i convert it to>-----Original Message-----
>Iam developing an htc component.
>I have a table with width and height specified in %. how>pixels.
>thanks
>
>
>.
>makthar Guest
-
Flash .html Plays on Server but NOT on html page
Sorry for being so green. Running IIS Microsoft Server 1. Installed FMS 2. Installed Player 8 and 9 Uploaded .flv and .swf files to server.... -
HTML <Href Link inside a form (HTML text box)
Hello, I am using a standard HTML Form to gather information from users and one of the elements within the form is a text box that users will paste... -
html character enities and other html tags in Contribute3.x
If you need support/integration of additional html character entities and other html tags in Contribute 3.x, please let Macromedia know that you are... -
textArea's and external html files> linking in the html to a new file
Is it possible to have a link like an <a href... in a html file loaded into a textArea which then if clicked loads a new html into the same... -
How to use HTML::Parser to remove HTML tags and print result
I am trying to use HTML::Parser to parse an HTML file, remove all HTML tags (including comments, etc.), replace all ENTITIES (e.g. &), and put... -
-
Igor Cuckovic #3
Re: html
"John Newcomb" <jnewcomb01@comcast.net> wrote in message
news:_yJ7b.411568$uu5.74865@sccrnsc04...No, but;> can i have html pages seen in a flash movie
<copyPaste>
Flash lets you preserve rich text formatting in input and dynamic text
fields. If you select the Render text as HTML formatting option in the
Property inspector or set the html property of the TextField object to true,
Flash preserves basic text formatting (such as font, style, color, and size)
and hyperlinks in the text field by automatically applying the corresponding
HTML tags when you export the SWF file. You must use ActionScript to apply
HTML tags to text fields, either as part of the value of a text field
variable, or as the value of the htmlText property of the TextField object.
The following HTML tags are supported in text fields: <A>, <B>, <FONT
COLOR>, <FONT FACE>, <FONT SIZE>, <I>, <P>, and <U>.
The following HTML attributes are supported in text fields: LEFTMARGIN,
RIGHTMARGIN, ALIGN, INDENT, and LEADING.
</copyPaste>
bye
--
Chule
[url]www.uraa.com[/url]
[url]http://mls.f2o.org/nomadi[/url]
[url]http://newsgrupe.tk[/url]
Igor Cuckovic Guest
-
zippy the pig #4
Re: html
Probably easier to build a frameset, have the flash wherever you want it and
to be the nav system, then have your pages show up as standard html.
This will make you editing of text a whole lot easier too.
"John Newcomb" <jnewcomb01@comcast.net> wrote in message
news:_yJ7b.411568$uu5.74865@sccrnsc04...
: can i have html pages seen in a flash movie
:
:
zippy the pig Guest
-
Keon #5
HTML
Hello,
Is it possible to include a html file in a flash file?
I want to make a flash website but i want to use html file as textfields
because the layout is easer to optimise in HTML then in flash.
I use flash 5 to create my website.
Can somewhone help me?
greeting
Koen
Keon Guest
-
wvg@wideopenwest.com #6
Re: HTML
On Wed, 17 Nov 2004 15:13:21 GMT, "Keon" <jansen.koen@telenet.be>
wrote:
Flash supports a limited subset of HTML tags. You can use CSS to>Hello,
>
>Is it possible to include a html file in a flash file?
>
>I want to make a flash website but i want to use html file as textfields
>because the layout is easer to optimise in HTML then in flash.
>
>I use flash 5 to create my website.
>
>Can somewhone help me?
>
>greeting
>Koen
optimise the HTML that's supported.
For an example of what's possible, check out my site that uses
external HTML files extensively.
[url]http://www.bb-video.net/[/url]
The body of each tutorial is a different external HTML file (depends
on which page button you click).
One way to make a HTML page load from a Flash button using CSS for
formatting follows. The HTML pages need to be modified. DO NOT use the
head tags! Begin and end with just a <body> tag. As you can see, you
can make custom tags and call them anything you want. In the example
below the <M> tag stands for main body and <X1> for a sub heading. The
tags are nested just like in a regular HTML page and you must close
innner tages before starting, closoing outer tags.
Example partial HTML file:
<body><M><X1>My Web page</X1> more text here...</M></body>
Example partial external CSS file:
M{
color: #FFFFFF;
font-size: 14;
font-family: "Tahoma",Arial, Helvetica, sans-serif;
font-weight: normal;
margin-left: 6;
margin-right: 6;
display: block
}
X1 {
text-align:center;
color: #A09DA4;
font-family: sans-serif;
font-size: 18;
font-weight: bold;
display: block
}
.................................................. .............
The following is in ActionScript and would go on a page button
on (release) {
style_sheet = new
TextField.StyleSheet();
css_loc = "name of external style sheet.css";
xml_loc = "name of file.htm";
style_sheet.load(css_loc);
style_sheet.onLoad =
function(ok)
{
if(ok)
{
loadXML(xml_loc);
}
else
{
}
}
function loadXML(str)
{
var xml_loc = str;
myXML = new XML();
myXML.onLoad = function()
{
// create a Dynamic Text Field named myText_txt
// values below as follows: name,level, X, Y, width, height
temptext = myXML.firstChild;
createTextField("myText_txt",1, 24, 100, 500, 335);
// set features for newly created text field
myText_txt.multiline = true;
myText_txt.wordWrap = true;
myText_txt.html = true;
myText_txt.styleSheet = style_sheet;
myText_txt.htmlText = temptext;
}
myXML.load(xml_loc);
}
}
wvg@wideopenwest.com Guest
-
-
Murray *TMM* #8
Re: html
You don't. Java applets are bulky, balky, and not worth the trouble, in my
opinion, since many people will not even have the Java engine installed and
won't see a thing.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"sexydoctor" <webforumsuser@macromedia.com> wrote in message
news:dasg4d$3n6$1@forums.macromedia.com...>I need to know how to insert html code from anfy
Murray *TMM* Guest



Reply With Quote

