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>

Similar Messages

  • 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 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!

  • 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.

  • Shockwave Flash may be busy or it may have stopped responding error. Can the Mozilla team fix this for Firefox 34?

    Hello people, sometimes I would get the message "Shockwave Flash may be busy or it may have stopped responding". There is no way I can fix this. I have tried Google and they don't show tutorials on how to permanently fix this. What year is this? 2002? Not it's not. It's almost 2015. Can you please fix this for Firefox 34 or newer?

    Shockwave Flash is an Adobe product - it's up to them to fix it. All we can do here at Mozilla Support is offer suggestions that have worked for us and other users.
    Have you tried Adobe Support?
    https://forums.adobe.com/community/flashplayer
    Mozilla is working an a project code named Shumway - http://mozilla.github.io/shumway/ - that will play SWF files and eliminate the for having the Flash Player installed for Firefox.

  • I am trying to update some apps but my ipad wont let me because it wants me to enter the security code for my credit card and I dont want to do that so how do i fix this?

    I am trying to update some apps but my ipad wont let me because it wants me to enter the security code for my credit card and I dont want to do that how can i fix this?

    Try temporarily disabling your firewall and antivirus.

  • How do I change the Version Code in the Flash Android settings for the Android app Market?

    I recently tried to update my app in the Android app market and when I uploaded it I got the following message:
    "The new apk's versionCode (1000000) already exists."
    In the Flash Adnroid settings I changed the version label but that did not help.
    So I have two questions:
    How do I change the Version code in the Flash Android settings? I changed the version number and version label but that did not work.
    What is the difference between the version number and version label?

    I tried that but it did not work. Apparently there is a difference between the version code and version number (which is set in the Android settings). From my research the version label is optional, so there are no problems there.
    This is the what the XML file says:
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <application xmlns="http://ns.adobe.com/air/application/2.6">
      <id>com.company.nameofapp</id>
    //Below is the correct version number, but has no relation to the version code.
      <versionNumber>1.1.0</versionNumber>
      <versionLabel>NewLayout</versionLabel>
      <filename>Name of app</filename>
      <description/>
    I did find this piece of information for Androin version codes. (http://developer.android.com/guide/publishing/versioning.html)  But I don't know how to place it into the xml file without conflicting with other code.
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example.package.name"
          android:versionCode="2"
          android:versionName="1.1">
        <application android:icon="@drawable/icon" android:label="@string/app_name">
        </application>
    </manifest>
    Any other thoughts are much appreciated.

  • Looking for a Flash Coder

    Hello! I'm looking for a Flash Coder/Designer to Create Quantity of 5 Flash Animations which pull dynamic text from a XML File.
    Here's the URL of the type of animation styles we like,
    http://tinyurl.com/38r8wo2
    Our finished animation graphics should have a fun look with easy interchangeable sponsors sponsors like the ones in these examples.
    http://tinyurl.com/249gf5l
    The 2 types of animations we require are, one that will display dynamic polling information, the other will be text scrolling horizontally and vertically in a smooth manor.
    The selected designer will receive the .XML Files which the action script will pull the information from.
    We would like the following animations:
    1) Every time a new Text is added to the external XML file, that text is "SMACKED" on the screen, tiny from the distance to big on the screen, it will streak down the screen until it disappears off the bottom of the screen, this will be in a random manor, the text will have rotation angles of 140degrees. The font can be changed easily, as well as the background graphic. It should also contain a holder for a logo in the lower right hand corner which will jiggle whenever a new TEXT is detected.
    2) Every time a new Text is added to the external XML file, it will jump up from the lower part of the screen and stop at the top of the screen, every time a new text comes in, it will stack below that, bumping the top one up. This will happen infinitely. There should be a holder for a logo in the lower right hand corner, this logo should Blink everytime a new text is detected.
    3) Every time a new Text is detected is should scroll from right to left. In between each new text, a logo should scroll with the text. This scroll should easily be able to switch from right to left, and with logo and no logo.
    4) If possible to create a 3D effect, the actual REAL 3D effect that people use to watch with those RED and BLUE glasses. This text would fly in from the far distance and appear big on the screen, it should use Depth of field so the text appear to be flying out of the screen.
    5) Voting Poll Animation, should match the examples given in the URL.
    Thanks! Budget is about $200 total. If interested please email me [email protected]

    >>looking for a top flash developer with dream
    actionscripting skills
    Isn't everybody these days...
    Wrong place to post this ->
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=38&catid=219

  • TS1646 I'v tried many times to update my applications however, my account can't do it because security code for my card is incorrect note that I'm sure my card details are correct completely so i need help to fix it as much as you can plz. Thnks

    Hi
    I'v tried many times to update my applications however, my account can't do it because security code for my card is incorrect note that I'm sure my card details are correct completely so i need help to fix it as much as you can plz. Thnks

    Look, I understand I still need a card attached to the account. The problem is, it won't accept my card because I only have 87 cents in my bank account right now.
    If I had known there would be so much trouble with the iTunes card, I would have just put the cash in my bank account in the morning instead of buying an iTunes card (I didn't expect the banks to be open on Thanksgiving of course).
    Apple will only accept cards that have a balance. The balance is so small in my account that it won't accept it as a valid card.
    I'm going to have to contact Apple anyway to reset the security questions. That's obvious. Your answers were not exactly helpful. You didn't tell me anything I don't already know, but thanks for trying to be helpful.

  • [svn:fx-trunk] 7765: Fixing up some copyrights, adding copyrights, and fixing up some legal-eese for the Flash Component Kit For Flex.

    Revision: 7765
    Author:   [email protected]
    Date:     2009-06-11 15:58:18 -0700 (Thu, 11 Jun 2009)
    Log Message:
    Fixing up some copyrights, adding copyrights, and fixing up some legal-eese for the Flash Component Kit For Flex.
    Also, updating the MXP to get latest changes to base classes.
    QE Notes: -
    Doc Notes: -
    Bugs: SDK-21670
    Reviewer: No one (just header updates)
    tests: checkintest (seem to fail due to local changes to ScrollBar, which I'm not checking in here)
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21670
    Modified Paths:
        flex/sdk/trunk/frameworks/flash-integration/FlexComponentKit.mxp
        flex/sdk/trunk/frameworks/flash-integration/readme.txt
        flex/sdk/trunk/frameworks/projects/flash-integration/FlexComponentKit.mxi
        flex/sdk/trunk/frameworks/projects/flash-integration/JSFL/Convert Symbol to Flex Component.jsfl
        flex/sdk/trunk/frameworks/projects/flash-integration/JSFL/Convert Symbol to Flex Container.jsfl
        flex/sdk/trunk/frameworks/projects/flash-integration/JSFL/MakeFlexComponent.jsfl
        flex/sdk/trunk/frameworks/projects/flash-integration/readme.txt
        flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/ContainerMovieClip.as
        flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/UIMovieClip.as

  • FOUND A FIX FOR ADOBE FLASH PLAYER 11.9.900.152

    I have Windows 7, 64bit and Internet Explorer 11 installed.  I found the fix for Adobe Flash Player after 2 days of doing everything.  I thought that the fix should be something very easy and it was.  I spent 2 full days doing all kinds of ridiculous things, i.e. uninstalling, reinstalling, restore computer, deactiving XActive, reactivating, changing stuff under internet options, etc.  The problem was Internet Explorer 11 update caused Adobe Flash Player not to work or recognize the flash player, or installing a new router caused it not to work.  Websites kept displaying messages to download Adobe Flash Player when I already did.  There appeared to be a conflict where some videos played and other did not.  Youtube did not work anymore.  All the problems that other people posted under these forums happened to me.  I could not play the games I was playing before, etc.  Anyway, I am NOT a tech person and understand little and almost gave up when by accident I found the fix and EVERYTHING works without rebooting anything, uninstalling or reinstalling etc. as all the people in the forums posted.  Everything was so complicated!!
    THE FIX:  Go to Goodgle Chrome browser.  If you don't have it, download it.  The Adobe Flash Player is included in this browser.  Anyway, at the very top RIGHT HAND SIDE there are lines in a square formation.  Click on that and go to SETTINGS.  Go to very bottom and click on SHOW ADVANCED SETTINGS.  SCROLL DOWN TO THE VERY BOTTOM and click on RESET BROWSER SETTINGS.  After I did that, EVERYTHING WORKED!!!!!!!!!!! Youtube worked, my game worked in BOTH GOOGLE CHROME AND INTERNET EXPLORER 11.  It was like a miracle and  a simple fix.
    I hope I can save some people ALOT of aggravation and frustration.  Adobe should have this fix displayed PROMINENTLY EVERYWHERE if it is indeed this simple.  Let me know if this helps.  All I know is that I had the same issues as everyone else in the forums and now it is all fixed.  I have very limited knowledge, almost none.  It just seemed that something was blocking the videos from coming up.

    Thanks Mike.  I'm not sure what I'm doing but I also re-downloaded the flash player and I got YouTube videos to play again.  I have IE11 that I tried to uninstall (it won't let me) so I had to use a restore point, so videos I noticed in yahoo.ca can't play but I read lots of people having issues with this.  But, by using a restore point, and re-downloading the flash player (a couple of time until it took), I got Youtube and my game back on IE11.  I plan to use Chrome Google though after this experience as everything works there

  • 48 Hours ago I started to upgrade to Mtn Lion on a now 10 day old IMac - 30 minutes ago I got the email with the content code and redeem code for the download from the app store - it said download was happening, but nothing happened for 30 min - FIX IT!

    48 Hours ago I started to upgrade to Mountain Lion on a now 10 day old IMac - 30 minutes ago I got the email with the content code and redeem code for the download from the app store - it said download was happening, but nothing happened for 30 min - HOW DO I (or you) FIX IT!?

    This is a User's Forum, yelling at us won't help. You have 90 days of customer support via telephone. Use them as they can interact with their system and hopefully get you back on track. Otherwise take it to them at the Genius Bar and have them make it good.

  • What Fixed IE8/9 No Flash For Me [Win7 x64]

    Read a lot of posts about people having issues with Flash not working in IE8 (or IE9) after a recent virus cleanup on a client's machine.
    The basics that I tried didn't work;
    -Kill bit didn't exist in the location people outlined in this forum HKLM/Software/microsoft/etc. etc.
    -Uninstall/Reinstall (using both activex install and stand alone, and using uninstaller with or without wiping files in C:\windows\wowsys64\flash)
    -Upgrade IE8 to IE9
    -Malware was already cleaned, all scans kept coming up clean
    -Reset IE settings
    -Probably a few other things!
    What ended up fixing it for me, on a Win7 64-bit machine was deleting this key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\ActiveX Compatibility\{D27CDB6E-AE6D-11CF-96B8-444553540000}
    I didn't see this documented here as a kill bit location, possily because it would only exist on a 64 bit machine, but it indeed solved my issue completely!  Just deleted that key (of course backed it up first) and immediately opened up a page in IE and flash worked flawlessly.
    Hoping this helps save someone the frustration I know these kind of issues can cause.

    Hi, I think you misunderstood my concern. I was not saying that what you found that fixed your client's issue was wrong or not correct. It is something to consider as any Kill-bit is.
    I read the article and commented on it and pointed out it was for FP vs 6 and also the instructions that Microsoft have for setting the Kill-bit. Also how Kill-bits can be set.
    The only reason I even replied to your thread was my concern for users going into the Registry which is risky, especially those that are newbies. That is one of the reasons that Pat has the REG file to remove that Kill-bit, as a safe guard to the user. We stress for anyone to "look" only for that Key and not to DO anything.
    My first reply to your thread was not even to you, it was to another user that asked how to delete that key.
    Concern for the users that come here has always been a priority for me. I've seen many suggestions such as using System Restore for everything except what it is for. Also reformat your HD to fix Flash Player and worse.
    That you found that Key and deleted it is great. Perhaps that Kill-bit Key is being created now for the 64bit OS and if so, that's good to know. I'm glad you posted the info, in spite of my concern for inexperienced users.
    Thanks,
    eidnolb

  • [svn:fx-3.x] 9242: Fix generated code for IFlexModuleFactory. allowInsecureDomain.

    Revision: 9242
    Author:   [email protected]
    Date:     2009-08-12 08:16:10 -0700 (Wed, 12 Aug 2009)
    Log Message:
    Fix generated code for IFlexModuleFactory.allowInsecureDomain.
    Change Security.allowDomain() to Security.allowInsecureDomain().
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-22633
    Reviewer: Alex
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22633
    Modified Paths:
        flex/sdk/branches/3.x/modules/compiler/src/java/flex2/tools/PreLink.java

    Running the script by python2 solves it for me:
    su - mythtv -c "nice -n 19 python2 /usr/bin/tv_grab_nl_py --output ~/listings.xml"
    Best regards,
    Cedric

  • 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.

Maybe you are looking for

  • Maximum message size for download

    Hi - I have a problem in that Mail seems to have trouble downloading anything larger than approx 15mb. I occasionally get sent emails that are up to 30mb in size. They reach my mail server at the ISP without issue - it's just mail that chokes on them

  • CF BUILDER - setup and configuration issues

    Eclipse noob here, please bear with me. On my local dev box I'm running CF8 with the internal web server. Each local "site" is set up as a virtual directory from the jrun-web.xml file in C:\ColdFusion8\wwwroot\WEB-INF\. I've successfully configured C

  • Taking hours to calculate time machine restore data

    Can anyone help! My hard drive on my Mac Book Pro failed. Luckily it was under warranty so Apple came to rescue and fixed it with a new hard drive. I now have to restore 300 gig worth back onto the new hard drive from time machine. I have gone throug

  • TCP/IP connections

    Hello, I need to find which TCP/IP connections were connected to my SAP system at a given time. Could you guide as to how I can detemine that Thanks

  • CustomLoginModule always error "Invalid null input: name"

    Hi All, I'm trying to create a custom LoginModule. I've changed the autorization.xml, created a new login-stack and set the  LoginModuleClassLoaders property. But whatever I do I always get the message "Unknown message (ID = Invalid null input: name)