wsh panel mod script errors bei allen skins

Begonnen von Sputnik83, 23. November 2010, 18:08:08

Vorheriges Thema - Nächstes Thema

Sputnik83

Hi,
folgndes Problem:
Ich habe bei allen (zumindest getesteten Skins) Script Erorrs.
Bsp.:
Ich bin mir, da das Problem in mehreren Skins auftaucht, ich mir aber sicher bin, bei den Installationen richtig vorgegangen zu sein sicher, das da Problem auf meinem Netbook-System zu suchen ist.
Ich arbeite hier auf Win XP SP3
Den Windows Script Host hatte ich früher mal, in der Reg ausgeschaltet, jetzt aber wieder eingeschaltet.
Als das nicht zum Erfolg geführt hat, habe ich Windows Script 5.6 manuell neu installiert.
Ich habe .net Framwork 4.0 installiert.
DirectX 9.0c ist installiert.
Hat jemand eine Idee wo das Problem liegen könnte?

Das Skript selbst:

// Color Mixer // Coded by Hunter
// ==PREPROCESSOR==
// @import "%fb2k_path%\themes\Duifoon\Scripts\Flags.txt"
// @import "%fb2k_path%\themes\Duifoon\Scripts\Helpers.txt"
// @import "%fb2k_path%\themes\Duifoon\Scripts\Buttons (Themed Buttons).txt"
// ==/PREPROCESSOR==


var WshShell = new ActiveXObject("WScript.Shell");
var g_font = gdi.font("Lucida Sans Unicode", 12, 0);
var preset = window.GetProperty("Current Preset");
var text_col = RGBA(50,50,50);
var drag = false;
window.MinWidth = 436;
window.MinHeight = 340
var focus = 0.5;

// =============================================== //

function col_pos() {
   
  r_pos = 0 + window.GetProperty("Preset " +preset+ " R");
  g_pos = 0 + window.GetProperty("Preset " +preset+ " G");
  b_pos = 0 + window.GetProperty("Preset " +preset+ " B");
  gr_pos = 0 + window.GetProperty("Preset " +preset+ " GR");
  focus = 0 + window.GetProperty("Preset " +preset+ " GRF");
 
  window.NotifyOthers("R", r_pos);
  window.NotifyOthers("G", g_pos);
  window.NotifyOthers("B", b_pos);
  window.NotifyOthers("GR", gr_pos);
  window.NotifyOthers("GRF", focus);

}  
col_pos();

// =============================================== //

