User Profile

Collapse

Profile Sidebar

Collapse
saijin
saijin
Last Activity: Sep 8 '08, 11:08 PM
Joined: Aug 15 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • saijin
    started a topic Checkbox on XML List

    Checkbox on XML List

    Are there anyway that I can add a checkbox on a component that supports "dataProvid er" and HTML tags?

    Here's what I have so far:

    Code:
    import fl.data.DataProvider;
    import fl.managers.StyleManager;
    import fl.controls.List;
    import fl.controls.TileList;
    import fl.controls.TextArea;
    
    import fl.controls.ComboBox;
    
    
    var currentCategory:int;
    var
    ...
    See more | Go to post

  • saijin
    started a topic Calling a List of XML Data into a TextArea

    Calling a List of XML Data into a TextArea

    I'm planning to call a list of data from an XML file but when I duplicate the content inside the <data></data> it is not showing anything


    Here's the ActionScript 3.0

    Code:
    import fl.controls.ComboBox;
    import fl.controls.TextArea;
    import fl.containers.UILoader;
    
    //Component Style
    import fl.managers.StyleManager;
    
    var xmlLoader:URLLoader = new URLLoader();
    ...
    See more | Go to post

  • saijin
    replied to External XML into ActionScript 3.0 Text Field
    in XML
    Here's the full ActionScipt 3, make sure to add all the components in the library

    Code:
    import fl.controls.ComboBox;
    import fl.controls.TextArea;
    import fl.containers.UILoader;
    
    //Component Style
    import fl.managers.StyleManager;
    
    var xmlLoader:URLLoader = new URLLoader();
    var dataURL:URLRequest = new URLRequest("data.xml");
    xmlLoader.addEventListener(Event.COMPLETE,xmlLoaded);
    ...
    See more | Go to post

    Leave a comment:


  • saijin
    started a topic External XML into ActionScript 3.0 Text Field
    in XML

    External XML into ActionScript 3.0 Text Field

    I've been trying to implement simple lines of XML into my flash file created with ActionScript 3.0, but things seem not to be working.

    All I want to do is to load an external XML file (data.xml), and output the content which are inside the <project text="content to show"></project> tags into a scripted text field.

    Here are what I've been doing so far:
    Code:
    var txtFldPassage:TextField
    ...
    See more | Go to post
No activity results to display
Show More
Working...