Is there a way to re-name the Simba and SMART window titles in the taskbar?
Is there a way to re-name the Simba and SMART window titles in the taskbar?
I'm not sure about SMART, but I know you can in Simba.
Hold on.
Simba Code:StatsGuise('Your Text Here');
Pretty sure that's it. For Simba, anyways.
If I can figure out how to Change PCHAR To LPARAM(TextHere) AND figure out how to do 0x000C in Pascal.. then this will work 100%
Atm all it does is find smart.. U actually need to sendmessage to smart telling it to change it's title..
Code:function FindWindow(ClassName, WindowName: PChar): HWND; external 'FindWindowA@User32.dll stdcall'; function SendMessage(WindowHandle: HWND; Msg: WORD; WPARAM: LongInt; LPARAM: LongInt): LongInt; external 'SendMessage@User32.dll stdcall'; function FindSmart: HWND; var Smart: HWND; begin Smart:= FindWindow('SunAwtFrame', 'Public SMARTv6.6 - SMART Minimizing Autoing Resource Thing - By BenLand100'); result:= Smart; end; Procedure ChangeName(Sender: TObject); var T: PCHAR; WM_SETTEXT: Word; Temp: LongInt; begin Temp:= HexToInt('000C'); //WHAT IS THE Equivalent of 0x000C in PASCAL?! :S WM_SETTEXT:= Temp; SendMessage(FindSmart, WM_SETTEXT, 0, T); end;
Last edited by Brandon; 12-18-2011 at 10:35 PM.
I am Ggzz..
Hackintosher
It's StatGuise, i recently saw it in "YoHoJo"'s video.
Thanks for all the replies everyone.
Disguise works in renaming Simba, just have to figure out how to rename SMART
Any success of renaming the SMART windows?![]()
You may contact me with any concerns you have.
Are you a victim of harassment? Please notify me or any other staff member.
| SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |
There are currently 1 users browsing this thread. (0 members and 1 guests)