function on_paint(gr) {
   
  var g_textcolor = window.GetColorDUI(ColorTypeDUI.text);
  var g_textcolor_hl = window.GetColorDUI(ColorTypeDUI.highlight);
  var g_backcolor = window.GetColorDUI(ColorTypeDUI.background);
 
  var sf_col = RGB(150,150,150);

  gr.FillSolidRect(0, 0, ww, wh, g_backcolor);
  gr.DrawRect(10, 10, ww - 20, wh - 20, 1, g_textcolor_hl)
  gr.FillSolidRect(s_x-s_p, rs_y-s_p, f_w, f_h, RGB(234,234,234));
 
 
  gr.DrawRect(s_x-s_p, rs_y-s_p, f_w, f_h, s_l, sf_col);
 
  gr.DrawLine(s_x-s_p,rs_y-s_p+by+43,s_x-s_p+f_w,rs_y-s_p+by+43,s_l, sf_col);
  gr.DrawLine(s_x-s_p,rs_y-s_p+by+80,s_x-s_p+f_w,rs_y-s_p+by+80,s_l, sf_col);
  gr.DrawLine(s_x-s_p,rs_y-s_p+by+170,s_x-s_p+f_w,rs_y-s_p+by+170,s_l, sf_col);
 
  gr.FillGradRect(s_x, rs_y, r_pos, s_h+1, 90,RGB(255,200,200), RGB(255,0,0), 0.5);
  gr.DrawRect(s_x-s_l, rs_y-s_l, s_w+s_l*2, s_h+s_l*2, s_l, sf_col);
  gr.DrawRect(s_x+s_w+s_l, rs_y-s_l, sn_w, s_h+s_l*2, s_l, sf_col);
 
  gr.FillGradRect(s_x, gs_y, g_pos, s_h+1, 90,RGB(200,255,200), RGB(0,255,0), 0.5);
  gr.DrawRect(s_x-s_l, gs_y-s_l, s_w+s_l*2, s_h+s_l*2, s_l, sf_col);
  gr.DrawRect(s_x+s_w+s_l, gs_y-s_l, sn_w, s_h+s_l*2, s_l, sf_col);
 
  gr.FillGradRect(s_x, bs_y, b_pos, s_h+1, 90,RGB(200,200,255), RGB(0,0,255), 0.5);
  gr.DrawRect(s_x-s_l, bs_y-s_l, s_w+s_l*2, s_h+s_l*2, s_l, sf_col);
  gr.DrawRect(s_x+s_w+s_l, bs_y-s_l, sn_w, s_h+s_l*2, s_l, sf_col);
 
  gr.FillGradRect(s_x+s_w+s_l+70, rs_y-s_l, sn_w, s_h*2+s_p+s_l*2, 90,RGBA(r_pos,g_pos,b_pos,100), RGB(r_pos,g_pos,b_pos), 0.5);
  gr.DrawRect(s_x+s_w+s_l+70, rs_y-s_l, sn_w, s_h*2+s_p+s_l*2, s_l, sf_col);
 
  gr.FillGradRect(s_x, grs_y, gr_pos, s_h+1, 90,RGB(200,200,200), RGB(150,150,150), 0.5);
  gr.DrawRect(s_x-s_l, grs_y-s_l, s_w+s_l*2, s_h+s_l*2, s_l, sf_col);
  gr.DrawRect(s_x+s_w+s_l, grs_y-s_l, sn_w, s_h+s_l*2, s_l, sf_col);

  gr.GdiDrawText("R "+r_pos, g_font, text_col, s_x+s_w+s_l, rs_y, sn_w, s_h, DT_CALCRECT | DT_CENTER | DT_VCENTER);
  gr.GdiDrawText("G "+g_pos, g_font, text_col, s_x+s_w+s_l, gs_y, sn_w, s_h, DT_CALCRECT | DT_CENTER | DT_VCENTER);
  gr.GdiDrawText("B "+b_pos, g_font, text_col, s_x+s_w+s_l, bs_y, sn_w, s_h, DT_CALCRECT | DT_CENTER | DT_VCENTER);
  gr.GdiDrawText("Gr "+gr_pos, g_font, text_col, s_x+s_w+s_l, grs_y, sn_w, s_h, DT_CALCRECT | DT_CENTER | DT_VCENTER);
  gr.GdiDrawText(focus, g_font, text_col, s_x+s_w+s_l+70, grs_y, sn_w, s_h, DT_CALCRECT | DT_CENTER | DT_VCENTER);
 
  if(preset > 5)
  gr.FillSolidRect(s_x-s_p, rs_y+81, f_w-1, 35, RGBA(234,234,234,180));
 
  var d=78+s_l;
  var d2=90;
  var p_n = [1,2,3,4,5]
  var w = 70+s_l;
  var h = 30;
 
  for (var i = 0; i < 10; i++) {
     

  var p_r =  window.GetProperty("Preset " +(i+1)+ " R");
  var p_g =  window.GetProperty("Preset " +(i+1)+ " G");
  var p_b =  window.GetProperty("Preset " +(i+1)+ " B");

  var col = RGB(0+p_r,0+p_g,0+p_b);  
  var col2 = RGBA(0+p_r,0+p_g,0+p_b,150);
 
  (i==preset-1) ? f_col2 = RGB(255,255,100) : f_col2 = RGB(225,225,225);
  (i==preset-1) ? l = s_l+1 : l = s_l;
 
  if(i<5){

  gr.FillGradRect(s_x-s_l+d*i, bs_y+s_h+s_p*2+by, w, h,90,col2,col,0.5);
  gr.DrawRect(s_x-s_l+d*i+1, bs_y+s_h+s_p*2+by+1, w-2, h-2, 3, f_col2);
  gr.DrawRect(s_x-s_l+d*i, bs_y+s_h+s_p*2+by, w, h, 1, sf_col);
  }
  if(i>4){

  gr.FillGradRect(s_x-s_l+d*i-d*5, bs_y+d2+s_h+s_p*2+by, w, h,90,col2,col,0.5);
  gr.DrawRect(s_x-s_l+d*i-d*5+1, bs_y+d2+s_h+s_p*2+by+1, w-2, h-2, 3, f_col2);
  gr.DrawRect(s_x-s_l+d*i-d*5, bs_y+d2+s_h+s_p*2+by, w, h, 1, sf_col);
  }
 
  }
 
  gr.GdiDrawText("Frame Color", gdi.font("Lucida Sans Unicode", 14, 0), text_col, s_x-s_p, bs_y+by+11, f_w, h, DT_CALCRECT | DT_CENTER | DT_VCENTER);
  gr.GdiDrawText("Display Color", gdi.font("Lucida Sans Unicode", 14, 0), text_col, s_x-s_p, bs_y+by+102, f_w, h, DT_CALCRECT | DT_CENTER | DT_VCENTER);

   for (var i in $buttons) {
       $buttons[i].draw(gr);
   }


}
// =============================================== //

function on_size() {
   
ww = window.Width;
wh = window.Height;

by =50;

f_w = 410;
f_h = 264+by;
fo_y  = 11;

s_l = 1;
s_p = 10+s_l*2; // padding
s_h = 15;

s_x = ww/2-f_w/2+s_p; // X
rs_y = wh/2-f_h/2+s_p; // Y
if (s_x <= 1)
s_x = 0;
if (rs_y <= 1)
rs_y = 0;

gs_y = rs_y+s_h+s_p;
bs_y = rs_y+s_h*2+s_p*2;
grs_y = rs_y+s_h*3+s_p*3+fo_y;

s_w = 255; //s = slider
sn_w = 50;

// =============================================== //

var x = s_x-s_l;
var y = bs_y+s_h+s_p*2+35+by;
var y2 = y+90;
var w = 70+s_l;
var h = 24;
var d = 8;

$buttons = {
   
   button_0: new Button(x+w*4+d*4, bs_y-4, w, h, "Apply", function () {
       window.SetProperty("Preset " +preset+ " R",r_pos);
       window.SetProperty("Preset " +preset+ " G",g_pos);
       window.SetProperty("Preset " +preset+ " B",b_pos);
       window.SetProperty("Preset " +preset+ " GR",gr_pos);
       window.SetProperty("Preset " +preset+ " GRF",focus);
   }),
   button_1: new Button(x, y, w, h, "Preset 1", function () {
   preset = 1; window.SetProperty("Current Preset",1); window.NotifyOthers("CP",1); col_pos();
   }),
   button_2: new Button(x+w+d, y, w, h, "Preset 2", function () {
   preset = 2; window.SetProperty("Current Preset",2); window.NotifyOthers("CP",2); col_pos();
}),
   button_3: new Button(x+w*2+d*2, y, w, h, "Preset 3", function () {
   preset = 3; window.SetProperty("Current Preset",3); window.NotifyOthers("CP",3); col_pos();
}),
   button_4: new Button(x+w*3+d*3, y, w, h, "Preset 4", function () {
   preset = 4; window.SetProperty("Current Preset",4); window.NotifyOthers("CP",4); col_pos();
}),
   button_5: new Button(x+w*4+d*4, y, w, h, "Preset 5",function () {
   preset = 5; window.SetProperty("Current Preset",5); window.NotifyOthers("CP",5); col_pos();
}),
   button_6: new Button(x, y2, w, h, "Preset 1", function () {
   preset = 6; window.SetProperty("Current Preset",6); window.NotifyOthers("CP",6); col_pos();
   }),
   button_7: new Button(x+w+d, y2, w, h, "Preset 2", function () {
   preset = 7; window.SetProperty("Current Preset",7); window.NotifyOthers("CP",7); col_pos();
}),
   button_8: new Button(x+w*2+d*2, y2, w, h, "Preset 3", function () {
   preset = 8; window.SetProperty("Current Preset",8); window.NotifyOthers("CP",8); col_pos();
}),
   button_9: new Button(x+w*3+d*3, y2, w, h, "Preset 4", function () {
   preset = 9; window.SetProperty("Current Preset",9); window.NotifyOthers("CP",9); col_pos();
}),
   button_10: new Button(x+w*4+d*4, y2, w, h, "Preset 5",function () {
   preset = 10; window.SetProperty("Current Preset",10); window.NotifyOthers("CP",10); col_pos();
}),
   button_11: new Button(x+w*4+d*4, bs_y+h+fo_y, 20, h-3, "-",function () {
   if(focus > 0.1 && preset < 6){ focus-=0.1; if(focus < 0.1) focus = 0; window.SetProperty("GRF",focus); window.NotifyOthers("GRF",focus);}
}),
   button_12: new Button(x+w*5+11, bs_y+h+fo_y, 20, h-3, "+",function () {
   if(focus < 0.9 && preset < 6){ focus+=0.1; window.SetProperty("GRF",focus); window.NotifyOthers("GRF",focus);}
})

}
 
}

