Your comments

Ian, you are collaborator already
I removed "superwire" parameter from "play" action and now it works fine:

<action name="MAINWIRE">
<play action="start-music" target="../.."/>
<play action="CLOSE" target="../.." />
</action>


That's strange. I'm using "superwire" parameters in my other multiwire app and it works.
play/stop audio in subwire works fine. no option for pause, but I hope will be available in feature versions of WIRE. start/stop audio from subwire to main wire is not working.
Yes Ian, I did exactly as you wrote. I'll try to move content from main wire to subwire and use main wire only for load and unload subwires. I'll inform about results.
It doesn't help. fusebox crushes..
Thank Ian!

It works now for one WIRE file. But when I'm trying to close subwire and start music in main wire, fusebox crushes. I think it can't find "start-music" action when returning from subwire. Here is the code:

from main.wire:


<main>
<image name="subwire" alias="SUB" source="images/click.png" xpos="100" ypos="100" onclickup="SCENE1"/>

<include name="scene" alias="SCENE" width="100%" height="100%" background="#000000" alpha="0"></include>

</main>
<actions>
<action name="initialize" oninit="yes">
<play action="start-music" />
<action>

<action name="music">
<sound action="_action" source="_source" type="_type" />
<play action="music" _action="_action" _source="_source" _type="_type" delay="125" />
</action>
<action name="stop-music">
<play action="music" _action="stop" _source="sound/s1_music" _type="mp3" />
</action>
<action name="start-music">
<play action="music" _action="start" _source="sound/s1_music" _type="mp3" />
</action>

<action name="SCENE1">
<play action="stop-music" />
<load file="scene1.wire" wirename="scene1" target="SCENE" />
<alpha value="1" time=".5" target="SCENE" />
</action>

<action name="CLOSE-SCENE1">
<sync>
<unload delay=".1" />
<alpha value="0" time=".5" />
</sync>
</action>

</actions>



for subwiere scene1.wire:


<main>
<image name="mainwire" alias="MAIN" source="images/click.png" xpos="100" ypos="100" onclickup="MAINWIRE"/>

</main>
<actions>

<action name="MAINWIRE">
<play action="CLOSE-SCENE1" superwire="yes" target="../.." />
</action>

</actions>


if I put "play action="start-music" " somewhere in CLOSE-SCENE1 or MAINWIRE actions, fusebox crushes when executing it.
Thanks Ian! It works now.

I was doing the same but using "sync" and it was not working as I expected.
I have the same problem. the code above doesn't seem to be working. It produces a lot of sound streams and crushes application. I need background sound loop in my app but can't figure out how to do it...