Results 1 to 2 of 2

Thread: Reading Flash Chatlog?     submit to reddit submit to twitter

  1. #1
    Banned.

    Join Date
    Jul 2005
    Posts
    5,821
    BG Level
    8
    FFXI Server
    Sylph
    WoW Realm
    Arthas

    Reading Flash Chatlog?

    Hey there, awhile back there was a person who made a chatbot for Stickam, making me want to do the same. I've been looking for a way to do this for about 3 weeks off and on, getting more and more angry(annoyed really.) as time progresses. I'm honestly lost as to what to do at this point. If anyone wants to help that'd be great, if not I understand

    Stickam Source code:
    http://files.filefront.com/Stickamzi.../fileinfo.html

    I have no idea how they control the chat, it's not defined anywhere that I can find.

    Here is a link to the website:
    www.stickam.com

    Any advice on how to do this is welcomed.

    vcTextDisplay seems to control the chatlog, but I have no idea where they get it from. I'm an AS noob, but honestly how can you not define any variables?

    Spoiler: show
    Code:
        function check_lines()
        {
            if (text_display.bottomScroll >= max_lines)
            {
                this.clear_text();
            } // end if
        } // End of the function
        function add_text(what)
        {
            if (chat_text_enabled == 1)
            {
                if (textBuffer)
                {
                    text_display.htmlText = textBuffer.add_text(what);
                }
                else
                {
                    this.check_lines();
                    text_display.htmlText = text_display.htmlText + what;
                } // end else if
                if (!scrollbar.isRollOver)
                {
                    this.updateScroll();
                } // end if
            } // end if
        } // End of the function
        function set_text(what)
        {
            if (chat_text_enabled == 1)
            {
                if (textBuffer)
                {
                    text_display.htmlText = textBuffer.set_text(what);
                }
                else
                {
                    this.check_lines();
                    text_display.htmlText = what;
                } // end else if
                if (!scrollbar.isScrolling2)
                {
                    this.updateScroll();
                } // end if
            } // end if
        } // End of the function
        function get_text()
        {
            return (text_display.text);
        } // End of the function
        function get_htmltext()
        {
            return (text_display.htmlText);
        } // End of the function

  2. #2
    Bagel
    Join Date
    Jan 2006
    Posts
    1,428
    BG Level
    6

    I haven't looked through the source code at all yet, but I work with AS/flash for a living right now.

    PM me if you have any specific questions about what's going on and I can try to answer 'em.

Similar Threads

  1. Replies: 1
    Last Post: 2008-07-31, 18:46