// =============================================== //

function on_mouse_wheel(delta) {

   if(XYinR) {
   if(delta>0 && r_pos < 255) r_pos = ++r_pos;
   else if(delta<0 && r_pos > 0 ) r_pos = Math.ceil(--r_pos);
}
   if(XYinG) {
   if(delta>0 && g_pos < 255) g_pos = ++g_pos;
   else if(delta<0 && g_pos > 0) g_pos = Math.ceil(--g_pos);
}
   if(XYinB) {
   if(delta>0 && b_pos < 255) b_pos = ++b_pos;
   else if(delta<0 && b_pos > 0) b_pos = Math.ceil(--b_pos);
}
   if(XYinGR && preset < 6) {
   if(delta>0 && gr_pos < 255) gr_pos = ++gr_pos;
   else if(delta<0 && gr_pos > 0) gr_pos = Math.ceil(--gr_pos);
}

window.RepaintRect(s_x-s_p, rs_y, f_w, 120);

  window.NotifyOthers("R", r_pos);
  window.NotifyOthers("G", g_pos);
  window.NotifyOthers("B", b_pos);
  window.NotifyOthers("GR", gr_pos);

}

// =============================================== //

function on_notify_data(name, info) {
   if(name == "CP") {
   preset = info;
   window.SetProperty("Current Preset",info);
   window.NotifyOthers("CP",info);
   col_pos();
   window.Repaint();
}

}

// =============================================== //

function on_mouse_move(x, y) {
   
   XYinR = ((s_x <= x) && (x <= s_x + s_w) && (rs_y <= y) && (y <= rs_y + s_h));
   XYinG = ((s_x <= x) && (x <= s_x + s_w) && (gs_y <= y) && (y <= gs_y + s_h));
   XYinB = ((s_x <= x) && (x <= s_x + s_w) && (bs_y <= y) && (y <= bs_y + s_h));
   XYinGR = ((s_x <= x) && (x <= s_x + s_w) && (grs_y <= y) && (y <= grs_y + s_h));
   
   if (XYinR || XYinG || XYinB || XYinGR && preset < 6) {
       window.SetCursor(32649)
   }
   else {
       window.SetCursor(32512)
   };
//..................................

if(drag == true){

if(XYinR) {
r_pos = Math.ceil(x-s_x);
window.NotifyOthers("R", r_pos);
}
if(XYinG) {
g_pos = Math.ceil(x-s_x);
window.NotifyOthers("G", g_pos);
}
if(XYinB) {
b_pos = Math.ceil(x-s_x);
window.NotifyOthers("B", b_pos);
}
if(XYinGR && preset < 6) {
gr_pos = Math.ceil(x-s_x);
window.NotifyOthers("GR", gr_pos);
}

window.RepaintRect(s_x-s_p, rs_y-s_p, f_w, 120);
 
}

buttons_on_mouse_move(x, y);
}

// =============================================== //

function on_mouse_lbtn_down(x, y) {
   
    drag = true;

window.Repaint();
   
  buttons_on_mouse_lbtn_down(x, y);
}

// =============================================== //

function on_colors_changed() {

   window.Repaint();
}
// =============================================== //

function on_mouse_lbtn_up(x, y) {
   
   if(XYinR) {
        r_pos = Math.ceil(x-s_x);
        window.NotifyOthers("R", r_pos);
   }
   if(XYinG) {
        g_pos = Math.ceil(x-s_x);
        window.NotifyOthers("G", g_pos);
  }
   if(XYinB) {
        b_pos = Math.ceil(x-s_x);
        window.NotifyOthers("B", b_pos);
   }
   if(XYinGR && preset < 6) {
        gr_pos = Math.ceil(x-s_x);
        window.NotifyOthers("GR", gr_pos);
   }
drag = false;
     
  buttons_on_mouse_lbtn_up(x, y);
 
   window.Repaint();
   }


// =============================================== //

function on_mouse_leave() {

buttons_on_mouse_leave();
}

// =============================================== //

function on_mouse_rbtn_down(x, y) {

 ShiftDown = utils.IsKeyPressed(0x10) ? true : false;

}
// =============================================== //

