|
 |
|
09-10-2008, 01:01 AM
|
#46
|
|
FLAC
Join Date: Jul 2005
Location: upland california us
Posts: 1,012
|
Quote: Originally Posted by kbreeden 
2. Coverjuke.ini contains a setting for a scroll bar, but even if I set it to 1 I don't see a scroll bar. I can scroll through the covers by dragging them, but I don't see a scroll bar. Am I missing something?
fixed. "scrollbar = true" will show the scroll bar.
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
09-10-2008, 06:45 AM
|
#47
|
|
FLAC
Join Date: Jun 2002
Location: Virginia
Posts: 1,434
|
Quote: Originally Posted by EL CAMINO 
fixed. "scrollbar = true" will show the scroll bar.
Excellent, El. I should be able to try later today. Thanks!
|
|
|
09-11-2008, 12:25 PM
|
#48
|
|
FLAC
Join Date: Aug 2006
Location: Sun Diego
Posts: 1,405
|
Suggestion:
Since this app can't be embedded by conventional means into RR, you need a way to allow users to position the app which is skin based.
I modified your Coverjukeload script to pull xpos and ypos straight from $skinpath$skin.ini instead of it being hard coded in the script.
CoverJukeLoad
Code:
$rr = ObjCreate("RoadRunner.sdk")
$skinpath = $rr.getinfo("=$skinpath$")
Opt ("wintitlematchmode", 4)
if WinExists("classname=OpenGLUT", "") then
$Cvrj = WinGetHandle("classname=OpenGLUT", "") ;grab coverjuke.
$var = IniReadSection($skinpath & "skin.ini", "coverjukeload")
WinMove($Cvrj, "", $var[1][1], $var[2][1]) ;move coverjuke in a way that fits the screen and is not in the way.
Exit
EndIf
IniWrite("coverjuke.ini", "coverjuke", "defaultdir", $rr.getinfo("=$MUSICPATH$")) ;sets music directory from rr.ini.
IniWrite("coverjuke.ini", "coverjuke", "pathplayer", @ScriptDir & "\Cover.exe") ;sets script "Cover" to be the player(RR Connection)
IniWrite("coverjuke.ini", "coverjuke", "internalplayer", "false") ;make sure external player is used.
run("Coverjuke.exe") ;after all is good open up coverjuke.
WinWait("classname=OpenGLUT", "", 10) ;wait untill coverjuke is running.
$Cvrj = WinGetHandle("classname=OpenGLUT", "") ;grab coverjuke.
if $Cvrj = "" Then ;if no success exit.
Exit
Else
$var = IniReadSection($skinpath & "skin.ini", "coverjukeload")
WinMove($Cvrj, "", $var[1][1], $var[2][1]) ;move coverjuke in a way that fits the screen and is not in the way.
EndIf
skin.ini
Code:
[coverjukeload]
CJxpos=-4
CJypos=-10
COVERJUKE_ACTION=1
.
__________________
Pico-ITX / nLite'd XP Pro with EWF-HORM / RR v9/22/2009 / Winamp v5.13 / RRMedia v1.2.2
|
|
|
09-11-2008, 12:31 PM
|
#49
|
|
FLAC
Join Date: Jul 2005
Location: upland california us
Posts: 1,012
|
thanx sal, i was thinking in using an old way i have to get X,Y,W,H, from .skin files. that way is not hard coded anywhere. but i'm working in the C++ source to make it more integrated to RR.
|
|
|
09-11-2008, 12:35 PM
|
#50
|
|
FLAC
Join Date: Aug 2006
Location: Sun Diego
Posts: 1,405
|
suh-weeeet...
__________________
Pico-ITX / nLite'd XP Pro with EWF-HORM / RR v9/22/2009 / Winamp v5.13 / RRMedia v1.2.2
|
|
|
09-12-2008, 08:00 PM
|
#51
|
|
Newbie
Join Date: Sep 2008
Posts: 9
|
Hi,
Just thought I'd write a quick note to say how excellent I think this software is. I will be installing it on a touchscreen PC I have, but for the time being I have been playing with it on my laptop and it's just great!
Is there a way of changing the font style and size?
Also, is it possible that there could be an option in the ini file that changes the operation to a pub style jukebox. So, selecting a track will add it to a playlist instead of playing it immediately (apart from when it is the first track that is selected after startup), then, when the current track has finished, the next track in the queue list is played. This isn't like a playlist, as when the program is shut down and restarted there will be no tracks in the queue.
Regards,
Andrew
|
|
|
09-12-2008, 10:38 PM
|
#52
|
|
FLAC
Join Date: Jul 2005
Location: upland california us
Posts: 1,012
|
to add a track from the album you can use "ADD1", and "SELECT+" to add the whole album. see Skin Commands.txt for more info.
|
|
|
09-14-2008, 07:10 PM
|
#53
|
|
Newbie
Join Date: Sep 2008
Posts: 9
|
Thanks for the reply, but I'm a bit confused (maybe I need to study the documentaion a bit closer)
I am using this software as a standalone jukebox running on a pc at home, I am not running it from Roadrunner.
Can I still do what you suggested?
Is there an example skin that does this?
Regards
Andrew
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
09-15-2008, 02:56 AM
|
#54
|
|
Maximum Bitrate
Join Date: Dec 2007
Posts: 738
|
Thanks El..
wow.. this stuff flys once loaded... but takes forever to load all the album images....
edit: first 10 album seems load real fast then, it starts laboring...
Has anyone tried this for video yet? does this mean, i need to run two instance of cj for both audio and video?
cool stuff Sal, now i can embed this better with that setting.
andrew, you need to download and sample skins are included in it.
Last edited by brandensin; 09-15-2008 at 03:49 AM.
|
|
|
09-15-2008, 06:13 AM
|
#55
|
|
Newbie
Join Date: Sep 2008
Posts: 9
|
Hi,
I understand how the sample skins (apple and day) work that come with Coverjuke but they don't include much apart from changing font colours.
I can't seem to find skin commands.txt mentioned.
Also, a previous post talks about removing/showing the slide bar along the bottom, but I can't seem to see any reference to it in coverjuke.ini
I am not running it under Roadrunner, is that my problem.
Andrew
|
|
|
09-15-2008, 11:24 AM
|
#56
|
|
FLAC
Join Date: Aug 2006
Location: Sun Diego
Posts: 1,405
|
Quote: Originally Posted by andrewhannay 
Hi,
I understand how the sample skins (apple and day) work that come with Coverjuke but they don't include much apart from changing font colours.
I can't seem to find skin commands.txt mentioned.
Also, a previous post talks about removing/showing the slide bar along the bottom, but I can't seem to see any reference to it in coverjuke.ini
I am not running it under Roadrunner, is that my problem.
Andrew
Looking at the source, the fonts are hard coded into CJ. A work around is to put a copy of the the font you want to use in the the coverjuke/fonts folder and rename it to the "Apple Garamond Bold.TTF" & "Apple Garamond.TTF" font.
You won't be able to change the font size, but I'm working on it...
As for color, the skin folder (i.e. apple, day, etc.) has a "skin.ini" file that allow you to change the font color via RGB values.
__________________
Pico-ITX / nLite'd XP Pro with EWF-HORM / RR v9/22/2009 / Winamp v5.13 / RRMedia v1.2.2
Last edited by Sal R.; 09-15-2008 at 12:55 PM.
|
|
|
09-15-2008, 01:13 PM
|
#57
|
|
FLAC
Join Date: Jun 2002
Location: Virginia
Posts: 1,434
|
Quote: Originally Posted by andrewhannay 
Hi,
Also, a previous post talks about removing/showing the slide bar along the bottom, but I can't seem to see any reference to it in coverjuke.ini
I am not running it under Roadrunner, is that my problem.
Andrew
CoverJuke.ini has a clear setting for enabling the scroll bar. Just make sure you change it to true.
|
|
|
09-15-2008, 01:53 PM
|
#58
|
|
FLAC
Join Date: Nov 2005
Location: Midlands
Posts: 1,031
|
Quote: Originally Posted by andrewhannay 
Hi,
I understand how the sample skins (apple and day) work that come with Coverjuke but they don't include much apart from changing font colours.
I can't seem to find skin commands.txt mentioned.
Also, a previous post talks about removing/showing the slide bar along the bottom, but I can't seem to see any reference to it in coverjuke.ini
I am not running it under Roadrunner, is that my problem.
Andrew
As your core question hasn't been answered,allow me.
Both ADD1 and SELECT+ are roadrunner commands,the skin commands.txt is also a rr specificitem.
These are not really relevent to you if your not running rr.
__________________
P4 2.8 HT, 512Mb Ram, 60Gb 2.5 HD, M4-ATX, SB Audigy2, BU353, Lilliput TS,Soundgraph Imon VFD,SONY Optiarc dvd Burner,ROADRUNNER, iGo8, Custom Freedom 2.1
|
|
|
09-15-2008, 02:04 PM
|
#59
|
|
FLAC
Join Date: Jun 2002
Location: Virginia
Posts: 1,434
|
Quote: Originally Posted by EL CAMINO 
1. CJ searchs for music files, if found will add to the DB and if cover is found will show it, try to create a folder.jpg for each directory, my tag editor has a cover art downloader, i might create another script to download those missing folder.jpg.
It would be great if CoverJuke could be changed to only produce a cover if there is actually a cover art file in the directory. Many people, me included, organize their music by artist. Often there are artists for whom we have a couple of songs, but no albums. In those cases, there would typically not be album art in that directory. It's a shame that CoverJuke produces an "Image Not Available" cover for music directories not having album covers rather than just ignoring them. As you say, we could just put an image into each directory, but that distorts the functionality of CoverJuke which is to scroll through album covers.
|
|
|
09-15-2008, 06:34 PM
|
#60
|
|
Newbie
Join Date: Sep 2008
Posts: 9
|
Ah ha, Thankyou Griff1, an answer.
So the stand alone software just selects and album and plays it from the start.
I guess I should ask Mika if there are any plans to include a Pub Jukebox mode that allows people to select songs to add to a playlist much like WinCab. This works great during parties as people select tracks that they like but infact are just playing your music collection in a different order.
Andrew
|
|
|
|
Sponsored links
|
|
Advertisement
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 03:56 PM.
| |