frames with flash

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sagi

    frames with flash

    i got an html file with flash embeded in it.
    the flash file load with parameters like this:

    <OBJECT id="myFlash"
    codeBase=http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,29,0
    height=250 width=740 classid=clsid:D 27CDB6E-AE6D-11cf-96B8-444553540000>
    <PARAM NAME="_cx" VALUE="19579">
    <PARAM NAME="_cy" VALUE="6615">
    <PARAM NAME="FlashVars " VALUE="">
    <PARAM NAME="Src" VALUE="up.swf">
    <PARAM NAME="volumeOn" VALUE="0">
    <PARAM NAME="Movie" VALUE="up.swf">
    <PARAM NAME="WMode" VALUE="Window">
    <PARAM NAME="Play" VALUE="-1">
    <PARAM NAME="Loop" VALUE="-1">
    <PARAM NAME="Quality" VALUE="High">
    <PARAM NAME="SAlign" VALUE="">
    <PARAM NAME="Menu" VALUE="-1">
    <PARAM NAME="Base" VALUE="">
    <PARAM NAME="AllowScri ptAccess" VALUE="always">
    <PARAM NAME="Scale" VALUE="ShowAll" >
    <PARAM NAME="DeviceFon t" VALUE="0">
    <PARAM NAME="EmbedMovi e" VALUE="0">
    <PARAM NAME="BGColor" VALUE="">
    <PARAM NAME="SWRemote" VALUE="">
    <PARAM NAME="MovieData " VALUE="">
    <PARAM NAME="SeamlessT abbing" VALUE="1">
    <embed src="up.swf" quality="high"
    pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
    type="applicati on/x-shockwave-flash" width="740" height="250">
    </embed>
    one of the parameters is volumeOn and when the file is loading i need to
    check the left frame for:
    if (parent.leftSou nd.kavimLeft==0 ){
    if yes the volumeOn value should be 0
    else
    the volumeOn value should be 1

    how can i do it?
    i tried with document .write but it didn't work.

    please help


  • Sagi

    #2
    Re: frames with flash

    i tried to use somthing like that and i was sure it would work, but is it
    work only with netscape?
    <HR WIDTH="&{barWid th};%" ALIGN="LEFT">

    sagi


    "Sagi" <sagi@schieber. net> wrote in message
    news:429484fc@n ews.bezeqint.ne t...[color=blue]
    >i got an html file with flash embeded in it.
    > the flash file load with parameters like this:
    >
    > <OBJECT id="myFlash"
    > codeBase=http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,29,0
    > height=250 width=740 classid=clsid:D 27CDB6E-AE6D-11cf-96B8-444553540000>
    > <PARAM NAME="_cx" VALUE="19579">
    > <PARAM NAME="_cy" VALUE="6615">
    > <PARAM NAME="FlashVars " VALUE="">
    > <PARAM NAME="Src" VALUE="up.swf">
    > <PARAM NAME="volumeOn" VALUE="0">
    > <PARAM NAME="Movie" VALUE="up.swf">
    > <PARAM NAME="WMode" VALUE="Window">
    > <PARAM NAME="Play" VALUE="-1">
    > <PARAM NAME="Loop" VALUE="-1">
    > <PARAM NAME="Quality" VALUE="High">
    > <PARAM NAME="SAlign" VALUE="">
    > <PARAM NAME="Menu" VALUE="-1">
    > <PARAM NAME="Base" VALUE="">
    > <PARAM NAME="AllowScri ptAccess" VALUE="always">
    > <PARAM NAME="Scale" VALUE="ShowAll" >
    > <PARAM NAME="DeviceFon t" VALUE="0">
    > <PARAM NAME="EmbedMovi e" VALUE="0">
    > <PARAM NAME="BGColor" VALUE="">
    > <PARAM NAME="SWRemote" VALUE="">
    > <PARAM NAME="MovieData " VALUE="">
    > <PARAM NAME="SeamlessT abbing" VALUE="1">
    > <embed src="up.swf" quality="high"
    > pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
    > type="applicati on/x-shockwave-flash" width="740" height="250">
    > </embed>
    > one of the parameters is volumeOn and when the file is loading i need to
    > check the left frame for:
    > if (parent.leftSou nd.kavimLeft==0 ){
    > if yes the volumeOn value should be 0
    > else
    > the volumeOn value should be 1
    >
    > how can i do it?
    > i tried with document .write but it didn't work.
    >
    > please help
    >[/color]


    Comment

    Working...