It is possible to make the audio play automatically and hide the player itself. However it requires you to change the code that operates the player. Our system by default hides you from the code and creates it automatically when you use our options to add the audio file.
First you need to add the sound file to your
site. Full instructions can be found at
Adding Sound Files | Create a website with a website creator
The standard code for the audio looks like this:
<embed width="270"
height="40"
loop="false"
autostart="0"
src="
http://www.yourwebsite.com/shared/im...dio_Track.aiff">
</embed>
The bold portion is an example of the file name of the audio you would have uploaded. The other text creates the settings for the player.
To change the settings first add the player to the page using our system, as you have done already. Then click ‘Show HTML’ in the editor bar on the page. This will display the code that operates the page. Look for the code within the page which will be the same as above.
To make the player start automatically change the text next to where it says autostart from”0” to “true”
After this line in the code add the text hidden="true". This will hide the player from view.
Below is an example of what the code will look like once the player has been hidden and is set to autostart.
<embed width="270"
height="40"
loop="false"
autostart="true"
hidden="true"
src="http://www.reason8.com/shared/images/content/bus_36820/music/1_Audio_Track.aiff">
</embed>
After this line in the code add the text hidden="true". This will hide the player from view.
Be careful when changing the code not to remove any of the other text or symbols. Each character in the code is essential to make it work. Even the removal of a character such as a “ will prevent the player from working.
We hope this is helpful,
Reason8 Support