View previous topic :: View next topic |
Author |
Message |
Smeagol Junior Member
Joined: 15 Oct 2005 Posts: 27 Location: Vänersborg, Sweden
|
Posted: Wed Nov 02, 2005 3:57 pm Post subject: |
|
|
Well, winamp is good in the sense that you can write a plugin quickly which helps you a great lot :)
If someone would make a SC plugin for it, we can tinker it the way we want i'm sure :) |
|
Back to top |
|
 |
EdiciusTsaf Newbie
Joined: 02 Nov 2005 Posts: 10
|
Posted: Sat Nov 05, 2005 1:24 am Post subject: |
|
|
Just found out about [url=http://www.myplugins.info/activewinamp.htm]Active Winamp[/url].
Adds VBScript support to WinAmp...
Problem for me is, that this requieres real VBScript experience... And I have none:/ |
|
Back to top |
|
 |
salling Site Admin
Joined: 27 Jul 2004 Posts: 7498 Location: Stockholm, Sweden
|
Posted: Sat Nov 05, 2005 1:34 am Post subject: |
|
|
Yep. That looks promising!
Best.
--
Jonas |
|
Back to top |
|
 |
EdiciusTsaf Newbie
Joined: 02 Nov 2005 Posts: 10
|
Posted: Sat Nov 05, 2005 2:08 am Post subject: |
|
|
Oookay... with the help of your WMP script I got it that far, that I can show what WinAmp is playing at the moment...
Now Ill try to do "Next track". |
|
Back to top |
|
 |
teetow Senior Member

Joined: 11 Oct 2005 Posts: 72 Location: Uppsala, Sweden
|
Posted: Sat Nov 05, 2005 2:14 am Post subject: |
|
|
Try [url=http://www.salling.com/forums/viewtopic.php?p=11224#11224]this[/url]. |
|
Back to top |
|
 |
EdiciusTsaf Newbie
Joined: 02 Nov 2005 Posts: 10
|
Posted: Sat Nov 05, 2005 2:27 am Post subject: |
|
|
nice;)
Allthough I think It'd have been easier with ActiveWinamp;)
The code for getting artist and title is for example:
[code:1]var wo = new ActiveXObject("ActiveWinamp.Application");
var artist = wo.playlist(wo.playlist.position).ATFString("%artist%");
var title = wo.playlist(wo.playlist.position).ATFString("%title%");[/code:1]
Kinda easy I think;) |
|
Back to top |
|
 |
teetow Senior Member

Joined: 11 Oct 2005 Posts: 72 Location: Uppsala, Sweden
|
Posted: Sat Nov 05, 2005 2:40 am Post subject: |
|
|
[quote="EdiciusTsaf"]nice;)
Allthough I think It'd have been easier with ActiveWinamp;)
The code for getting artist and title is for example:
[code:1]var wo = new ActiveXObject("ActiveWinamp.Application");
var artist = wo.playlist(wo.playlist.position).ATFString("%artist%");
var title = wo.playlist(wo.playlist.position).ATFString("%title%");[/code:1]
Kinda easy I think;)[/quote]Of course. I just wanted to offer something that works "out of the box". Looking forward to diving head-first into ActiveWinamp scripting, though. |
|
Back to top |
|
 |
|