Jump to content

enqueue selected file in winamp


MJFox
 Share

Recommended Posts

Hi!

I have a problem which I just can't solve. Maybe somebody out there could give me a hint.

I want to send an IR-signal and enqueue the currently selected file in windows explorer in winamp. I have a tool called ir2keyboard which translates ir-signals to keyboard-command. I assigned SHIFT+ENTER to an IR-command (usually SHIFT+ENTER enqueues the currently selected file in the winamp playlist) but it seems that windows explorer only receives ENTER (without SHIFT), so the selected file is beeing played instantly instead of queued in the playlist.

Then I tried to write an AutoIt-Script, which just sends SHIFT+ENTER:

Send("+{ENTER}")

I assigned the IR-command to the script and the result was the same. The file startet to play immediately (instead of being queued), so again it seems that explorer doesn't get the SHIFT-command (it works when I press SHIFT+ENTER on keyboard btw.)

Then I tried the following:

Send("{APPSKEY}{DOWN 2}{ENTER}")

this should open up the context menu and select the second entry (which is "enqueue in winamp").

This also didn't work, the context menu seems to show up for a fraction of a second and hides again. The commands "DOWN 2" and "ENTER" were sent to explorer AFTER the context menu disappeard.

I also tried:

Mouseclick("right")

Send("{DOWN 2}{ENTER}");

with the same effect: the context menu shows up and disappears in the fraction of a second and the following commands don't reach the "enqueue in winamp"-command.

I know that the command "enqueue in winamp" is just a shortcut for "winamp.exe /ADD %1", but how can I get the currently selected file to pass it to %1 ?

I'm really pulling my hair because of this problem, I hope somebody can help.

Greetings

Kamil

Edited by MJFox
Link to comment
Share on other sites

Hi MJFox,

1st Welcome to the AutoIt Forums! :idiot:

Some of the following tips may not apply to you, but it may make your life a bit easier here on the forum in the future.

CODE
  • Did you know that we have an awesome search feature?

    You can find many answers to your current questions, just by typing in the right search patterns.

  • A suggestion is to use the Advanced Search mode:

  • Type your specific search term in quotes.
  • Click the forum you want to search in (the one most likely to have your information would generally be the Example Script forum and or the General Help and Support Forum).
  • Click on "Search titles only" radio button.
  • Click perform search.
The above will help you narrow down your searches and prevent you from unneccesarily posting a new thread.

[*]Also, you should try to read the Sticky posts that are at the top of each of the AutoIt Forums you enter such as:

[*]Forum Etiquette:

  • Making a new thread:

    • Use the Search feature first to see if your question has already been answered.
    • Look in the help file as well before even thinking of posting (When what you want could be obtained by simply reading the help file, you don't generally get a good response from your AutoIt community).
    • Titles are very important here. 1 word titles or titles like "help me", "write something for me", "I'm a noob" etc... aren't tolerated.
    • Use common sense when creating a new thread.

      Ask yourself if the title is descriptive enough to even interest someone (preferably those that know what they are talking about) to even look at your thread, let alone reply in it.

    • Think about how it would show in the search feature if someone were to look for something just like you are looking for (think of the keywords you used yourself and obviously didn't find anything (because we know you used the search feature :) ) and use those types of keywords in your title as well).
  • Thread content:

    • Be descriptive with your query. (Make sure we actually know what you want to do).
    • Show you've made an effort in coding what you want (provide the reproducer code (generally no more than 50 lines as people lose interest in debugging someones script for free)).
    • Don't talk in ebonics. A lot of the forum members are adults, and a lot of them know how to help you, but talk like a child, you'll be treated as such.
    • Don't ask for help making keyloggers, spam (even if it's to do as a prank), or anything that can be thought of as malicious. You'll more than likely have the thread locked by a moderator, and take a bashing from your fellow AutoIt community.
    • When posting code, use code boxes. This can be accomplished by using [code ]<content here>[/code ] (No spaces between the brackets []).

      Using code boxes will keep the indentation and make it easier to read for others to help you.

  • Bumping your threads:

    • Use common courtesy here.

      Keep in mind every time you bump your thread to the top of the forum, you knock the other threads down a notch.

      Everyone posting for help has just as much right for their threads to get read as you do.

      Because of that, do not bump your post more than once in a 24 hour period.

      A Bump is simply posting in your thread with nothing that pertains to your query with the sole purpose of moving it up.

      Deleting previous bumps, and posting new ones is not tolerated, and the moderators can find those deletions, so do yourself a favor and don't cross that line >_< .

  • Rude or obnoxious content:

    This falls pretty much under the common sense thing. If you use it (common sense) before posting, you won't have issues.

    • Don't use foul language, remember, a lot of the community is at work when they read these threads.
    • Don't provoke or instigate an argument with someone.
  • Double Posting:

    • It's understood that sometimes there's a lag in the system, and sometimes people don't see their post go up right aways so they post again.

      If this happens to you, simply notify a moderator with the report feature in the post, and politely ask them to delete it.

    • If you're just creating another topic because your original topic is not being answered the way you want or at all, this is not tolerated. You could lose your posting privileges all together over it.
  • Non-English languages

    • If English is not your primary language, please make an attempt to interpret (yourself or online) and post that interpretation.

      We have wonderful users from around the world, so after you've done your post in English, back it up with your question also in your native tongue (You may find your answer much quicker using both).

That's it for now, I hope you have a wonderful learning experience, and hope to see you contribute to the community as your knowledge grows.
Link to comment
Share on other sites

Welcome to the forums and we were just talking about getting the handle to a file in explorer in monocere's thread. Why not sneak a peek at that and take a look at the codes there;).

Link to comment
Share on other sites

Hi!

Ok, I spent the last 3 hours to search the forum and playing around with various commands and finally wrote the following down:

$Window = WinGetTitle("[ACTIVE]", "")

$CLVItem = ControlListView($Window, "FolderView", "SysListView321", "GetSelected")

$Item = ControlListView($Window, "FolderView", "SysListView321", "GetText", $CLVItem)

$Path = ControlGetText("[Class:CabinetWClass]", "", "Edit1")

Run('c:\programme\winamp\winamp.exe /ADD "' & $Path & '\' & $Item & '.mp3"')

WinActivate("[Class:CabinetWClass]")

it works... but I'm not quite satisfied with it... it seems too complicated for such a task :)

does anybody have a better solution for the problem?

greetings

MJFox

Link to comment
Share on other sites

ok, I found a different solution

Global $HotKey = "^!w"

HotKeySet($HotKey, "_enqueue")

Do

Sleep(100)

Until False

Func _enqueue()

Send("{APPSKEY}{DOWN 2}{ENTER}")

EndFunc

the reason why this works and a script which just sends Send("{APPSKEY}{DOWN 2}{ENTER}") doesn't is because in VISTA the explorer window seems to loose focus when you launch an autoit-script, so the wrong context menu shows up... with the solution above the autoit-script runs in background and doesn't grap focus when the hotkey is pressed

Greetings

MJFox

Edited by MJFox
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...