Page 31 of 46 FirstFirst ... 212223242526272829303132333435363738394041 ... LastLast
Results 301 to 310 of 451

Thread: [Release] SKINbedder BETA 2.99999

  1. #301
    Banned RPM_VR4's Avatar
    Join Date
    Nov 2004
    Location
    L.A.
    Posts
    1,944
    ??? I could have swarn I had removed "Embed(iGGPS)" from the end of that before sending it to Ol33l. Maybe he added it back before releasing. What "Embed(iGGPS)" does is wait for the GPS Info window.

    Basically, it will work as is for people who are showing the GPS Info window at startup. For people that are having this problem, just press "G" to open the window, it will then embed the GPS Info window and then draw the buttons. All you ever had to do was press "g" LOL.

  2. #302
    FLAC
    Join Date
    May 2005
    Location
    Vienna, VA
    Posts
    1,382
    Damn it. Forgot to hit the G spot!


  3. #303
    Calm
    Down
    Or
    Get
    A
    2
    Week
    Vacation
    -Love
    The
    Forum
    Policeman
    Wiredwrx's Avatar
    Join Date
    Jan 2003
    Posts
    3,605
    Quote Originally Posted by RPM_VR4
    ??? I could have swarn I had removed "Embed(iGGPS)" from the end of that before sending it to Ol33l. Maybe he added it back before releasing. What "Embed(iGGPS)" does is wait for the GPS Info window.

    Basically, it will work as is for people who are showing the GPS Info window at startup. For people that are having this problem, just press "G" to open the window, it will then embed the GPS Info window and then draw the buttons. All you ever had to do was press "g" LOL.

    Now why didn't I think of that

    Michael
    ...I love the French language...especially to curse with...Nom de Dieu de putain de bordel de merde de saloperies de connards d'enculés de ta mère. You see, it's like wiping your *** with silk, I love it.

  4. #304
    Calm
    Down
    Or
    Get
    A
    2
    Week
    Vacation
    -Love
    The
    Forum
    Policeman
    Wiredwrx's Avatar
    Join Date
    Jan 2003
    Posts
    3,605
    Hey RPM/leelo

    Can the "buttons" send an Escape key? If so, what is the proper syntax?

    Michael
    ...I love the French language...especially to curse with...Nom de Dieu de putain de bordel de merde de saloperies de connards d'enculés de ta mère. You see, it's like wiping your *** with silk, I love it.

  5. #305
    Banned RPM_VR4's Avatar
    Join Date
    Nov 2004
    Location
    L.A.
    Posts
    1,944
    Send(Escape) or Send(Esc)

  6. #306
    Variable Bitrate
    Join Date
    Sep 2004
    Location
    was Boston -> now Canada!
    Posts
    382
    I changed the Y coordinates because I have to move the buttons down within RR. Problem is the button won't shift down.

    The way it currently is the iG Menu and Vol button are visible.

    edit.......I think I got it now

    Chuck

  7. #307
    Banned RPM_VR4's Avatar
    Join Date
    Nov 2004
    Location
    L.A.
    Posts
    1,944
    Ol33l: How can I better detect a window closing rather than just changing it's name? I store the FindWindowEX handle as PanelArray[Index].ProgHandle. Isn't there some command that will just tell me if that handle is still valid or not? This is what I do now (with comments):

    Code:
          //Remove Panel if Window is Closed
          //ToDo: What if the window name just changed?  Need better "closed" detection.
          if (GetWindowHandleEX(PanelArray[Index].Handle, PanelArray[Index].ScreenINI.ReadString(PanelArray[Index].Name, 'WindowClass', ''), PanelArray[Index].ScreenINI.ReadString(PanelArray[Index].Name, 'WindowTitle', '')) = 0) then
           begin
            PanelArray[Index].Free;
            SetLength(PanelArray, length(PanelArray) - 1);
            if Length(PanelArray) = 0 then
             begin
              Timer0.Enabled := False;
              Application.Terminate;
             end;
           end;

  8. #308
    My Village Called 0l33l's Avatar
    Join Date
    Jul 2004
    Location
    Berkeley, CA
    Posts
    10,520
    Quote Originally Posted by RPM_VR4
    ??? I could have swarn I had removed "Embed(iGGPS)" from the end of that before sending it to Ol33l. Maybe he added it back before releasing. What "Embed(iGGPS)" does is wait for the GPS Info window.

    Basically, it will work as is for people who are showing the GPS Info window at startup. For people that are having this problem, just press "G" to open the window, it will then embed the GPS Info window and then draw the buttons. All you ever had to do was press "g" LOL.
    Yep, I take the blame. I put in Embed(iGGPS)
    Quote Originally Posted by RPM_VR4
    Ol33l: How can I better detect a window closing rather than just changing it's name? I store the FindWindowEX handle as PanelArray[Index].ProgHandle. Isn't there some command that will just tell me if that handle is still valid or not? This is what I do now (with comments):

    Code:
          //Remove Panel if Window is Closed
          //ToDo: What if the window name just changed?  Need better "closed" detection.
          if (GetWindowHandleEX(PanelArray[Index].Handle, PanelArray[Index].ScreenINI.ReadString(PanelArray[Index].Name, 'WindowClass', ''), PanelArray[Index].ScreenINI.ReadString(PanelArray[Index].Name, 'WindowTitle', '')) = 0) then
           begin
            PanelArray[Index].Free;
            SetLength(PanelArray, length(PanelArray) - 1);
            if Length(PanelArray) = 0 then
             begin
              Timer0.Enabled := False;
              Application.Terminate;
             end;
           end;
    I think that that's the best way to detect if a window is running. For iGS I had an EXE_RUNNING function, but we can't do that here because the GPS Info window isn't a seperate app.

  9. #309
    Calm
    Down
    Or
    Get
    A
    2
    Week
    Vacation
    -Love
    The
    Forum
    Policeman
    Wiredwrx's Avatar
    Join Date
    Jan 2003
    Posts
    3,605
    Quote Originally Posted by RPM_VR4
    Send(Escape) or Send(Esc)
    Neither seems to work.

    Michael
    ...I love the French language...especially to curse with...Nom de Dieu de putain de bordel de merde de saloperies de connards d'enculés de ta mère. You see, it's like wiping your *** with silk, I love it.

  10. #310
    My Village Called 0l33l's Avatar
    Join Date
    Jul 2004
    Location
    Berkeley, CA
    Posts
    10,520
    Quote Originally Posted by Wiredwrx
    Neither seems to work.

    Michael
    It looks like we kept the old sendkeys code

Similar Threads

  1. SKINbedder embedding problem
    By chuckster in forum Road Runner
    Replies: 12
    Last Post: 07-26-2005, 07:49 PM
  2. [Release] SKINbedder v2
    By 0l33l in forum SkinBedder
    Replies: 242
    Last Post: 07-05-2005, 05:01 AM
  3. [Release] iGSkinner BETA 3.9.5
    By 0l33l in forum SkinBedder
    Replies: 631
    Last Post: 06-26-2005, 03:40 PM
  4. [Release] SKINbedder 1.0
    By RPM_VR4 in forum SkinBedder
    Replies: 41
    Last Post: 06-26-2005, 05:03 AM
  5. [RELEASE] NMC 0.7 BETA 2 -> introducing ACTIONS and NCS !
    By netsuo in forum NeoCar Media Center
    Replies: 22
    Last Post: 05-05-2005, 12:34 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •