Html codes for a flash and a quicktime movie

I'm building a new webpage and I want to put a flash and a quicktime movie in every page......now that the new iWeb has the html snippet option I was wondering if there is anyway of embeding the movies with html code in a way that I just have to replace the movie file instead of putting the movies in every page all over again every time I want to update the site
Thanks

Code for Flash inclusion is here: http://artotems.com/test.aspx as well as many other examples.
It's intended for PC OL users but can be used for any site with HTML access. There are many clear examples on the site. I know I wrote them.
Mac faithful, don't have a cow. }:- It's a complex world. I use a MAC as well. I'm on it now.
MAC site: http://web.mac.com/catucker/InsideOutside/Blog/Blog.html
Have Fun!

Similar Messages

  • HTML Code for Full Website and Not Mobile. Site

    A frustration with iPhone browsers is that they force you to view the mobile website, as oppose to the full website, if a mobile site exists. Unfortunately, the mobile sites often do not provide the services the full sites do.
    Is there HTML coding that can be added to a link to get the iPhone to the full site?

    The sites that are directing you to a mobile site is using HTML code to do so. What you really want is for those site to NOT have code redirecting you to a mobile site.
    Many mobile website have a link on their mobile site that takes you to the full site. A good website developer might have the site place a cookie in your Safari that tells their site you prefer to visit the full site. After tapping on that link, the next time you visit the site you will most likely not be directed to the mobile site.
    But whether or not a redirect happens is the Perdue of the website developer.
    Try an alternate browser. Some, like Atomic Web, have a settings area where you can select the type of browser you are using. I have mine set to Internet Explorer. atomic Web then fools the website into thinking I'm on a computer instead of a mobile device and I'm never directed to a mobile site.

  • Help with html code for displaying flash animation

    hi all,
    i'm new to the forums :)
    not sure if this is the correct section or not.
    i run a small web based community for xboxlive players and i
    am trying to add an interactive flash file into a block on the main
    portal page
    What
    the file should do- link to sample file
    link to swf
    file- link to actual flash file
    homepage - link to portal
    homepage where the flash file needs to be, if you scroll all the
    way down the bottom of the page you will se it sort of works but im
    stumped as to how to get the full animation to show properly ?
    any help would be most appreciated.
    cheers

    hard to say just what the issue is here, since the file
    operates normally in other embeds - I guessing that it has
    something to do with your BB settings somewhere.

  • Help with some html code for flash site!

    Got this site>
    http:/www.thedesignport.com
    Site works great! everything is uploaded! What I cant seem to
    get workning is the html code to add a description under the title
    of the website in a google search? Goto google enter "topanga
    mountain school" I'm top spot on the second page but with NO
    description?? have a look at the html code for
    http://www.thedesignport.com
    Have I gone wrong somewhere?? But I've found if you put
    "topanga mountain school pdf" into google ( I have three pdf's on
    the site) My site is Second on the search with a DESCRIPTION of the
    pdf's under the site name?? I dont get it?? Any help would be
    great!

    You're not getting any help here because this is the forum for discussions of the Community Help Client application and Help system in general. For CSS questions, you should probably try something like the Dreamweaver forum.

  • Code for a Flash carousal

    Hi,
    Looking for help to fix code for a Flash carousal.
    I lost all my original files in a major hard drive crash. (no
    backup, I learned). I’m now trying to redo the carousel.
    My original site contained a tooltip and a icon.xml that
    direct the icon click to a web page.
    I have enclosed the Flash code the new carousel I created,
    along with the icon.xml file. I have one web page that works using
    the same XML file
    http://www.susystastebuds.com/CakeZone.html
    At this time I’m unable to get new carousel to work on
    any other page. I guess the Flash code has changed since the
    original one I did. I hope someone is able to provide help as to
    why the new one won’t work.
    When I click on the icon now, it will close all the other
    icons and move up to the left and just stop. Not providing any link
    to another web page.
    If anbody has the same code in action script in script 3 that
    includes the Tooltip and goto url, that would be great.
    The Flash action script is:
    import mx.utils.Delegate;
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    var folder:String = "thumbnails/"; // a folder for thumbnail
    files + an XML file
    var numOfItems:Number;
    var radiusX:Number = 300;
    var radiusY:Number = 40;
    var centerX:Number = Stage.width / 2;
    var centerY:Number = Stage.height / 2;
    var speed:Number = 0.02;
    var perspective:Number = 3;
    var home:MovieClip = this;
    theText._alpha = 0;
    var tooltip:MovieClip =
    this.attachMovie("tooltip","tooltip",10000);
    tooltip._alpha = 0;
    var xml:XML = new XML();
    xml.ignoreWhite = true;
    xml.onLoad = function()
    var nodes = this.firstChild.childNodes;
    numOfItems = nodes.length;
    for(var i=0;i<numOfItems;i++)
    var t = home.attachMovie("item","item"+i,i+1);
    t.angle = i * ((Math.PI*2)/numOfItems);
    t.onEnterFrame = mover;
    t.toolText = nodes.attributes.tooltip;
    t.content = nodes.attributes.content;
    t.icon.inner.loadMovie(nodes.attributes.image);
    t.r.inner.loadMovie(nodes.attributes.image);
    t.icon.onRollOver = over;
    t.icon.onRollOut = out;
    t.icon.onRelease = released;
    function over()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sound2");
    sou.start();
    home.tooltip.tipText.text = this._parent.toolText;
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
    home.tooltip._alpha = 100;
    function out()
    delete home.tooltip.onEnterFrame;
    home.tooltip._alpha = 0;
    function released()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sound3");
    sou.start();
    home.tooltip._alpha = 0;
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    t.xPos = t._x;
    t.yPos = t._y;
    t.theScale = t._xscale;
    delete t.icon.onRollOver;
    delete t.icon.onRollOut;
    delete t.icon.onRelease;
    delete t.onEnterFrame;
    if(t != this._parent)
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,t._xscale,0,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,t._yscale,0,1,true);
    var tw3:Tween = new
    Tween(t,"_alpha",Strong.easeOut,100,0,1,true);
    else
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,t._xscale,100,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,t._yscale,100,1,true);
    var tw3:Tween = new
    Tween(t,"_x",Strong.easeOut,t._x,200,1,true);
    var tw4:Tween = new
    Tween(t,"_y",Strong.easeOut,t._y,320,1,true);
    var tw5:Tween = new
    Tween(theText,"_alpha",Strong.easeOut,0,100,1,true);
    theText.text = t.content;
    var s:Object = this;
    tw.onMotionStopped = function()
    s.onRelease = unReleased;
    function unReleased()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sdown");
    sou.start();
    delete this.onRelease;
    var tw:Tween = new
    Tween(theText,"_alpha",Strong.easeOut,100,0,0.5,true);
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    if(t != this._parent)
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,0,t.theScale,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,0,t.theScale,1,true);
    var tw3:Tween = new
    Tween(t,"_alpha",Strong.easeOut,0,100,1,true);
    else
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,100,t.theScale,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,100,t.theScale,1,true);
    var tw3:Tween = new
    Tween(t,"_x",Strong.easeOut,t._x,t.xPos,1,true);
    var tw4:Tween = new
    Tween(t,"_y",Strong.easeOut,t._y,t.yPos,1,true);
    tw.onMotionStopped = function()
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    t.icon.onRollOver = Delegate.create(t.icon,over);
    t.icon.onRollOut = Delegate.create(t.icon,out);
    t.icon.onRelease = Delegate.create(t.icon,released);
    t.onEnterFrame = mover;
    function moveTip()
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    xml.load("icons.xml");
    function mover()
    this._x = Math.cos(this.angle) * radiusX + centerX;
    this._y = Math.sin(this.angle) * radiusY + centerY;
    var s = (this._y - perspective)
    /(centerY+radiusY-perspective);
    this._xscale = this._yscale = s*100;
    this.angle += this._parent.speed;
    this.swapDepths(Math.round(this._xscale) + 100);
    this.onMouseMove = function()
    speed = (this._xmouse-centerX)/10000;
    The XML file is:
    <icons>
    <icon image="icon4.png" tooltip="Baby1" url="
    http://www.susystastebuds.com/BirthdaycakeZone.html"
    />
    <icon image="icon5.png" tooltip="Wedding Anniversary Zone"
    url="
    http://www.susystastebuds.com/AnniversaryCakeZone.html"
    />
    <icon image="icon6.png" tooltip="The Other Zone" url="
    http://www.susystastebuds.com/OtherCakeZone.html"
    />
    <icon image="icon7.png" tooltip="Specialty Zone" url="
    http://www.susystastebuds.com/Specialitys_Zone.html"
    />
    <icon image="icon8.png" tooltip="The Cupcake Zone" url="
    http://www.susystastebuds.com/CupCakeZone.html"
    />
    <icon image="icon9.png" tooltip="Home Page" url="
    http://www.susystastebuds.com/home"
    />
    <icon image="icon2.png" tooltip="Birthday Zone" url="
    http://www.susystastebuds.com/BirthdaycakeZone.html"
    />
    <icon image="icon3.png" tooltip="Wedding Zone" url="
    http://www.susystastebuds.com/Weddingcakezone.html"
    />
    <icon image="icon1.png" tooltip="Cakes Of The Week" url="
    http://www.susystastebuds.com/CakeZone.html"
    />
    <icon image="icon10.png" tooltip="Contact Us" url="
    http://www.susystastebuds.com/CakeZone.html"
    />
    </icons>

    I need the code for a simple PopUp (Frame) with a gif
    as background... Should be called from an applet...
    The following code das some errors !!
    Thanks Felix
    public class SHHcycle extends Frame
    getImage(getDocumentBase(),"Image/SHHlinear.jpg");
    public void paint(Graphics screen);
    {Hi,
    you are using applet methods in a frame. You should either make it an applet or find alternatives.
    http://galileo.spaceports.com/~ibidris/

  • HTML code for embedding QT file

    Hey QuickTimeKirk, I liked yr last answer and liked yr new proposal even better. So can you tell me the HTML code for embedding a looping .mov file on a website?

    Here's a link that describes the html tags for QuickTime files:
    http://docs.info.apple.com/article.html?artnum=61011
    Here's a link that shows a more modern method required by IE on a PC:
    http://developer.apple.com/internet/ieembedprep.html
    The tag for looping is simply loop="true" (embed tag) and param name="loop" value="true" for the object tag.

  • Fixing code for a Flash carousal.

    Hi,
    Looking for help to fix code for a Flash carousal.
    I started my web site 3 years ago with a free version of
    Flash. I have since purchased Web Premium CS3.
    I lost all my original files in a major hard drive crash. (no
    backup, I learned). I’m now trying to redo the carousel.
    My original site contained a tooltip and a icon.xml that
    direct the icon click to a web page.
    I have enclosed the Flash code the new carousel I created,
    along with the icon.xml file. I have one web page that works using
    the same XML file
    http://www.susystastebuds.com/CakeZone.html
    At this time I’m unable to get new carousel to work on
    any other page. I guess the Flash code has changed since the
    original one I did. I hope someone is able to provide help as to
    why the new one won’t work.
    When I click on the icon now, it will close all the other
    icons and move up to the left and just stop. Not providing any link
    to another web page.
    If anbody has the same code in action script in script 3 that
    includes the Tooltip and goto url, that would be great.
    The Flash action script is:
    import mx.utils.Delegate;
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    var folder:String = "thumbnails/"; // a folder for thumbnail
    files + an XML file
    var numOfItems:Number;
    var radiusX:Number = 300;
    var radiusY:Number = 40;
    var centerX:Number = Stage.width / 2;
    var centerY:Number = Stage.height / 2;
    var speed:Number = 0.02;
    var perspective:Number = 3;
    var home:MovieClip = this;
    theText._alpha = 0;
    var tooltip:MovieClip =
    this.attachMovie("tooltip","tooltip",10000);
    tooltip._alpha = 0;
    var xml:XML = new XML();
    xml.ignoreWhite = true;
    xml.onLoad = function()
    var nodes = this.firstChild.childNodes;
    numOfItems = nodes.length;
    for(var i=0;i<numOfItems;i++)
    var t = home.attachMovie("item","item"+i,i+1);
    t.angle = i * ((Math.PI*2)/numOfItems);
    t.onEnterFrame = mover;
    t.toolText = nodes
    .attributes.tooltip;
    t.content = nodes.attributes.content;
    t.icon.inner.loadMovie(nodes
    .attributes.image);
    t.r.inner.loadMovie(nodes.attributes.image);
    t.icon.onRollOver = over;
    t.icon.onRollOut = out;
    t.icon.onRelease = released;
    function over()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sound2");
    sou.start();
    home.tooltip.tipText.text = this._parent.toolText;
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
    home.tooltip._alpha = 100;
    function out()
    delete home.tooltip.onEnterFrame;
    home.tooltip._alpha = 0;
    function released()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sound3");
    sou.start();
    home.tooltip._alpha = 0;
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    t.xPos = t._x;
    t.yPos = t._y;
    t.theScale = t._xscale;
    delete t.icon.onRollOver;
    delete t.icon.onRollOut;
    delete t.icon.onRelease;
    delete t.onEnterFrame;
    if(t != this._parent)
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,t._xscale,0,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,t._yscale,0,1,true);
    var tw3:Tween = new
    Tween(t,"_alpha",Strong.easeOut,100,0,1,true);
    else
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,t._xscale,100,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,t._yscale,100,1,true);
    var tw3:Tween = new
    Tween(t,"_x",Strong.easeOut,t._x,200,1,true);
    var tw4:Tween = new
    Tween(t,"_y",Strong.easeOut,t._y,320,1,true);
    var tw5:Tween = new
    Tween(theText,"_alpha",Strong.easeOut,0,100,1,true);
    theText.text = t.content;
    var s:Object = this;
    tw.onMotionStopped = function()
    s.onRelease = unReleased;
    function unReleased()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sdown");
    sou.start();
    delete this.onRelease;
    var tw:Tween = new
    Tween(theText,"_alpha",Strong.easeOut,100,0,0.5,true);
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    if(t != this._parent)
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,0,t.theScale,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,0,t.theScale,1,true);
    var tw3:Tween = new
    Tween(t,"_alpha",Strong.easeOut,0,100,1,true);
    else
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,100,t.theScale,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,100,t.theScale,1,true);
    var tw3:Tween = new
    Tween(t,"_x",Strong.easeOut,t._x,t.xPos,1,true);
    var tw4:Tween = new
    Tween(t,"_y",Strong.easeOut,t._y,t.yPos,1,true);
    tw.onMotionStopped = function()
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    t.icon.onRollOver = Delegate.create(t.icon,over);
    t.icon.onRollOut = Delegate.create(t.icon,out);
    t.icon.onRelease = Delegate.create(t.icon,released);
    t.onEnterFrame = mover;
    function moveTip()
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    xml.load("icons.xml");
    function mover()
    this._x = Math.cos(this.angle) * radiusX + centerX;
    this._y = Math.sin(this.angle) * radiusY + centerY;
    var s = (this._y - perspective)
    /(centerY+radiusY-perspective);
    this._xscale = this._yscale = s*100;
    this.angle += this._parent.speed;
    this.swapDepths(Math.round(this._xscale) + 100);
    this.onMouseMove = function()
    speed = (this._xmouse-centerX)/10000;
    The XML file is:
    <icons>
    <icon image="icon4.png" tooltip="Baby1" url="
    http://www.susystastebuds.com/BirthdaycakeZone.html"
    />
    <icon image="icon5.png" tooltip="Wedding Anniversary Zone"
    url="
    http://www.susystastebuds.com/AnniversaryCakeZone.html"
    />
    <icon image="icon6.png" tooltip="The Other Zone" url="
    http://www.susystastebuds.com/OtherCakeZone.html"
    />
    <icon image="icon7.png" tooltip="Specialty Zone" url="
    http://www.susystastebuds.com/Specialitys_Zone.html"
    />
    <icon image="icon8.png" tooltip="The Cupcake Zone" url="
    http://www.susystastebuds.com/CupCakeZone.html"
    />
    <icon image="icon9.png" tooltip="Home Page" url="
    http://www.susystastebuds.com/home"
    />
    <icon image="icon2.png" tooltip="Birthday Zone" url="
    http://www.susystastebuds.com/BirthdaycakeZone.html"
    />
    <icon image="icon3.png" tooltip="Wedding Zone" url="
    http://www.susystastebuds.com/Weddingcakezone.html"
    />
    <icon image="icon1.png" tooltip="Cakes Of The Week" url="
    http://www.susystastebuds.com/CakeZone.html"
    />
    <icon image="icon10.png" tooltip="Contact Us" url="
    http://www.susystastebuds.com/CakeZone.html"
    />
    </icons>

    Hi,
    Looking for help to fix code for a Flash carousal.
    I started my web site 3 years ago with a free version of
    Flash. I have since purchased Web Premium CS3.
    I lost all my original files in a major hard drive crash. (no
    backup, I learned). I’m now trying to redo the carousel.
    My original site contained a tooltip and a icon.xml that
    direct the icon click to a web page.
    I have enclosed the Flash code the new carousel I created,
    along with the icon.xml file. I have one web page that works using
    the same XML file
    http://www.susystastebuds.com/CakeZone.html
    At this time I’m unable to get new carousel to work on
    any other page. I guess the Flash code has changed since the
    original one I did. I hope someone is able to provide help as to
    why the new one won’t work.
    When I click on the icon now, it will close all the other
    icons and move up to the left and just stop. Not providing any link
    to another web page.
    If anbody has the same code in action script in script 3 that
    includes the Tooltip and goto url, that would be great.
    The Flash action script is:
    import mx.utils.Delegate;
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    var folder:String = "thumbnails/"; // a folder for thumbnail
    files + an XML file
    var numOfItems:Number;
    var radiusX:Number = 300;
    var radiusY:Number = 40;
    var centerX:Number = Stage.width / 2;
    var centerY:Number = Stage.height / 2;
    var speed:Number = 0.02;
    var perspective:Number = 3;
    var home:MovieClip = this;
    theText._alpha = 0;
    var tooltip:MovieClip =
    this.attachMovie("tooltip","tooltip",10000);
    tooltip._alpha = 0;
    var xml:XML = new XML();
    xml.ignoreWhite = true;
    xml.onLoad = function()
    var nodes = this.firstChild.childNodes;
    numOfItems = nodes.length;
    for(var i=0;i<numOfItems;i++)
    var t = home.attachMovie("item","item"+i,i+1);
    t.angle = i * ((Math.PI*2)/numOfItems);
    t.onEnterFrame = mover;
    t.toolText = nodes
    .attributes.tooltip;
    t.content = nodes.attributes.content;
    t.icon.inner.loadMovie(nodes
    .attributes.image);
    t.r.inner.loadMovie(nodes.attributes.image);
    t.icon.onRollOver = over;
    t.icon.onRollOut = out;
    t.icon.onRelease = released;
    function over()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sound2");
    sou.start();
    home.tooltip.tipText.text = this._parent.toolText;
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
    home.tooltip._alpha = 100;
    function out()
    delete home.tooltip.onEnterFrame;
    home.tooltip._alpha = 0;
    function released()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sound3");
    sou.start();
    home.tooltip._alpha = 0;
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    t.xPos = t._x;
    t.yPos = t._y;
    t.theScale = t._xscale;
    delete t.icon.onRollOver;
    delete t.icon.onRollOut;
    delete t.icon.onRelease;
    delete t.onEnterFrame;
    if(t != this._parent)
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,t._xscale,0,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,t._yscale,0,1,true);
    var tw3:Tween = new
    Tween(t,"_alpha",Strong.easeOut,100,0,1,true);
    else
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,t._xscale,100,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,t._yscale,100,1,true);
    var tw3:Tween = new
    Tween(t,"_x",Strong.easeOut,t._x,200,1,true);
    var tw4:Tween = new
    Tween(t,"_y",Strong.easeOut,t._y,320,1,true);
    var tw5:Tween = new
    Tween(theText,"_alpha",Strong.easeOut,0,100,1,true);
    theText.text = t.content;
    var s:Object = this;
    tw.onMotionStopped = function()
    s.onRelease = unReleased;
    function unReleased()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sdown");
    sou.start();
    delete this.onRelease;
    var tw:Tween = new
    Tween(theText,"_alpha",Strong.easeOut,100,0,0.5,true);
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    if(t != this._parent)
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,0,t.theScale,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,0,t.theScale,1,true);
    var tw3:Tween = new
    Tween(t,"_alpha",Strong.easeOut,0,100,1,true);
    else
    var tw:Tween = new
    Tween(t,"_xscale",Strong.easeOut,100,t.theScale,1,true);
    var tw2:Tween = new
    Tween(t,"_yscale",Strong.easeOut,100,t.theScale,1,true);
    var tw3:Tween = new
    Tween(t,"_x",Strong.easeOut,t._x,t.xPos,1,true);
    var tw4:Tween = new
    Tween(t,"_y",Strong.easeOut,t._y,t.yPos,1,true);
    tw.onMotionStopped = function()
    for(var i=0;i<numOfItems;i++)
    var t:MovieClip = home["item"+i];
    t.icon.onRollOver = Delegate.create(t.icon,over);
    t.icon.onRollOut = Delegate.create(t.icon,out);
    t.icon.onRelease = Delegate.create(t.icon,released);
    t.onEnterFrame = mover;
    function moveTip()
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    xml.load("icons.xml");
    function mover()
    this._x = Math.cos(this.angle) * radiusX + centerX;
    this._y = Math.sin(this.angle) * radiusY + centerY;
    var s = (this._y - perspective)
    /(centerY+radiusY-perspective);
    this._xscale = this._yscale = s*100;
    this.angle += this._parent.speed;
    this.swapDepths(Math.round(this._xscale) + 100);
    this.onMouseMove = function()
    speed = (this._xmouse-centerX)/10000;
    The XML file is:
    <icons>
    <icon image="icon4.png" tooltip="Baby1" url="
    http://www.susystastebuds.com/BirthdaycakeZone.html"
    />
    <icon image="icon5.png" tooltip="Wedding Anniversary Zone"
    url="
    http://www.susystastebuds.com/AnniversaryCakeZone.html"
    />
    <icon image="icon6.png" tooltip="The Other Zone" url="
    http://www.susystastebuds.com/OtherCakeZone.html"
    />
    <icon image="icon7.png" tooltip="Specialty Zone" url="
    http://www.susystastebuds.com/Specialitys_Zone.html"
    />
    <icon image="icon8.png" tooltip="The Cupcake Zone" url="
    http://www.susystastebuds.com/CupCakeZone.html"
    />
    <icon image="icon9.png" tooltip="Home Page" url="
    http://www.susystastebuds.com/home"
    />
    <icon image="icon2.png" tooltip="Birthday Zone" url="
    http://www.susystastebuds.com/BirthdaycakeZone.html"
    />
    <icon image="icon3.png" tooltip="Wedding Zone" url="
    http://www.susystastebuds.com/Weddingcakezone.html"
    />
    <icon image="icon1.png" tooltip="Cakes Of The Week" url="
    http://www.susystastebuds.com/CakeZone.html"
    />
    <icon image="icon10.png" tooltip="Contact Us" url="
    http://www.susystastebuds.com/CakeZone.html"
    />
    </icons>

  • Html code for bc captcha

    Hi
    I want to add a captcha or image verfication to my contact form that I have used from the Muse widget library but I can't find the html code for this, what I can get is the html code for e-mail, captcha and submit? Can anyone help, thanks

    Thanks Liam. I am a newbie at all of this and decided to use the widget contact form in muse which has an image verification module but when I test it I get a message that it has to be supported business catalyst captcha module so thought there was a html code for it.
    Thanks for coming back to me so quickly

  • Html-code for showing cover of current issue?

    Has anyone an example of a simple html-code for showing the latest issue?
    All I need is the adress to the image-file.

    There was a problem like that in the WYSIWYG before 7.0.2 as
    described in Using RH7 on my site. However, that was local and the
    patch fixed it.
    I had a completely different problem a while back but wonder
    if the solution might work. Speak to your web guys and suggest
    this.
    Add the AddDefaultCharset utf-8 directive to either the
    Apache config or the site .htaccess file
    It's a long shot. I don't know what other effects it might
    have on your server but the web guys should.

  • HTML code for region position 3

    Hi All,
    Can i get the HTML code for display point: Region position 3.
    My requirement is, i have to apply some background color to all the regions which are placed in region position 3.

    Chandran wrote:
    Hi All,
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should normally include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    For layout and visual formatting issues the APEX version, browser, theme, page and region template, and region/item details are always required.
    Can i get the HTML code for display point: Region position 3.
    My requirement is, i have to apply some background color to all the regions which are placed in region position 3.Region position 3 is determined by the location of the substitution string<tt>#REGION_POSITION_03#</tt> substitution string in the page template. This will vary by version, theme and page template, which is information you have not provided.
    Regions located in region position 3 will probably have existing background colours determined by their region templates. Is the requirement to apply a background colour to individual regions, or a background colour underlying all of the regions?

  • Where is the HTML-Code for the Dashboard-Links defined? How to edit it?

    Hello everyone,
    I'd like to know where HTML-Code for the Dashboard-Links (My Dashboard, insert random Dashboardname here, ...) is defined.
    Inspecting HTML-Code via the browser, i'll got the following HTML-Tag:
    an <a'' href="...url"... class="CurrentPortal" name="DashboardBannerLink" title="...">Dashboard-name</a''>
    What i know is, that i can modify portalbanner.css and edit the style of those links.
    But thats not what i want, though. I want to modify the html-code itself, for example change the layout of the table etc, to meet our company's corporate design requirements.
    Thats why i tried to find the terms PortalLink and CurrentPortal within the Message-Database (/msgdb).
    Unfortunately, i got no results.
    As a consequence, I believe HTML for those Links is generated by saw.dll internally and therefore can not be edited.
    Now i need someone to prove me wrong ;)
    Thanks in advance,
    Chris
    Edited by: Chris2010 on 16.08.2010 11:11
    -had to edit the html tag, as the code was turned into a clickable link when i posted the thread

    I still didn't find a solution until now, although i checked almost every xml file, that i was able to find.
    At the moment I am sure, that it would be necessary to edit sawm-Parameter "bannerHtml" to meet my requirements. Now, i dont know whether its possible to edit it or not, since those saw-parameters do not seem to be documented on the web.
    That's the part, i found in dashboardtemplates.xml (Line: 362)
    <WebMessage name="kuiDashboardBanner" translate="no"><!-- Param bannerHtml --><!-- Param dashboardsURL -->
    <HTML>
    <table class="PortalBanner" width="100%" border="0" cellspacing="0">
    <tr>
    <td class="PortalLogo">
    "<\a href="@{dashboardsURL}">
    <img class="PortalLogoImage" border="0" src="fmap:Portal/PortalLogo.gif"/></a>
    "</td>
    <td class="PortalTop" style="vertical-align:top">
    <sawm:param name="bannerHtml"/></td>
    </tr></table>
    <sawm:messageRef name="kuiDashboardMainBar"><sawm:setParam name="product">dashboard</sawm:setParam></sawm:messageRef>
    </HTML></WebMessage>
    -----

  • [ask] html code for linksys wvc200

    guys, i have project for distance learning site. in this project, there is live streaming using ip camera when the lecturer was teach student. i have bought ip camera linksys wvc200, to make this online and become live streaming site, i must have HTML source code for this to place at php. do you guys have the HTML CODE for this?? really urgent, i need it.. please help me, because i am newbie..

    Hi ekopamungkas and welcome to the Cisco Home Community!
    The WVC200 is now being handled by the Cisco Small Business Support Community.
    For discussions about this product, please go here.
    https://supportforums.cisco.com/community/netpro/small-business
    The Search Function is your friend.... and Google too.
    How to Secure your Network
    How to Upgrade Routers Firmware
    Setting-Up a Router with DSL Internet Service
    Setting-Up a Router with Cable Internet Service
    How to Hard Reset or 30/30/30 your Router

  • How to get the embed html code for my webpage so I can use it on eBay listings?

    Hi, I already created a Muse webpage, but when i export it as html I get a code that is not compatible with eBay because eBay won't allow "cookies" nor "iFrame" on a listing.. is there a way around so I can get a working html code for eBay? I'm new at this, I don't have coding knowledge. I've never use Dreamweaver either, Muse is appealing since is user friendly, so any good explanation would be greatly appreciated. Thank you.

    Hi, muse is an application made for create websites without coding skills, not to replace any possible use of HTML. If you would like to adapt your code for other uses, like CMS integration, Newsletters, build mobile apps, and other, you will need some coding skills.

  • GETTING HTML CODE FOR A SLIDESHOW

    How can i get HTML CODE for a slideshow recently created using Photoshop Elements 8.  I also added AUDIO both from my own audio folder AND from PE8 audio selections.

    What operating system are you using?
    On a windows system, I think you need to use the Share>Online Album in the  PSE 8 Organizer and then save the result to disk to get something with HTML code.
    The standard create slide show only outputs as a pdf or a movie format file.

  • Generating QT html code for blog

    I'd like to generate html code for quicktime audio files to embed on my blog posts. I use blogger. Can I do this? Is quicktime the best/easiest way to go about this? I have the free version of QT, not pro. Thanks

    <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
    codebase=
    http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0
    width="200" height="16">
    <param name="qtsrc" value="sample.mp3" />
    <param name="autoplay" value="true" />
    <embed qtsrc="sample.mp3" autoplay="true" width="200"
    height="16"
    pluginspage="http://www.apple.com/quicktime/download/">
    </embed>
    </object>

Maybe you are looking for