| View previous topic :: View next topic |
| Author |
Message |
kanski Newbie
Joined: 05 Oct 2006 Posts: 5
|
Posted: Tue Oct 10, 2006 12:06 pm Post subject: Zoom Player Script for Salling Clicker |
|
|
[b][color=blue][size=18]Zoom Player Script for Salling Clicker for Windows[/size][/color][/b]
[b]AUTHOR:[/b] kanSki ([url=http://kanski.narod.ru]website[/url])
[b]ORIGINAL AUTHOR:[/b] daffy ([url=http://www.salling.com/forums/viewtopic.php?p=13422#13422]forum[/url])
[b]DATE :[/b] 10.10.2006
[b]VERSION:[/b] 1.0
[b]Functions on main window:[/b]
0 - Navigator mode On/Off (show/hide Zoom Player navigators):
[i]Zoom Player implements several Navigator Interfaces. The Navigator Interfaces are simple interfaces that can be manipulated using the Arrow and Enter keys (or remote devices that map to these keys). List of the Navigator Interface Zoom Player: File Navigator, Media Library Navigator, Play List Navigator, BookMark/Chapter Navigator, Context Navigator, Color Control Navigator, Resize Navigator, Video Blanking Navigator, GoTo Navigator, Mouse Wheel Navigator, Station Navigator WITH this script you can control all navigators![/i] [url=http://www.inmatrix.com/zplayer/navigators.shtml]more[/url]
[i]Navigator mode On:[/i]
Left, Right, Up, Down, Select - control buttons
1 - Main
2 - Media Labrary
3 - File Browser
4 - Playlist
5 - Bookmarks
6 - Station List
7 - Context Menu
8 - GOTO Time
9 - Blanking
HELP - show help for Navigator mode On
[i]Navigator mode Off:[/i]
Select - Play / Pause
Select Hold - Fullscreen/windowed
Right - Fast Forward (x2/x4/x8 by default)
Left - Rewind (x2/x4/x8 by default)
Right Hold - Seek Forward (120 seconds by default)
Left Hold - Seek Backward (120 seconds by default)
Up (Up Hold) - Volume Up
Down (Down Hold) - Volume Down
1 - Jump Backward (20 seconds by default)
3 - Jump Forward (20 seconds by default)
4 - Skip Backward (5 seconds by default)
6 - Skip Forward (5 seconds by default)
7 - DVD Angle
8 - Subtitle On\Off
9 - Sound
HELP - show help for Navigator mode Off
[b]////end of "Functions on main window"////[/b]
[b]More Menu Items: [/b]
[i]Play Control[/i]
-Play / Pause
-Stop
-Slow motion
-1/2 Slow motion
-Next frame
-Previous frame
-Skip Forward (5 seconds by default)
-Skip Backward (5 seconds by default)
-Jump Forward (20 seconds by default)
-Jump Backward (20 seconds by default)
-Seek Forward (120 seconds by default)
-Seek Backward (120 seconds by default)
-Fast Forward (x2/x4/x8 by default)
-Rewind (x2/x4/x8 by default)
-AB-Repeat
-Screenshot
[i] DVD Control[/i]
-Root Menu
-Title Menu
-Next Chapter
-Previous Chapter
-Next Title
-Previous Title
-Next Bookmark
-Previous Bookmark
-Subtitle
-Sound
-Angle
[i]Additional[/i]
-Aspect ratios
-Fullscreen/Window
-Mute/Unmute
-On Play Complete
[i]Exit[/i]
[b]////end of "More Menu Items"////[/b]
[b]Install:[/b]
Unzip, copy to My Documents\My Clicker Scripts\
PS. Please report about bugs. if you have suggestions, welcome!
| Description: |
| Zoom Player Script for Salling Clicker for Windows ver. 1.0 |
|
 Download |
| Filename: |
Zoom_Player_10.10.06.zip |
| Filesize: |
7.64 KB |
| Downloaded: |
2126 Time(s) |
|
|
| Back to top |
|
 |
sico_pata Newbie
Joined: 19 Nov 2006 Posts: 4
|
Posted: Sun Nov 19, 2006 3:35 pm Post subject: |
|
|
It's great
Thank you very much
Just, some improves
[color=red]Navigator mode Off:
Select - Play / Pause
Select Hold - Fullscreen/windowed
Right - Fast Forward (x2/x4/x8 by default)
Left - Rewind (x2/x4/x8 by default)
Right Hold - Seek Forward (120 seconds by default)
Left Hold - Seek Backward (120 seconds by default)
Up (Up Hold) - Volume Up
Down (Down Hold) - Volume Down
[b]1 - Jump Backward (20 seconds by default)
3 - Jump Forward (20 seconds by default)
4 - Skip Backward (5 seconds by default)
6 - Skip Forward (5 seconds by default) [/b]
7 - DVD Angle
8 - Subtitle On\Off
9 - Sound
HELP - show help for Navigator mode Off [/color]
I'd like to get some qiuck functions like: next/previous chapter (with playlist). And open/add file to list. I think 1, 3, 4 and 6 are repeat function
To next chapter I need to enter in the DVD menu
What do you think?
|
|
| Back to top |
|
 |
kanski Newbie
Joined: 05 Oct 2006 Posts: 5
|
Posted: Tue Nov 21, 2006 2:07 pm Post subject: |
|
|
| may be.
|
|
| Back to top |
|
 |
hawky358 Newbie
Joined: 30 Nov 2006 Posts: 4
|
Posted: Thu Nov 30, 2006 6:25 pm Post subject: Title |
|
|
Hello all
Firsty Thanks Alot kanski for the script (Saved me alot of time and trouble) :P
Secondly (and Finally)
I noted that the script does not show the file currently being played. Instead it shows "Playing Media/Audio file"
Here is a what you need to do for showing the title.
- Enable "Show currently playing title on the Task Bar button"
To do this
Go
- Options (Advanced Mode)
- Settings
- Other
- Mark Show currently playing title on the Task Bar button
- Click Manual Save Close Zoom Player
- Go into My Documents\My Clicker Scripts\Zoom Player\Zoom Player
- Edit the Zoom Player.js file
At line 125 you will see the following code:
[code:1]
var mode = SendMessage(zpwh, WM_ZP_CMD, 0, ZP_GetMode);
switch (mode) {
case 0:
sampleRow.textualContent = "Playing DVD";
break;
case 1:
sampleRow.textualContent = "Playing Media File";
break;
case 2:
sampleRow.textualContent = "Playing Audio File";
break;
}
[/code:1]
Replace all that code with the following:
[code:1]
var mode = SendMessage(zpwh, WM_ZP_CMD, 0, ZP_GetMode);
var zpwh2 = FindWindow( "TApplication", "");
var naam = GetWindowCaption(zpwh2);
naam_array=naam.split(" - Zoom");
naam = naam_array[naam_array.length-2];
if (mode == 1 || mode == 2) {
sampleRow.textualContent = naam;
}
[/code:1]
This should now show the file name with the extension.
I have not tried this with a DVD, it might work (just add | (mode==0) to the if) to try it.
I tested this with Zoom Player 4.51 WMV Pro, if it is just blank or it shows something else, you may need to change the split point of the amount to minus from the Array
(** Make Sure "Show currently playing title on the Task Bar button" is enabled**)
- Hawk
Last edited by hawky358 on Wed Dec 06, 2006 5:54 pm; edited 1 time in total |
|
| Back to top |
|
 |
sico_pata Newbie
Joined: 19 Nov 2006 Posts: 4
|
Posted: Sat Dec 02, 2006 12:32 pm Post subject: Re: Title |
|
|
[quote="hawky358"]I tested this with Zoom Player 4.51 WMV Pro, if it is just blank or it shows something else, you may need to change the split point [b]of the amount to minus from the Array[/b]
[/quote]
Can you explain me it better?
I'm not speak english very well,
I can't see the title with the change you purpose
|
|
| Back to top |
|
 |
hawky358 Newbie
Joined: 30 Nov 2006 Posts: 4
|
Posted: Wed Dec 06, 2006 5:53 pm Post subject: Problem |
|
|
Hello sico_pata
What is it that you see?
Is it just blank, or do you see something else there?
If it is blank make sure that "Show currently playing title on the Task Bar button" is enabled ( I am not sure if this option is available in Standard )
What you can do to see if the Window caption is being read and sent is:
change the code to the following
[code:1]
var mode = SendMessage(zpwh, WM_ZP_CMD, 0, ZP_GetMode);
var zpwh2 = FindWindow( "TApplication", "");
var naam = GetWindowCaption(zpwh2);
//naam_array=naam.split(" - Zoom");
//naam = naam_array[naam_array.length-2];
if (mode == 1 || mode == 2) {
sampleRow.textualContent = naam;
}
[/code:1]
(Note I just commented out those two lines after var naam)
(This will then display the entire Caption name.)
(Let me know what happens here)
If you want you can post your personal Zoom Player.js file and I will take a look at it.
-Hawk
|
|
| Back to top |
|
 |
sico_pata Newbie
Joined: 19 Nov 2006 Posts: 4
|
Posted: Sat May 19, 2007 3:39 pm Post subject: |
|
|
Well I implemented today some improves for me in this script
First, I made the change for show the media file. Thanks to hawky358, now it look to run for me
Next, I change some controls in Player mode that I don't use and change for others more interesting for me. So you can play next/prev video in one playlist without go for a different menu.
Hope it will be useful for you
[i]Navigator mode Off:
Select - Play / Pause
Select Hold - Fullscreen/windowed
Right - Fast Forward (x2/x4/x8 by default)
Left - Rewind (x2/x4/x8 by default)
Right Hold - Seek Forward (120 seconds by default)
Left Hold - Seek Backward (120 seconds by default)
Up (Up Hold) - Volume Up
Down (Down Hold) - Volume Down
1 - Jump Backward (20 seconds by default)
3 - Jump Forward (20 seconds by default)
[b]4 - Skip Backward (Previous Chapter)
6 - Skip Forward (Next Chapter) [/b]
7 - DVD Angle
8 - Subtitle On\Off
9 - Sound
HELP - show help for Navigator mode Off[/i]
| Description: |
|
 Download |
| Filename: |
Zoom Player.js |
| Filesize: |
13.38 KB |
| Downloaded: |
1213 Time(s) |
|
|
| Back to top |
|
 |
Santa Newbie
Joined: 12 Jul 2008 Posts: 1
|
Posted: Sat Jul 12, 2008 2:50 pm Post subject: |
|
|
| Great work, but I've a small problem I'm using a HTC diamond, and it have no number buttons how can I make at screen button to activate navigator mode. and other functions placed on 0-9 buttons.
|
|
| Back to top |
|
 |
nexterr Newbie

Joined: 18 Apr 2009 Posts: 2 Location: Cherepovets
|
Posted: Mon Oct 04, 2010 5:39 pm Post subject: update to properly identify Zoom Player 7 |
|
|
update to properly identify Zoom Player 7
unrar, and copy to My Documents\My Clicker Scripts\
| Description: |
|
 Download |
| Filename: |
Zoom_Player.rar |
| Filesize: |
7.98 KB |
| Downloaded: |
338 Time(s) |
|
|
| Back to top |
|
 |
|