<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by crazydog</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 10 Jun 2026 01:23:29 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>where i can buy cotton or polyester stuffing?</title>
            <link>http://forum.lowyat.net/topic/2193087</link>
            <description>Hello~~ i want to know where i can buy cotton or polyester stuffing for making dolls/plushies one?</description>
            <author>crazydog</author>
            <category>Serious Kopitiam</category>
            <pubDate>Tue, 17 Jan 2012 10:07:49 +0800</pubDate>
        </item>
        <item>
            <title>Flash and asp form integration</title>
            <link>http://forum.lowyat.net/topic/1106436</link>
            <description>noob here having some issues with flash and ASP integration and found no luck with other forums/tutorials etc.&lt;br /&gt;i need to create an enquiry form in flash which is using the .asp but it doesnt work&amp;#33; t_t&lt;br /&gt;&lt;br /&gt;the thing is when i try out the .swf in browser the form actually did pass the variables correctly into my email but the problem now is that after i click the send button, the frame doesnt go to the &amp;quot;success&amp;quot; frame. it just stays there and without realizing it the email has been sent successfully. &lt;br /&gt;i even can see the message in the status bar (firefox) being &amp;quot;waiting for server...&amp;quot; as if it was waiting to find the mailer page or something.&lt;br /&gt;&lt;br /&gt;here&amp;#39;s my .asp script:&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&amp;#60;%&lt;br /&gt;&lt;br /&gt;Public Function sendmail&amp;#40;strEmail, strSubject, strMsg&amp;#41;&lt;br /&gt;	Set Mail = Server.CreateObject&amp;#40;&amp;#34;Persits.MailSender&amp;#34;&amp;#41;&lt;br /&gt;	Mail.Host = &amp;#34;mail.website.com.my&amp;#34;&lt;br /&gt;	Mail.username =  &amp;#34;mailer@website.com.my&amp;#34;&lt;br /&gt;	Mail.password = &amp;#34;password&amp;#34;&lt;br /&gt;	&lt;br /&gt;	Mail.From = &amp;#34;admin@mywebsite.com.my&amp;#34;&lt;br /&gt;	Mail.AddAddress strEmail&lt;br /&gt;	Mail.Subject = strSubject&lt;br /&gt;	Mail.Body = strMsg&lt;br /&gt;	On Error Resume Next&lt;br /&gt;	Mail.Send&lt;br /&gt;End Function&lt;br /&gt;&lt;br /&gt;Public Function same_host&amp;#40;&amp;#41;&lt;br /&gt;     On Error Resume Next&lt;br /&gt;     Dim strHost, strReferer, blnCheckReferer&lt;br /&gt;     strHost = Request.ServerVariables&amp;#40;&amp;#34;HTTP_HOST&amp;#34;&amp;#41;&lt;br /&gt;    	strReferer = Request.ServerVariables&amp;#40;&amp;#34;HTTP_REFERER&amp;#34;&amp;#41;&lt;br /&gt;     strReferer = Right&amp;#40;strReferer, Len&amp;#40;strReferer&amp;#41; - &amp;#40;InStr&amp;#40;1, strReferer, &amp;#34;&amp;#58;//&amp;#34;&amp;#41; + 2&amp;#41;&amp;#41;&lt;br /&gt;    	strReferer = Left&amp;#40;strReferer, InStr&amp;#40;1, strReferer, &amp;#34;/&amp;#34;&amp;#41; - 1&amp;#41;&lt;br /&gt;     If strReferer = strHost Then&lt;br /&gt;         blnCheckReferer = True&lt;br /&gt;     Else&lt;br /&gt;         blnCheckReferer = False&lt;br /&gt;     End If&lt;br /&gt;     same_host = blnCheckReferer&lt;br /&gt;	End Function &lt;br /&gt;&lt;br /&gt;	&lt;br /&gt;cname = request.form&amp;#40;&amp;#34;cname&amp;#34;&amp;#41;&lt;br /&gt;name = request.form&amp;#40;&amp;#34;name&amp;#34;&amp;#41;&lt;br /&gt;telno = request.form&amp;#40;&amp;#34;telno&amp;#34;&amp;#41;&lt;br /&gt;email = request.form&amp;#40;&amp;#34;email&amp;#34;&amp;#41;&lt;br /&gt;message = request.form&amp;#40;&amp;#34;message&amp;#34;&amp;#41;&lt;br /&gt;&lt;br /&gt;messageSubject = &amp;#34;Enquiry - website.com.my&amp;#34;&lt;br /&gt;msg = &amp;#34;ENQUIRY DETAILS, &amp;#34;&amp;amp; date &amp;amp; vbCrLf &amp;amp; vbCrLf &amp;amp; vbCrLf&lt;br /&gt;msg = msg &amp;amp; &amp;#34;Company Name &amp;#58; &amp;#34; &amp;amp; cname &amp;amp; vbCrLf &amp;amp; vbCrLf&lt;br /&gt;msg = msg &amp;amp; &amp;#34;Name &amp;#58; &amp;#34; &amp;amp; name &amp;amp; vbCrLf &amp;amp; vbCrLf&lt;br /&gt;msg = msg &amp;amp; &amp;#34;Phone &amp;#58; &amp;#34; &amp;amp; telno &amp;amp; vbCrLf &amp;amp; vbCrLf&lt;br /&gt;msg = msg &amp;amp; &amp;#34;E-mail &amp;#58; &amp;#34; &amp;amp; email &amp;amp; vbCrLf &amp;amp; vbCrLf&lt;br /&gt;msg = msg &amp;amp; &amp;#34;Message &amp;#58; &amp;#34; &amp;amp; vbCrLf &amp;amp; message &amp;amp; vbCrLf &amp;amp; vbCrLf&lt;br /&gt;&lt;br /&gt;SendMail &amp;#34;name@myemail.com.my&amp;#34;, messageSubject, msg&lt;br /&gt;&lt;br /&gt;%&amp;#62;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;and this is my actionscript code:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;on &amp;#40;release&amp;#41;&lt;br /&gt;{&lt;br /&gt;    if &amp;#40;&amp;#33;form.cname.length&amp;#41;&lt;br /&gt;    {&lt;br /&gt;        form.status.text = &amp;#34;Please include your company name. Thank you.&amp;#34;;&lt;br /&gt;    }&lt;br /&gt;	else if &amp;#40;&amp;#33;form.name.length&amp;#41;&lt;br /&gt;    {&lt;br /&gt;        form.status.text = &amp;#34;Please include your name. Thank you.&amp;#34;;&lt;br /&gt;    }    &lt;br /&gt;    else if &amp;#40;&amp;#33;form.telno.length&amp;#41;&lt;br /&gt;    {&lt;br /&gt;        form.status.text = &amp;#34;Please include your phone number. Thank you.&amp;#34;;&lt;br /&gt;    }    &lt;br /&gt;	else if &amp;#40;&amp;#33;form.email.length || form.email.indexOf&amp;#40;&amp;#34;@&amp;#34;&amp;#41; == -1 || form.email.indexOf&amp;#40;&amp;#34;.&amp;#34;&amp;#41; == -1&amp;#41;&lt;br /&gt;    {&lt;br /&gt;        form.status.text = &amp;#34;Invalid email address&amp;#34;;&lt;br /&gt;    }&lt;br /&gt;    else if &amp;#40;&amp;#33;form.message.length&amp;#41;&lt;br /&gt;    {&lt;br /&gt;        form.status.text = &amp;#34;Please include your message. Thank you.&amp;#34;;&lt;br /&gt;    }&lt;br /&gt;    else&lt;br /&gt;    {&lt;br /&gt;        form.loadVariables&amp;#40;&amp;#34;flash/submit.asp&amp;#34;, &amp;#34;POST&amp;#34;&amp;#41;;&lt;br /&gt;    } // end if&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;i&amp;#39;ve also added a script in the enquiry form movieclip.&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;onClipEvent&amp;#40;data&amp;#41;{&lt;br /&gt;	gotoAndStop&amp;#40;&amp;#34;success&amp;#34;&amp;#41;;&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;FYI im using flash 8. help anyone? :s</description>
            <author>crazydog</author>
            <category>Codemasters</category>
            <pubDate>Thu, 23 Jul 2009 18:21:06 +0800</pubDate>
        </item>
        <item>
            <title>pc shut down</title>
            <link>http://forum.lowyat.net/topic/949700</link>
            <description>hi guys i really need help here t_t my pc suddenly just switch off without shutting down. &lt;br /&gt;its like when the main plug is being pulled out that kind.&lt;br /&gt;i just replace the power supply recently so i dont think its the power supply problem.&lt;br /&gt;and btw i dont play games. all i did was just surfing the web/working on photoshop while listening to music.. normal stuff like that.&lt;br /&gt;after it shut off, i noticed that my keyboard numlock led light is still on after the whole thing switch off. isit normal? &lt;br /&gt;but then, i tried to switch on my pc again. it worked and i didnt get any error msg or blue screen or whatever. this happened quite many times already. im confused D:&lt;br /&gt;&lt;br /&gt;here are my pc specs:&lt;br /&gt;Intel pentium 4 631+ 3.0GHz processor&lt;br /&gt;Foxconn 865G7MF motherboard&lt;br /&gt;Radeon 9600 SE graphic card&lt;br /&gt;512 rams&lt;br /&gt;200 gigs sata hd&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt; anyone?</description>
            <author>crazydog</author>
            <category>Technical Support</category>
            <pubDate>Sat, 28 Feb 2009 11:53:29 +0800</pubDate>
        </item>
    </channel>
</rss>
