"Other application is busy" error when adding mp3 to Winamp

Things you’d like to miss in the future...
Forum rules
:warnred20: :warnred20: :warnred20: :warnred20: :warnred20: READ THIS AND DO IT!!! :warnred20: :warnred20: :warnred20: :warnred20: :warnred20:

:info: Please include the following information:
1) Your XYplorer Version (e.g., v28.00.0801)
2) Your Windows Version (e.g., Win 11)
3) Your Screen Scaling Percentage (e.g., 125%).

:info: We recommend adding your Windows Version and Screen Scaling Percentage to the Location field in your Profile or to your Signature. That way, you only have to type them once.

:info: When attaching an Image, please use the Attachment tab at the bottom of your post and click "Add files".

:warnred20: :warnred20: :warnred20: :warnred20: :warnred20: READ THIS AND DO IT!!! :warnred20: :warnred20: :warnred20: :warnred20: :warnred20:
Post Reply
Zigo
Posts: 40
Joined: 20 Jul 2010 10:48
Location: Manchester, England
Contact:

"Other application is busy" error when adding mp3 to Winamp

Post by Zigo »

If I double click on an mp3 file from XYplorer to enqueue it in Winamp, it seems to get stuck waiting for something.

Winamp takes 30 seconds or more to register the file being added to the queue, and in that time I can't use XY. When I try to click on anything in XY I get a dialog box saying "This application cannot be completed because the other application is busy. Choose 'Switch To' to active the busy application and correct the problem", with "Switch To..." and "Retry" buttons, neither of which do anything (and a Cancel button which is disabled).

After a while, the file is added to my Winamp playlist, and then XY is usable again.

zer0
Posts: 2676
Joined: 19 Jan 2009 20:11

Re: "Other application is busy" error when adding mp3 to Winamp

Post by zer0 »

I remember having an issue of this kind. Can you please try adding mp3 to your PFA list to be opened with WinAmp?
Last edited by zer0 on 12 Mar 2011 17:21, edited 1 time in total.
Reporting a bug? Have a wish? Got a question? Use search - View roadmap - FAQs: Forum + XY site
Windows 7/10
Always using the latest stable two-decimal build

Zigo
Posts: 40
Joined: 20 Jul 2010 10:48
Location: Manchester, England
Contact:

Re: "Other application is busy" error when adding mp3 to Winamp

Post by Zigo »

Yep that's fixed it, thank you! :D

tiago
Posts: 589
Joined: 14 Feb 2011 21:41

Re: "Other application is busy" error when adding mp3 to Winamp

Post by tiago »

I was about to post another way round but realized that it doesn't work well when I use values to variables instead of real paths. Any ideas on how to solve this, zer0?
$list = get(selecteditemspathnames, "|");
#217; //clear clip
foreach($f, $list)
{
$q = quote($f);
copytext("$q ", a);
}

$finallist = "<clipboard>";
run """D:\Programas\Winamp Portable\winamp.exe"" /ADD "$finallist"";
broken because resolved values end with [" ""] instead of [""";]
Replace doesn't work, too. :?
Power-hungry user!!!

zer0
Posts: 2676
Joined: 19 Jan 2009 20:11

Re: "Other application is busy" error when adding mp3 to Winamp

Post by zer0 »

Does WinAmp support addition of multiple files like that? I know it supports single entries. You may need to create a playlist file first and then load it into WinAmp.
Reporting a bug? Have a wish? Got a question? Use search - View roadmap - FAQs: Forum + XY site
Windows 7/10
Always using the latest stable two-decimal build

Zigo
Posts: 40
Joined: 20 Jul 2010 10:48
Location: Manchester, England
Contact:

Re: "Other application is busy" error when adding mp3 to Winamp

Post by Zigo »

Using zer0's suggestion of adding Winamp to the PFA, I can add multiple files (although haven't tested how many).

Have you tried this method, tiago?

tiago
Posts: 589
Joined: 14 Feb 2011 21:41

Re: "Other application is busy" error when adding mp3 to Winamp

Post by tiago »

PFA was of no help.
Winamp's "enqueue options" nor "enqueue list" which is a complete different feature wasn't of help.
Winamp portable, latest XY beta.
Power-hungry user!!!

tiago
Posts: 589
Joined: 14 Feb 2011 21:41

Re: "Other application is busy" error when adding mp3 to Winamp

Post by tiago »

And to be explicit regarding zer0's answer: yes, if I enter the real paths everything goes ok with queuing.
Power-hungry user!!!

PeterH
Posts: 2826
Joined: 21 Nov 2005 20:39
Location: DE W11Pro 24H2, 1920*1200*100% 3840*2160*150%

Re: "Other application is busy" error when adding mp3 to Winamp

Post by PeterH »

tiago wrote:I was about to post another way round but realized that it doesn't work well when I use values to variables instead of real paths. Any ideas on how to solve this, zer0?
$list = get(selecteditemspathnames, "|");
#217; //clear clip
foreach($f, $list)
{
$q = quote($f);
copytext("$q ", a);
}

$finallist = "<clipboard>";
run """D:\Programas\Winamp Portable\winamp.exe"" /ADD "$finallist"";
broken because resolved values end with [" ""] instead of [""";]
Replace doesn't work, too. :?
I'd like to go back to this point. If I see it right, the quotes in the last part of the run cannot be correct? As I think, the quotes around $finallist have to be doubled, i.e.

Code: Select all

   run """D:\Programas\Winamp Portable\winamp.exe"" /ADD ""$finallist""";[/quote]
Reason: they are inside the outer quotes around all parameters of the run-command.

tiago
Posts: 589
Joined: 14 Feb 2011 21:41

Re: "Other application is busy" error when adding mp3 to Winamp

Post by tiago »

Assuming the part [""";[/quote]] should read [""";] yes you are right peterH.
I copied the command from an attempt to make the command work and the result was my post, but actually it should read [""";] too.
As you can see it happens. :D
Tried many times using replace() but no luck thus far. :cry:
Power-hungry user!!!

Post Reply