View Single Post
  #9  
Old 31-12-2022, 05:51
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
Talking

Quote:
Originally Posted by audiofeel View Post
the CPI font is used (there are problems with the sound image in the font, one character is lower than the other, I fixed it as best I could)
Fix sound image in the font.
Code:
    TObject(Btn[3].GetObject):
    begin
      if MusicObj.IsPaused then
      begin
	MusicObj.Resume;
        Btn[3].Top(NSSY(6.0));
        Btn[3].Text('I');
     end else
      begin
        MusicObj.Pause;
        Btn[3].Top(NSSY(6.0));
        Btn[3].Text('H');
      end;
    end;
Attached Files
File Type: rar CPI.rar (8.4 KB, 8 views)
Reply With Quote