Switch to the dark side!
General Discussion

General Discussion

Latest Discussion
2 months ago
3 months ago
4 months ago
More...

Post a new topic



windows media player skin for 7" touchscreen

Avatar-50x50
inorkuo says:

i have created a skin for that fits on a 7" touchscreen in my car. the last thing i have to do is to find some way to lock it into place on the desktop so that it does not slide around when i miss a button. with winamp the window will dock itself to the edges of the screen but with media player it doesn't do that. is there any way to code the skin to make it have edges that snap to the edges of the screen? if not is there any other way to get this effect? maybe some kind of third party program or something? thanks.

02:51 pm, Wednesday, January 14, 2004 (5 years ago)
4630
rush68 says:

why not just convert it to a winamp3 skin? wouldn't that work the same + be dockable?

- rush68

02:59 pm (5 years ago)
Avatar-50x50
inorkuo says:

i used a winamp3 skin as my model. the main reason is bc wmp plays dvd's.

03:08 pm (5 years ago)
Avatar-50x50
mojomonkee says:

i dunno how to fix this but this is a badass idea and implementation. we want screenshots and pictures when you get it done!

_____________________________

no one sleeps yet, let's keep it going until the morning.

03:36 pm (5 years ago)
2008
Reeses2150 says:

He's already asked me about this, and he's probably asked other people as well. I have seen no evidence that WMP has any docking capabilities whatsoever. It is a good Idea, and I would have loved to see it work, but unfortunately, Microsoft's got nothing compared to Nullsoft.

04:50 pm (5 years ago)
Avatar-50x50
inorkuo says:

i think i'm going to modify all of my mapping files so that they fill up most of the skin's area. that should solve the accidental moving problem. you can see my implementation at http://66.255.114.44/web/inorkuo/g35 the pics there show the winamp3 skin that i used as the model for the wmp skin. here are the screenshots of the wmp

http://66.255.114.44/Main.jpg http://66.255.114.44/Playlist.jpg http://66.255.114.44/Equalizer.jpg http://66.255.114.44/Video.jpg

06:30 pm (5 years ago)
Avatar-50x50
evilbadz says:

If you tell me the version of mediaplayer I could write you a quick program to hold it in place on the screen...

06:40 pm (5 years ago)
Avatar-50x50
inorkuo says:

it's media player 9. that would be awesome if you could do that.

06:45 pm (5 years ago)
Avatar-50x50
inorkuo says:

9.00.00.3075 to be more specific

06:48 pm (5 years ago)
Avatar-50x50
evilbadz says:

K, www.idispatch.net/holdmp.zip

you can set the x/y pos in the holdmp.cfg file

if it needs to do anything else (keep mp at a certain size, keep it topmost, etc) tell me and it will only take a min to add that in.

07:19 pm (5 years ago)
Avatar-50x50
evilbadz says:

Oh, when it runs you won't see anything, and to close it ctl+alt+del and kill HoldMP.exe :)

07:20 pm (5 years ago)
Avatar-50x50
inorkuo says:

dude you rock. that's awesome. did you just write that in the last hour?

08:26 pm (5 years ago)
Avatar-50x50
evilbadz says:

Yeah, not very much to it.

Main part is

case WM_TIMER:
{
HWND wnd = FindWindow(NULL,"Windows Media Player");
SetWindowPos(wnd,0,xpos,ypos,0,0,SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
}
break;

So it didn't take long ;)

08:29 pm (5 years ago)
Avatar-50x50
evilbadz says:

On sort of the same subject, I wrote a media player a while back to work with my IR remote. Basically it turns my computer into a cd player that I can control from across the room. It has presets that load shoutcasts and other things as well. Just sort of related :)

08:31 pm (5 years ago)
Avatar-50x50
inorkuo says:

can it hold any program in place? how hard would it be to make this program hold winamp3 and winamp5? could you tell me how to modify the exe to do that? thanks again for the program. this is exactly what i was looking for.

08:32 pm (5 years ago)
Avatar-50x50
evilbadz says:

Download http://www.idispatch.net/holdmp.zip again and it will now hold winamp5 in the same place. As for 3 I don't have that and in my 20 seconds of searching google I couldn't find it to download, so I don't know what the classname of the window is. Just a note however, it doesn't work on the classic skin in Winamp5 because that uses a different window (god knows why). If it doesn't seem to be locking it in place, try a winamp3 or winamp5 skin.

-- evilbadz

08:48 pm (5 years ago)
Avatar-50x50
Ipslne says:

{to self} --must... not... hack... wmp9-- {/to self}

^.^;; heh.


I hate liars. I hate hypocrites. I hate haters. Now gimmie a hug.

10:26 pm (5 years ago)
Avatar-50x50
qwertz says:

in car screenshot! in car screenshot!

"qwertz is a pixel wh0re" [:. Googlism.com .:]

11:31 pm (5 years ago)
Avatar-50x50
qwertz says:

