To elaborate, load the mp3 player in a thin top frame (or bottom) and your wordpress site in the main frame.
Main Topics
Browse All TopicsI'm trying to get my flash mp3 player to continuously play the same song across all pages in my site while the user is browsing or clicking links.
I'd prefer to use Ajax instead of frames but my site in built in wordpress and not sure how to do this or if its even possible? Would it be possible in javascript or java OR is there an actual flash mp3 player that can do this (I'm willing to purchase a new one if theres one out there)? Also I tried using an iframe already but didnt seem to work properly - its keeps refreshing the song each time the users browsers to a new page.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
The frameset would have to be index.php and call the wordpress index file from the main frame. If your wordpress installation is in the root directory (not /blog) this could be tricky.
You can instruct apache to look for an alternative to index.php as your default by editing your httpd.conf file and editing the DirectoryIndex value
DirectoryIndex index.html main.php index.php
will look for index.html first, then main.php and then index.php. So you can name your frameset main.php and then load index.php into that.
Keep in mind that using frames causes usability problems. The major one that would keep me from doing this is the inability to easily bookmark your pages.
Another alternative would be to add target="_blank" to all the links on your main page so any clicks open in a new tab. That will keep your mp3 player playing in the background, but you will lose the ability to control it from internal site pages.
Business Accounts
Answer for Membership
by: gwkgPosted on 2009-01-20 at 15:42:42ID: 23425586
I think you'll need to use old fashioned frames to accomplish this. Otherwise, you won't be able to stop the player from reloading.
Your other option would be to launch it in a popup window.