Mguyear 0 Posted May 25, 2006 I have been trying at this for a while now, I can get it to where it is at the bulletin screen and filled in with text, but when it goes to post, it just sits there. If you would like to try it, you have to be logged into myspace in another IE window. #include <IE.au3> $o_IE = _IECreate () _IENavigate ($o_IE, "http://home.myspace.com/index.cfm?fuseaction=user") _IEClickLinkByText ($o_IE, "post bulletin") $o_Bulletin = _IEFormGetObjByName ($o_IE, "bulletinForm") $o_subject = _IEFormElementGetObjByName ($o_Bulletin, "subject") $o_body = _IEFormElementGetObjByName ($o_Bulletin, "body") _IEFormElementSetValue ($o_subject, "Hey") _IEFormElementSetValue ($o_body, "hey") _IEFormSubmit ($o_Bulletin) Thanks Share this post Link to post Share on other sites