function on_mouse_rbtn_up(x, y) {
   
var _menu = window.CreatePopupMenu();
   
   if (ShiftDown) {

       _menu.AppendMenuItem(MF_STRING, 1, "Properties");
       _menu.AppendMenuItem(MF_SEPARATOR, 0, 0);
       _menu.AppendMenuItem(MF_STRING, 2, "Configure...");
   }
       idx = _menu.TrackPopupMenu(x, y);
   switch (idx) {

   case 1:
       window.ShowProperties();
       break;
   case 2:
       window.ShowConfigure();
       break;
   }
       _menu.Dispose();
   return true
}




Grund für edit: quote -> code - grimes




Sputnik83

#1
Edit: Bkeim Schließen macht er auch Probleme

hier der crash logg

Illegal operation:
Code: C0000005h, flags: 00000000h, address: 7C920A1Bh
Access violation, operation: read, address: 042444CBh

Call path not available.

Code bytes (7C920A1Bh):
7C9209DBh:  CE FF FF E9 32 FE FF FF 0F B7 0E 03 C8 81 F9 00
7C9209EBh:  FE 00 00 0F 87 45 FD FF FF 80 7D 14 00 0F 85 B1
7C9209FBh:  A6 03 00 8A 46 05 24 10 A8 10 88 47 05 0F 85 92
7C920A0Bh:  00 00 00 8B 4E 0C 8D 46 08 8B 10 89 4D 0C 8B 09
7C920A1Bh:  3B 4A 04 89 55 14 0F 85 2B 0D 00 00 3B C8 0F 85
7C920A2Bh:  23 0D 00 00 56 53 E8 4E FC FF FF 8B 45 14 8B 4D
7C920A3Bh:  0C 3B C1 89 01 89 48 04 74 38 8A 46 05 A8 04 0F
7C920A4Bh:  85 35 A7 03 00 0F B7 0E 8B 45 10 01 08 0F B7 0E

Stack (003F4CB0h):
003F4C90h:  372D3128 00000029 00000000 00000000
003F4CA0h:  00000000 00000000 01EC0101 000801CD
003F4CB0h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4CC0h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4CD0h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4CE0h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4CF0h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D00h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D10h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D20h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D30h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D40h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D50h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D60h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D70h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D80h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4D90h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4DA0h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4DB0h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF
003F4DC0h:  62BBAAFF 62BBAAFF 62BBAAFF 62BBAAFF

Registers:
EAX: 00000001, EBX: 0012FEAC, ECX: 7C933C88, EDX: 7C91E920
ESI: 001CEBB0, EDI: 0012FD5C, EBP: 0012FEBC, ESP: 003F4CB0

Crash location:
Module: ntdll
Offset: 10A1Bh
Symbol: "wcsncpy" (+49Ch)

Loaded modules:
foobar2000                       loaded at 00400000h - 005E9000h
ntdll                            loaded at 7C910000h - 7C9C9000h
kernel32                         loaded at 7C800000h - 7C908000h
COMCTL32                         loaded at 773A0000h - 774A3000h
msvcrt                           loaded at 77BE0000h - 77C38000h
ADVAPI32                         loaded at 77DA0000h - 77E4A000h
RPCRT4                           loaded at 77E50000h - 77EE3000h
Secur32                          loaded at 77FC0000h - 77FD1000h
GDI32                            loaded at 77EF0000h - 77F39000h
USER32                           loaded at 7E360000h - 7E3F1000h
SHLWAPI                          loaded at 77F40000h - 77FB6000h
DSOUND                           loaded at 73E70000h - 73ECC000h
ole32                            loaded at 774B0000h - 775EE000h
VERSION                          loaded at 77BD0000h - 77BD8000h
WINMM                            loaded at 76AF0000h - 76B1E000h
UxTheme                          loaded at 5B0F0000h - 5B128000h
SHELL32                          loaded at 7E670000h - 7EE91000h
zlib1                            loaded at 5A4C0000h - 5A4D4000h
shared                           loaded at 10000000h - 1002B000h
imagehlp                         loaded at 76C50000h - 76C78000h
dbghelp                          loaded at 59DD0000h - 59E71000h
COMDLG32                         loaded at 76350000h - 7639A000h
CRYPT32                          loaded at 77A50000h - 77AE6000h
MSASN1                           loaded at 77AF0000h - 77B02000h
gdiplus                          loaded at 4EBA0000h - 4ED4B000h
IMM32                            loaded at 76330000h - 7634D000h
SOPHOS~1                         loaded at 6FA00000h - 6FA35000h
PSAPI                            loaded at 76BB0000h - 76BBB000h
WINTRUST                         loaded at 76BF0000h - 76C1E000h
wdmaud                           loaded at 72C90000h - 72C99000h
msacm32                          loaded at 72C80000h - 72C88000h
MSACM32                          loaded at 77BB0000h - 77BC5000h
midimap                          loaded at 77BA0000h - 77BA7000h
msctfime                         loaded at 75250000h - 7527E000h
foo_uie_esplaylist               loaded at 00EB0000h - 00F16000h
foo_uie_wsh_panel_mod            loaded at 00F40000h - 00FE7000h
OLEAUT32                         loaded at 770F0000h - 7717B000h
Msimg32                          loaded at 76320000h - 76325000h
foo_albumlist                    loaded at 01140000h - 0119D000h
foo_ui_std                       loaded at 011C0000h - 012D8000h
foo_facets                       loaded at 01300000h - 01381000h
foo_playcount                    loaded at 013B0000h - 013EC000h
foo_uie_biography                loaded at 01410000h - 01468000h
foo_dsp_std                      loaded at 01490000h - 014D8000h
foo_input_std                    loaded at 01500000h - 01655000h
foo_cdda                         loaded at 01680000h - 016CE000h
foo_freedb2                      loaded at 016F0000h - 01731000h
foo_uie_lyrics2                  loaded at 01760000h - 0184E000h
WININET                          loaded at 408B0000h - 40996000h
Normaliz                         loaded at 01860000h - 01869000h
urlmon                           loaded at 452E0000h - 45413000h
iertutil                         loaded at 40F50000h - 41138000h
foo_fileops                      loaded at 01AA0000h - 01AE7000h
foo_converter                    loaded at 01B10000h - 01B8B000h
foo_rgscan                       loaded at 01BB0000h - 01BFD000h
foo_ui_hacks                     loaded at 03100000h - 03138000h
foo_wave_seekbar                 loaded at 01C70000h - 01E3A000h
WS2_32                           loaded at 71A10000h - 71A27000h
WS2HELP                          loaded at 71A00000h - 71A08000h
foo_unpack                       loaded at 01EA0000h - 01ECE000h
NETAPI32                         loaded at 597D0000h - 59825000h
SXS                              loaded at 76970000h - 76A21000h
CLBCATQ                          loaded at 76F90000h - 7700F000h
COMRes                           loaded at 77010000h - 770E3000h
xpsp2res                         loaded at 02470000h - 02749000h
shdocvw                          loaded at 7E1E0000h - 7E353000h
CRYPTUI                          loaded at 76880000h - 76905000h
WLDAP32                          loaded at 76F20000h - 76F4D000h
appHelp                          loaded at 77B10000h - 77B32000h
browseui                         loaded at 75F20000h - 7601D000h
SETUPAPI                         loaded at 778F0000h - 779E4000h
USERENV                          loaded at 76620000h - 766D6000h
LINKINFO                         loaded at 76930000h - 76938000h
ntshrui                          loaded at 76940000h - 76966000h
ATL                              loaded at 76AD0000h - 76AE1000h
KsUser                           loaded at 73E40000h - 73E44000h
mswsock                          loaded at 719B0000h - 719F0000h
DNSAPI                           loaded at 76EE0000h - 76F07000h
rasadhlp                         loaded at 76F80000h - 76F86000h
hnetcfg                          loaded at 66710000h - 66769000h
wshtcpip                         loaded at 719F0000h - 719F8000h
RASAPI32                         loaded at 76EA0000h - 76EDC000h
rasman                           loaded at 76E50000h - 76E62000h
TAPI32                           loaded at 76E70000h - 76E9F000h
rtutils                          loaded at 76E40000h - 76E4E000h
msv1_0                           loaded at 77C40000h - 77C65000h
cryptdll                         loaded at 76740000h - 7674C000h
iphlpapi                         loaded at 76D20000h - 76D39000h
sensapi                          loaded at 72240000h - 72245000h
winrnr                           loaded at 76F70000h - 76F78000h
MPRAPI                           loaded at 76D00000h - 76D18000h
ACTIVEDS                         loaded at 77C90000h - 77CC2000h
adsldpc                          loaded at 76DD0000h - 76DF5000h
SAMLIB                           loaded at 71B70000h - 71B83000h

