HTTrack Website Copier
Free software offline browser - FORUM
Subject: Re: About htsswf
Author: Vincent
Date: 09/06/2009 06:20
 
look at these routines:

void Swf2HtmlConverterCallback::PutString(const char *str)
{
}

void Swf2HtmlConverter::PrintLink(const char* str)
{
    if (m_dumpLinks && StringIsLink(str))
	{
		PutString("...");
		PrintString(str);
		PutString("\">");
        PrintString(str);
		PutString("</a>\n");
	}
}

void Swf2HtmlConverter::ParseDoAction(bool fPrintTag)
{
    for (;;) 
    {
        // Handle the action
        ......

        switch ( actionCode ) 
        {
            ......

            case sactionGetURL:
            {
                char *url = GetString();
                PrintLink(url);
                break;
            }
        }
    }
}
 
Reply Create subthread


All articles

Subject Author Date
About htsswf

09/06/2009 06:15
Re: About htsswf

09/06/2009 06:20
Re: About htsswf

09/06/2009 10:20
Re: About htsswf

09/07/2009 08:52
Re: About htsswf

09/08/2009 08:31




7

Created with FORUM 2.0.11