A Flash Developer Resource Site

Search:

Type: Posts; User: FlashProfessor

Search: Search took 0.06 seconds.

  1. Replies
    4
    Views
    1,878

    Here are just a few key differences between XML...

    Here are just a few key differences between XML Control and the other Flash CMS options:

    MotoCMS and fCMS requires installation of server-side scripting such as PHP. XML Control requires no...
  2. Replies
    4
    Views
    1,878

    Flash CMS - XML Control

    Hello Fellow Flash Developers,
    I have a CMS called XML Control that I created to allow your clients to update their Flash site without the need to bother you. This of course only works if your Flash...
  3. Does it work fine if you remove from the...

    Does it work fine if you remove <br/> from the XML?

    It could also be an font embed issue. Select the text box and under the PROPERTIES section click "Character Embedding" and select the character...
  4. Replies
    1
    Views
    311

    Hey stopandstare, You need to assign the...

    Hey stopandstare,
    You need to assign the addEventListener after newNavSat has been added to the stage. You then need to target it correctly knowing that contactBtn is located inside the newNavSat...
  5. CDATA won't work inside an attribute. The proper...

    CDATA won't work inside an attribute. The proper way is to use it inside the node value. I rewrote your sample code in a way that will allow for this.



    <?xml version="1.0"...
  6. Replies
    1
    Views
    2,040

    You could try: on (release) { getURL...

    You could try:

    on (release) {
    getURL ("javascript:window.close()");
    }

    or

    on (release) {
    getURL ("javascript:self.close()");
  7. Instead of assigning the value like: ...

    Instead of assigning the value like:


    mc_allstates.date_txt.htmlText= subnodes[0].firstChild.toString();

    try this instead


    mc_allstates.date_txt.htmlText = subnodes[0].firstChild.nodeValue;
  8. If you wanted to use the string "]]>" inside of...

    If you wanted to use the string "]]>" inside of CDATA then you should write the characters in HTML code.

    Here is a list of some of these special HTML characters:...
  9. Replies
    3
    Views
    4,350

    It appears that you are not closing the "song"...

    It appears that you are not closing the "song" node. Try this:


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html...
  10. I believe the issue is that you are not embedding...

    I believe the issue is that you are not embedding regular and bold style fonts.

    One way to solve this is to enter text into the dynamic text field and select one of the characters and bold it....
  11. Replies
    3
    Views
    1,929

    First, you will need to fix your XML. The SONG...

    First, you will need to fix your XML. The SONG nodes need to be closed.


    <?xml version="1.0" encoding="utf-8"?>
    <PLAYLIST>
    <SONG URL="audio/print ad.mp3"/>
    <SONG URL="audio/In-Office...
  12. Replies
    8
    Views
    10,019

    You only need to embed the font you want to use...

    You only need to embed the font you want to use for that particular dynamic text field. System fonts such as Arial or Times New Roman don't necessarily need to be embedded since these are common...
  13. Replies
    8
    Views
    10,019

    This could be a result of not embedding certain...

    This could be a result of not embedding certain characters of the particular font you are using.

    Try this:
    1. Click on the dynamic textbox.
    2. In the PROPERTIES window you should see a section...
  14. Replies
    8
    Views
    10,019

    Hey RobbieC, I just amended the prior code to...

    Hey RobbieC,
    I just amended the prior code to be able to parse your xml. All you have to do is paste in this code on the demo above and be sure to add in your textfields.


    var...
  15. Replies
    8
    Views
    10,019

    I'm attaching of a working example of your code.

    I'm attaching of a working example of your code.
Results 1 to 15 of 15




Click Here to Expand Forum to Full Width

HTML5 Development Center