Playing a Window Media Player's playlist in Excel

JulianChen

New Member
Joined
Dec 15, 2016
Messages
2
I have an Excel file embedded Window Media Player Control using a pivot table slicer to populate the selected files on column A starting cell "A33". I also wrote a VBA script as follows in a hope to play the file in the list one after another.
Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
Range("A33").Select
Do While Not IsEmpty(ActiveCell)
Text1 = ActiveCell.Value
WindowsMediaPlayer1.URL = Text1
WindowsMediaPlayer1.Controls.Play
Selection.Offset(1, 0).Select
Loop
End Sub

Unfortunately, after running through the loop WindowMediaPlayer1 just played the last one from the list. Is there anyone could spare some time to take a look at this case and help me fix it? I would appreciate it.
Best regards,
Julian Chen
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)

Forum statistics

Threads
1,213,551
Messages
6,114,273
Members
448,559
Latest member
MrPJ_Harper

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top