Environment:
App: foobar2000 v1.1.1
OS: Windows 5.1.2600 Service Pack 3 x86
CPU: Intel(R) Atom(TM) CPU N270   @ 1.60GHz, features: MMX SSE SSE2 SSE3
Audio: Realtek HD Audio output
UI: Default User Interface 0.9.5

Components:
Core (2010-11-05 10:46:52 UTC)
   foobar2000 core 1.1.1
foo_albumlist.dll (2010-11-05 10:45:06 UTC)
   Album List 4.5
foo_cdda.dll (2010-11-05 10:44:56 UTC)
   CD Audio Decoder 3.0
foo_converter.dll (2010-11-05 10:44:36 UTC)
   Converter 1.5
foo_dsp_std.dll (2010-11-05 10:45:06 UTC)
   Standard DSP Array 1.0
foo_facets.dll (2010-06-03 17:30:28 UTC)
   Facets 2008-02-25
foo_fileops.dll (2010-11-05 10:43:42 UTC)
   File Operations 2.1.3
foo_freedb2.dll (2010-11-05 10:43:42 UTC)
   freedb Tagger 0.6.2
foo_input_std.dll (2010-11-05 10:50:28 UTC)
   Standard Input Array 1.0
foo_playcount.dll (2010-10-12 13:37:48 UTC)
   Playback Statistics 3.0.1
foo_rgscan.dll (2010-11-05 10:44:34 UTC)
   ReplayGain Scanner 2.0.9
foo_ui_hacks.dll (2010-11-06 00:12:39 UTC)
   UI Hacks 2010-11-06
foo_ui_std.dll (2010-11-05 10:45:14 UTC)
   Default User Interface 0.9.5
foo_uie_biography.dll (2010-09-19 19:52:16 UTC)
   Biography View 0.4.2.3
foo_uie_esplaylist.dll (2010-11-13 19:53:00 UTC)
   EsPlaylist 0.1.3.2
foo_uie_lyrics2.dll (2010-04-12 19:19:24 UTC)
   Lyric Show Panel 2 0.4.6.15
foo_uie_wsh_panel_mod.dll (2010-06-19 12:52:06 UTC)
   WSH Panel Mod 1.3.6
foo_unpack.dll (2010-11-05 10:43:56 UTC)
   ZIP/GZIP/RAR Reader 1.6
foo_wave_seekbar.dll (2010-04-24 23:35:42 UTC)
   Waveform seekbar 0.2.12

