Quote:
Originally Posted by pjsssss
Nothing personal Antonio, but I would like to know much more about it such as the questions that Rusty asked. I would need a lot more details before I would load it. Now if it generated a waveform in the source monitor I would be very interested
|
No problems, at all.
I understand your personal point of view.
Please do accept, my apologize.
Everything is available at
http://www.autohotkey.com/.
From there, you can download an application able to generate little macros
for any program in Windows.
Quote:
Originally Posted by Rusty
Thanks for working on potential plug-ins.
|
Rusty, I am not the developer of this script.
This Macro has been written by "Angiolettobello" from
an Italian Edius Support Forum :
http://videodintorni.forumfree.it/, which I personally know.
Moving on....
We have Edius and I want to create a macro able to play the music,
when the mouse-pointer is pointing on an music-file (...when using file import, clicking twice in the bin, or Menu-> File -> Open Clip....).
As soon as you click on the .wav file name with the left mouse button and press F11, the filename is captured as a memory string and queued to
Windows Media Player (wich is a pre-requisite in your O.S.) :
C:\Program Files (x86)\Windows Media Player\wmplayer “nameofsong.wav”
If you press F12, the macro execution will be stopped.
Thats'it.
---------------------------
WMP11’s new command line options :
This option will open wmp and play the playlist listed (NameOfPlayList)
wmplayer /Playlist NameOfPlayList
Play a song (nameofsong.wma):
wmplayer “c:\nameofsong.wma”
Play a song or video in fullscreen mode:
wmplayer “c:\nameofvideo.wmv” /fullscreen
Play the DVD device:
wmplayer /device:DVD
Play a song with the player in a certain skin (headspace):
wmplayer “c:\nameofsong.wma”?wmpskin=headspace“
Open player in the Copy From CD Mode:
wmplayer /Task CDAudio
These all can be combined as well… for example…
Play DVD in fullscreen:
wmplayer /device:DVD /fullscreen
and so on.....
Hope that can help.