Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default html

    in your aspx page change
    <asp:Datagrid.......width="100%" ....
    to
    <asp:Datagrid.......width="700px"....
    >-----Original Message-----
    >Iam developing an htc component.
    >I have a table with width and height specified in %. how
    to i convert it to
    >pixels.
    >thanks
    >
    >
    >.
    >
    makthar Guest

  2. Similar Questions and Discussions

    1. 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....
    2. 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...
    3. 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...
    4. 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...
    5. 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. &amp), and put...
  3. #2

    Default html

    can i have html pages seen in a flash movie


    John Newcomb Guest

  4. #3

    Default Re: html

    "John Newcomb" <jnewcomb01@comcast.net> wrote in message
    news:_yJ7b.411568$uu5.74865@sccrnsc04...
    > can i have html pages seen in a flash movie
    No, but;

    <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

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default Re: HTML

    On Wed, 17 Nov 2004 15:13:21 GMT, "Keon" <jansen.koen@telenet.be>
    wrote:
    >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
    Flash supports a limited subset of HTML tags. You can use CSS to
    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

  8. #7

    Default html

    I need to know how to insert html code from anfy
    sexydoctor Guest

  9. #8

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139