Script problem

The forum for designers and developers.
Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 5. Jun 07, 07:41


User avatar
Service-Team
Posts: 2448
Joined: 7. Dec 04, 04:48
Location: Germany
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Service-Team » 5. Jun 07, 10:43

Maybe a little just before f.write will help you finding out what should be written. If this is okay - are you sure, no one else is writing the file at the moment?

Best regards,
Your Silverjuke Team

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 5. Jun 07, 20:32

Hi S Team tried the alert(track), when a song is selected it opens up a ok box over SJ with an ! mark telling me of the script im running, and the exported file still contain garbled chars ie: 攀瑳

and no one else is writing to the file !!

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 6. Jun 07, 10:17

I think the "alert(track)" should display the content of the variable "track" - maybe it will be helpful to post a screenshot here so that we can be sure we're talking about the same things.

Regards,
B.

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 6. Jun 07, 20:09

Hope this sheds some light on it for anyone

Thanks
Attachments
sjscreenshot.jpg
sjscreenshot.jpg (89.96 KiB) Viewed 3564 times

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 7. Jun 07, 10:16

Reading the complete thread, I think you do *not* want to write the music selection with - which is empty in *many* cases ...

... I think you you want to write the current URL or the current title, so you should use

Another tip is, again, the backslash eg. in "c:\on.exe" - this is converted to the character "\o" - don't know if there is a representation for this. If you really want to use the backslash you have to escape it as "\\". The service team always recommends to use the forward slash instead, "c:/on.exe" in this case.

Regards,
B.

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 7. Jun 07, 10:24

Another hint: If you want to append eg. new URLs to an existing file, you should use

f.pos = f.length;

just after calling "f = new File('c:/sjTrackinfo.txt');". This will set the current file position to the end of the file. As Silverjuke seems not to do this automatically, this may be also an explanation for the "trash" in your file - this may come from older tests ...

Regards,
B.

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 7. Jun 07, 16:30

Thanks so much for your help B. looks like im having some success,i used the the player.getArtistAtPos(0) and getTitleAtPos(0)instead of player.getUrlAtPos() that you suggested all seems good apart from when c:/sjTrackinfo.txt is written to and a new song is started in SJ it adds a new Artist and title to the txt file every time, i was after having just the present artist and title only !

Heres my script >

var oldPlaying = false;
f = new File('c:/sjTrackinfo.txt');
f.pos = f.length;

function myhandler()
{
var nowPlaying = player.isPlaying();
if( nowPlaying != oldPlaying )
{
// here you should do sth. that your external application
// understand. Maybe you find a command line tool that can
// send MIDI events?
if( nowPlaying )
{
program.run('C:/FX_ON.exe');
artist = player.getArtistAtPos(0);
title = player.getTitleAtPos(0);
f.write(artist + " : " + title);
f.flush(artist);
f.flush(title);
}
else
{
program.run('C:/FX_OFF.exe');
}

// remember the new state
oldPlaying = nowPlaying;
}
}

program.setTimeout(myhandler, 500, true);

Thanks

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 7. Jun 07, 16:53

I'm glad that my hints could help you :-)

Regards,
B.

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: Script problem

Postby Guest » 7. Jun 07, 21:59

Hi B. from last post *snip* all seems good apart from when c:/sjTrackinfo.txt is written to and a new song is started in SJ it adds a new Artist and title to the txt file every time, i was after having just the present artist and title only ! *snip*

Still not 100% how i would like you have any ideas ?

Thanks

Peter


[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Return to “Developer Network”