Recent events:
Location not parsable: "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\Tocotronic\Tocotronic - Schall und Wahn (2010)\Tocotronic - Schall und Wahn.jpg", reason: Unsupported file format
Location not parsable: "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\Tocotronic\Tocotronic - Schall und Wahn (2010)\Tocotronic - Schall und Wahn.m3u", reason: Unsupported file format
Location not parsable: "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\kt.tunstall.-.eye.to.the.telescope.(2004).smelly\KT Tunstall - Eye to the Telescope\folder.jpg", reason: Unsupported file format
Opening track for playback: "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\Bloc Party\(2005) Bloc Party - Silent Alarm\07 - This Modern Love.mp3"
Wave cache: finished analysis of "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\Bloc Party\(2005) Bloc Party - Silent Alarm\07 - This Modern Love.mp3"
Opening track for playback: "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\Bloc Party\(2005) Bloc Party - Silent Alarm\02 - Helicopter.mp3"
Wave cache: finished analysis of "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\Bloc Party\(2005) Bloc Party - Silent Alarm\02 - Helicopter.mp3"
Opening track for playback: "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\Bloc Party\(2005) Bloc Party - Silent Alarm\06 - Shes Hearing Voices.mp3"
Wave cache: finished analysis of "C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik\Bloc Party\(2005) Bloc Party - Silent Alarm\06 - Shes Hearing Voices.mp3"
Shutting down...

grimes

#2
Hab das Skript ausprobiert.
Console meldet bei mir:

Zitat[18:24:00] WSH Panel Mod ({BCCC8B3A-2907-478A-BCDD-0543200EC9A0}): Parsing file "C:\Program Files\foobar2000\\themes\Duifoon\Scripts\Flags.txt": Failed to load
[18:24:00] WSH Panel Mod ({BCCC8B3A-2907-478A-BCDD-0543200EC9A0}): Parsing file "C:\Program Files\foobar2000\\themes\Duifoon\Scripts\Helpers.txt": Failed to load
[18:24:00] WSH Panel Mod ({BCCC8B3A-2907-478A-BCDD-0543200EC9A0}): Parsing file "C:\Program Files\foobar2000\\themes\Duifoon\Scripts\Buttons (Themed Buttons).txt": Failed to load
[18:24:00] Error: WSH Panel Mod ({BCCC8B3A-2907-478A-BCDD-0543200EC9A0}): Laufzeitfehler in Microsoft JScript:
Objekt erwartet
Ln: 12, Col: 1
<source text only available in compile time>

Hier sind die Preprozessor-Dateien (z.B. Flags.txt) nicht vorhanden.
line 12 ist wahrscheinlich Folgefehler, da Definition für RGBA (in Preprozessor definiert?) fehlt.

Bitte überprüfe Deine Konsolenmeldung (View -> Console).


EDIT:
foo_ui_hacks verletzt SDK-Lizenz
foo_uie_lyrics2 ist crashware

fbuser

#3
Zitat von: Sputnik83 in 23. November 2010, 18:32:48
Edit: Bkeim Schließen macht er auch Probleme
Das ist aber kein Problem von wsh panel mod. Ich würde an deiner Stelle foo_ui_hacks rausschmeißen.

Und grundsätzlich gilt immer. Erst eine Komponente auf die aktuelle Version aktualisieren (hier wsh_uie_panel_mod 1.3.7), dann um Rat fragen.

tedgo

#4
@Sputnik83

Mal abgesehen von der Meldung über die Zeile 12, was durchaus auf die fehlenden Preprozessor-Dateien zurückführbar ist:
Wenn bei dir kein einziges bislang getestetes WSH-Script funktioniert und deine Pfade stimmen (die Preprozessor-Dateien also an dem Ort liegen, auf den im Script verwiesen wird), liegt es wohl an was anderem...

Das erste was mir da auffällt ist, dass ein ActiveXObject erstellt wird. Das bedingt aber, dass in den Preferences (unter "Tools --> WSH Panel mod") der "Safe mode" deaktiviert ist. Standardmäßig ist dieser nämlich aktiviert.
Nach dem Deaktivieren bitte foobar2000 neu starten.

Hilfreicher wäre schon, wenn du uns den Consolen-Output posten würdest. Daraus könnten wir vielleicht eher ersehen, was da schief läuft.

Sputnik83

#5
Der Save Mode ist natürlich aus.

Konsolen Text:

