Hi,

after updating to latest beta version, the WP Audio Player appear only as a single instance, the one with blue/red colours.The other one (white and gray) has disappeared.

CommentFileSizeAuthor
img.jpg30.69 KBalex72rm

Comments

domarques’s picture

Here too... :(

delapohl’s picture

Same issue here.

Mascher’s picture

some problem i want to select colour scheme of my players and if i load more than one audiofiles module can create playlist for audioplayer....

visualnotion’s picture

It would be great to have control over the colors from within the module.

Anyway, I had the same problem and dug into the AudioField module and include files to revert back to the original grey player.

To change the Audio Player listed on the AudioField settings page (admin/settings/audiofield)...

  1. Open the audiofield.module file
  2. Copy and paste this <param /> from line #51 to replace the <param /> on line #43:
    <param value="playerID=1&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xFFFFFF&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=' . $base_path . 'sites/all/libraries/player/Sample_Track.mp3" name="FlashVars"/>

To change the Audio Player listed on each node...

  1. Open the audiofield_formatter.inc file.
  2. Copy and paste this <param /> in place of the code on line #19:
    <param value="playerID=2&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xFFFFFF&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=' . $base_path . $element['#item']['filepath'] . '" name="FlashVars"/>

I hope that helps.

tamerzg’s picture

Status: Active » Closed (won't fix)

There should be only one instance of the player. In 1.0 version we added theming functions for each player so its possible to override theming function of wp player and change the color there.