just asking inorkuo, how long and how much did it cost all up total for that installation? [excluding the car]

"qwertz is a pixel wh0re" [:. Googlism.com .:]

11:37 pm (5 years ago)
Avatar-50x50
ratboy2700 says:

you have a beautiful car and that is the most amazing thing i have ever seen anyone do with a computer

01:23 am (5 years ago)
Avatar-50x50
s pl IT5 02 says:

that fucking awesome

-I don't not have no idea

01:32 am (5 years ago)
Avatar-50x50
inorkuo says:

i did it for around $2000 but that was because of some trial and error w learning how to set it up. it can be done for $1000-1500 depending on what components you use. hey evilbadz...the original mp that fixed wmp in place throws an error. is there any way to get rid or that? by the way what language is this written in? c++? thanks for all your help.

01:37 am (5 years ago)
Avatar-50x50
qwertz says:

I'm taking it $2000 US ... dam, fine results though.

"qwertz is a pixel wh0re" [:. Googlism.com .:]

01:52 am (5 years ago)
Avatar-50x50
evilbadz says:

oh, it says something like "0/0" or something? That was so I could make sure it was reading the config file correctly. Just use the latest one, it will work on wmp and winamp5 and doesn't show that messagebox. As for the language, yes it was written in c/c++ and the win32api.

08:34 am (5 years ago)
Avatar-50x50
inorkuo says:

thanks a lot evilbadz. you've got some skills.

11:51 pm (5 years ago)
Avatar-50x50
Obecalp9000 says:

Man, that is freak'n sweet, if I had any money at all, or any know-how about anything, I would do that too, but I have neither of those, so I will just applaud you on your superiority. Well done, well done!

Styrofoam plates, Cafeteria tables, Charity reeks Of cheap wine and pity.

12:15 am (5 years ago)
Avatar-50x50
inorkuo says:

I have one more media player skinning question. I want to hide the cursor when it's over the video window. Is there an option i can use in the code to do this?

09:47 am (5 years ago)
2008
Reeses2150 says:

yes. onmouseover="Jscript: {cursor.visible = false;};"
I'm not sure though. I know it's with onmouseover, but I'm not sure about the rest...

11:38 am (5 years ago)
Avatar-50x50
inorkuo says:

hey reeses, i tried your method, but nothing happened. i read in the sdk documentation that you can set the cursor for the video element to a .cur file so that when the mouse is over a "clickable area" it will use the specified cursor. i made a blank (transparent) cursor and tried setting that as the cursor for the video element, but the curso just stays the same. i'm not sure what is meant by "clickable area" since my whole video window is "clickable". one click pauses and another click resumes playing. the reason i'm doing this is because i mapped a bunch of keyboard shortcuts and added other useful features into the skin, but when you double click the video into full mode, you leave the skin and all the features behind. so i've made a custom full screen by resizing the video element to fill my screen when a button is pressed. only problem is that the mouse stays visible. i've been looking for a while for a solution, but nothing is working...

12:36 pm (5 years ago)
Avatar-50x50
inorkuo says:

hey reeses, i tried your method, but nothing happened. i read in the sdk documentation that you can set the cursor for the video element to a .cur file so that when the mouse is over a "clickable area" it will use the specified cursor. i made a blank (transparent) cursor and tried setting that as the cursor for the video element, but the curso just stays the same. i'm not sure what is meant by "clickable area" since my whole video window is "clickable". one click pauses and another click resumes playing. the reason i'm doing this is because i mapped a bunch of keyboard shortcuts and added other useful features into the skin, but when you double click the video into full mode, you leave the skin and all the features behind. so i've made a custom full screen by resizing the video element to fill my screen when a button is pressed. only problem is that the mouse stays visible. i've been looking for a while for a solution, but nothing is working...

12:38 pm (5 years ago)
Avatar-50x50
inorkuo says:

hey reeses, i tried your method, but nothing happened. i read in the sdk documentation that you can set the cursor for the video element to a .cur file so that when the mouse is over a "clickable area" it will use the specified cursor. i made a blank (transparent) cursor and tried setting that as the cursor for the video element, but the curso just stays the same. i'm not sure what is meant by "clickable area" since my whole video window is "clickable". one click pauses and another click resumes playing. the reason i'm doing this is because i mapped a bunch of keyboard shortcuts and added other useful features into the skin, but when you double click the video into full mode, you leave the skin and all the features behind. so i've made a custom full screen by resizing the video element to fill my screen when a button is pressed. only problem is that the mouse stays visible. i've been looking for a while for a solution, but nothing is working...

12:38 pm (5 years ago)
Avatar-50x50
inorkuo says:

if anyone is interested, this skin can be downloaded here http://www.customize.org/details/31040 . if anyone has any idea about making the cursor disappear, please let me know. feedback on the skin design and ideas to improve will also be appreciated.

09:11 pm (5 years ago)
 
   Arrow_up_small Top

Reply to this topic

You must register and become a member to post a reply.