Font loaded (GDI & GDI+): "bank-gothic-light-bt.ttf"
Font loaded (GDI & GDI+): "segoeui.ttf"
Font loaded (GDI & GDI+): "segoeuib.ttf"
Font loaded (GDI & GDI+): "segoeuii.ttf"
Font loaded (GDI & GDI+): "segoeuil.ttf"
Font loaded (GDI & GDI+): "segoeuiz.ttf"
Font loaded (GDI & GDI+): "seguisb.ttf"
Font loaded (GDI & GDI+): "seguisym.ttf"
GDI+ Hacks: OK
Fonts loaded in: 0:00.183193
Watching: C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik
WSH Panel Mod (GUID: 49C88DB6-41E6-46C7-8804-A4E28C265223): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Flags.txt"
WSH Panel Mod (GUID: 49C88DB6-41E6-46C7-8804-A4E28C265223): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Helpers.txt"
WSH Panel Mod (GUID: 49C88DB6-41E6-46C7-8804-A4E28C265223): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Buttons (Image & Text).txt"
WSH Panel Mod (GUID: 49C88DB6-41E6-46C7-8804-A4E28C265223): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Menu.txt"
WSH Panel Mod (GUID: 49C88DB6-41E6-46C7-8804-A4E28C265223): initliased in 260 ms
WSH Panel Mod (GUID: 726A42F2-F726-4E97-B1C6-66773ABAA817): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Flags.txt"
WSH Panel Mod (GUID: 726A42F2-F726-4E97-B1C6-66773ABAA817): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Helpers.txt"
WSH Panel Mod (GUID: 726A42F2-F726-4E97-B1C6-66773ABAA817): initliased in 96 ms
Facet initialized in : 0:00.046
Facet initialized in : 0:00.035
Facet initialized in : 0:00.037
WSH Panel Mod (GUID: 1995BAD3-8FF3-4CD1-914D-F17BAD7D5360): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Flags.txt"
WSH Panel Mod (GUID: 1995BAD3-8FF3-4CD1-914D-F17BAD7D5360): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Helpers.txt"
WSH Panel Mod (GUID: 1995BAD3-8FF3-4CD1-914D-F17BAD7D5360): initliased in 11 ms
WSH Panel Mod (GUID: 28825990-DC94-4FBD-94BF-81CE021CB7C5): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Flags.txt"
WSH Panel Mod (GUID: 28825990-DC94-4FBD-94BF-81CE021CB7C5): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Helpers.txt"
WSH Panel Mod (GUID: 28825990-DC94-4FBD-94BF-81CE021CB7C5): initliased in 13 ms
WSH Panel Mod (GUID: D99862D6-7548-4D8B-AE1E-7C4F1E76A4B0): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Flags.txt"
WSH Panel Mod (GUID: D99862D6-7548-4D8B-AE1E-7C4F1E76A4B0): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Helpers.txt"
WSH Panel Mod (GUID: D99862D6-7548-4D8B-AE1E-7C4F1E76A4B0): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Buttons (Themed Buttons).txt"
WSH Panel Mod (GUID: D99862D6-7548-4D8B-AE1E-7C4F1E76A4B0): initliased in 34 ms
WSH Panel Mod (GUID: 7FE6DA65-BE11-4CFB-ACA8-B75DF32AF3E5): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Flags.txt"
WSH Panel Mod (GUID: 7FE6DA65-BE11-4CFB-ACA8-B75DF32AF3E5): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Helpers.txt"
WSH Panel Mod (GUID: 7FE6DA65-BE11-4CFB-ACA8-B75DF32AF3E5): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\\themes\Duifoon\Scripts\Buttons (Themed TAB).txt"
WSH Panel Mod (GUID: 7FE6DA65-BE11-4CFB-ACA8-B75DF32AF3E5): initliased in 18 ms
Startup time : 0:01.820179
Seekbar: taking GDI path.
Seekbar: Frontend initialized.
Error: WSH Panel Mod (GUID: D99862D6-7548-4D8B-AE1E-7C4F1E76A4B0): Laufzeitfehler in Microsoft JScript:
'null' ist Null oder kein Objekt
Ln: 57, Col: 5
<source text only available in compile time>
Error: WSH Panel Mod (GUID: 7FE6DA65-BE11-4CFB-ACA8-B75DF32AF3E5): Laufzeitfehler in Microsoft JScript:
'null' ist Null oder kein Objekt
Ln: 66, Col: 5
<source text only available in compile time>


Bezüglich der Plugins, mögt ihr recht haben, allerdings ist das ein vorkonfiguriertes Paket, das scheinbar bei allen anderen funktioniert.... nur bei mir halt nicht und dient nur der Fehlerveranschaulichung.
Ich könnte das wohl auch anhand eines beliebigen anderen geskripteten Skins veranschaulichen.

@tedgo

ich hab keine ahnung ob kein WSH-Script funktioniert, da ich keine Ahnung habe, was alles WSH scripts sind...
Ich bin ein ziemlicher Anfänger, was Foobar und co anbelangt.... tut mir leid.

Nur hatte ich bei allen probierten Skins bisher ähnliche Probleme...

Wenn ich euch noch mit anderen Daten bei der Problemlösung behilflich sein kann... her damit. Ich brauch nur den Input, damit ich weiß, was ihr an Informationen benötigt.

Soweit erstmal Danke für eure Mühe und Rückmeldung.


Edit:

Hab nochmal ein wenig recherchiert nd bin über http://support.microsoft.com/kb/178251/de gestolpert

den Schlüsssel User Agent hab ich nter folgendem Pfad gefunden:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\User Agent
Typ: Reg_Sz Wert: nicht gesetzt

Also mal den IE neu installiert,
aber ohne Erfolg.

tedgo

#6
Jetzt vermute ich mal (wieder) was...

Die Fehler passieren in den beiden WSH Panels, die die Dateien "Buttons (Themed Buttons).txt" bzw. "Buttons (Themed TAB).txt" laden.
D. h., dass entweder in diesen beiden Dateien der Fehler liegt oder in den Scripts der Panel, in denen diese Dateien geladen wird.

Wo hast du die Config her? Ist das diese hier: [Link entfernt, da illegale Bestandteile enthalten!]

Ich lade sie mir mal herunter und schau mir diese Scripts mal an.

EDIT: Habe den Link zu dieser DUI-Config entfernt, nachdem ich festgestellt habe, dass sie nicht nur foo_ui_hacks beinhält, sondern auch noch markenrechtlich geschützte Fonts!

Sputnik83

richtig vermutet ^^

In de DL sind die Versionen 1.1 nd 1.0 enthalten.
Die Fehler tauchen in beden auf.

Außerdem beim Last.fm Love Button dieses Skins, der fehlerfrei auf meinem anderem PC (win 7) läuft.
http://arnie77.deviantart.com/gallery/24520749#/d2k323j

tedgo

Der Fehler bei deiner jetzigen Config liegt wohl tatsächlich in den beiden Preprozessor-Dateien.
Es handelt sich jeweils um die Zeile: g_theme.SetPartAndStateId(1,id);

Mal sehen, was ich dazu finde, denn bei mir (Win7) läuft die Config tadellos. Ich vermute also, es hat was mit XP zu tun.

Du könntest mir mal einen Gefallen tun und meine Config ausprobieren, ob die bei dir läuft (am besten erstellst du dafür eine portable foobar2000-Installation): http://tedgo.deviantart.com/#/d2lakwc

Da ist nichts dergleichen drin und falls die auch nicht hinhaut, dann brauch ich gar nicht nach SetPartAndStateId fahnden, denn dann liegt das Problem doch woanders...

Sputnik83

Fehler sind da:

Erkärung in einer kleinen Bildergeschichte:

Buttons links oben werden nicht korrekt angezeigt


Maus over erscheinen sie


Im Vollbildmodus sind sie immer da

Console:

Watching: C:\Dokumente und Einstellungen\Besitzer\Eigene Dateien\Eigene Musik
WSH Panel Mod (GUID: 335EEB5B-621B-4C24-B846-D4E6BAE671B8): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Script.js"
WSH Panel Mod (GUID: 335EEB5B-621B-4C24-B846-D4E6BAE671B8): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Button Script.js"
WSH Panel Mod (GUID: 335EEB5B-621B-4C24-B846-D4E6BAE671B8): initliased in 0.0000249 s
WSH Panel Mod (GUID: FF1A308A-F5B2-49E1-B98F-594F180E0BA6): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Script.js"
WSH Panel Mod (GUID: FF1A308A-F5B2-49E1-B98F-594F180E0BA6): initliased in 0.0000125 s
WSH Panel Mod (GUID: B38385B4-7CBE-4019-BB99-8CCE46084548): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Script.js"
WSH Panel Mod (GUID: B38385B4-7CBE-4019-BB99-8CCE46084548): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Button Script.js"
WSH Panel Mod (GUID: B38385B4-7CBE-4019-BB99-8CCE46084548): initliased in 0.0000350 s
WSH Panel Mod (GUID: 08886804-F90F-4666-8B93-12335E0F92D8): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Script.js"
WSH Panel Mod (GUID: 08886804-F90F-4666-8B93-12335E0F92D8): initliased in 0.0000051 s
WSH Panel Mod (GUID: 27B46416-B5A0-4EE8-9E4C-0BF55FEDF8DF): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Script.js"
WSH Panel Mod (GUID: 27B46416-B5A0-4EE8-9E4C-0BF55FEDF8DF): initliased in 0.0000051 s
WSH Panel Mod (GUID: E1B1886B-E811-472E-9296-786231BAC70D): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Script.js"
WSH Panel Mod (GUID: E1B1886B-E811-472E-9296-786231BAC70D): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Button Script.js"
WSH Panel Mod (GUID: E1B1886B-E811-472E-9296-786231BAC70D): initliased in 0.0000065 s
WSH Panel Mod (GUID: 23221355-21CA-4A4F-B5BA-3B675D5DA564): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Script.js"
WSH Panel Mod (GUID: 23221355-21CA-4A4F-B5BA-3B675D5DA564): initliased in 0.0000046 s
Album list panel: initialised in 0.081 s
Filter Panel - Genre: initialised in 0.019 s
Filter Panel - Artist: initialised in 0.020 s
Filter Panel - Album: initialised in 0.025 s
WSH Panel Mod (GUID: F7E12EDF-4692-424E-ACDF-3A235B3644D0): Parsing file "C:\Dokumente und Einstellungen\Besitzer\Desktop\foobar2000\DarkOne21\Others\WSH Scripts\DO21 Global Script.js"
WSH Panel Mod (GUID: F7E12EDF-4692-424E-ACDF-3A235B3644D0): initliased in 0.0000092 s
Startup time : 0:01.169782

tedgo

Nein, keine Fehler.
Meine Config ist nur nicht für Auflösungen kleiner als 1024*600 geeignet... ;)
Konnte ja bei der Erstellung nicht ahnen, dass es noch Auflösungen aus der Steinzeit gibt  :crazy:

Die Config funktioniert.
Also liegt es wohl am ThemeManager.
Und wie ich sehe, hast du deine Themes abgeschaltet.
Daran wirds liegen...

Sputnik83

#11
Ich bin auf 1024*600..
allerdings aufm 10" Zoll Netbook

Theme Manager?
Du meinst dir ganzen "tollen" Win effekte?
und wie lös ich mein Problem nun?

Edit:

Du hast recht...

Skins laufen nicht mit dem klassichen Win XP Style...
zu lächerlich!

Da ich aber auch nicht gewillt bin von hübschem und Resourcen sparendem Grau auf ekliges und Resourcenfressendes Blau umzusteigen, bleibt mir wohl nichts anderes übrig, als weiter nach einem passendem Skin zu suchen...

Jedenfalls danke für deine sehr bemühte und kompetente Hilfe.

Aber, wieso läuft dein Skin bei mir nur im Vollbildmodus, wenn ich doch in der entsprechenden Auflösung bin?

tedgo

#12
Indem du die Windows Themes wieder aktivierst ;)
Oder du musst dich mit einer Config begnügen, die nicht auf diese Themes angewiesen ist.

Allerdings gerate ich hier ein bisschen ins Spekulieren...
Ich nehme nur an, dass es deshalb nicht hinhaut.
Ich selbst nutze den Theme Manager im WSH Panel mod nicht.

Zitat von: Sputnik83 in 24. November 2010, 01:04:38
Ich bin auf 1024*600..
allerdings aufm 10" Zoll Netbook
Na ja, und im Vollbild hast du ja (fast) alles von DarkOne.
Eigentlich war es für 1024*768 und größer konzipiert...

Sputnik83

ZitatIndem du die Windows Themes wieder aktivierst Zwinkernd
Oder du musst dich mit einer Config begnügen, die nicht auf diese Themes angewiesen ist.

Allerdings gerate ich hier ein bisschen ins Spekulieren...
Ich nehme nur an, dass es deshalb nicht hinhaut.
Ich selbst nutze den Theme Manager im WSH Panel mod nicht.

Ich bin verwirrt....
redest du gerade von Windows oder von Foobar?
Welcher Theme Manager?
Ich habe nur den XP-klassik Theme in Windows eingestellt unter "Eigenschaften von Ansicht".
Meinst du das?

tedgo

Ja, genau das meine ich.
Stell auf Luna um (auf das Standard XP Theme), dann sollte es eigentlich hinhauen.