Flash Help

MORE TOPS
1715 views | 5 replies
Peter
Anytime you have Flash related problems, don't hesitate to ask for help from you fellow flashers. "What goes around comes around", so help and get help whenever you need it.
Posted on Aug 18, 2008 | Reply | Reply with Quote | Send PM | Report
VKeyser
Do I have to have a flash authoring software to use the handwriting animation tool? I probably should have asked BEFORE I bought it!

Is there any other way to use it? I can't open an .FLA file.

Thanks for any help,
Victoria
Posted on Oct 12, 2008 | Reply | Reply with Quote | Send PM | Report
hades
Maybe you have the wrong version of Flash.
Posted on Oct 13, 2008 | Reply | Reply with Quote | Send PM | Report
tylerk
I am having a huge flash problem. I would like to run swf's instead of jpg's on an xml flash slideshow, when I update the xml file and play the slideshow back, the swf have already played by the time the slide gets there. Is there a way to fix this problem and have the swf animation start once the slide gets there? Like an actionscript I can add to the slideshows, etc? I need this for a client and can't figure it out.

Thanks in advance and if you need any flash help:

tyler_kraupp@yahoo.com
Posted on Jan 7, 2009 | Reply | Reply with Quote | Send PM | Report
jonnyc
Hi

I want a flash animation of an Xbox achievement to use as an incoming test message alert for my mobile phone.

I found this site that lets you create an achievement but after spending hours trying to figure out how to download it I am now stuck.

The site is

http://www.justachieveit.com/

I want the text alert to say " 10G - Received a text message"

I can embed the animation on another forum by copying the code underneath the achievement but it stays as code when I try and embed it here

<embed swliveconnect="true" allowscriptaccess="samedomain" width="424" height="76" src="http://www.justachieveit.com/justachieveit2.swf?d=Received+a+text+message&gs=10&s=y" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>

Please any help would be greatly appreciated.

I want the clip to be in MP4 format eventually to put on my mobile

TIA
Posted on Jan 14, 2009 | Reply | Reply with Quote | Send PM | Report
asbleo1981
Dear Following is the code for Scrol Text Pane but when the scroll text height is greater than 1700 pixel it does not show the text after 1700 pixel inside it.

function dragging()
{
delete mcScroll.onEnterFrame;
mcScroll.onEnterFrame = function ()
{
procentDragger = Math.round(mcDragger._y / draggerStep);
positionScroll = -Math.floor(deltaScroll * procentDragger / 100);
mcScroll._y = mcScroll._y + (positionScroll - mcScroll._y) / speed;
if (Math.abs(positionScroll - mcScroll._y) < 1)
{
mcScroll._y = positionScroll;
} // end if
};
} // End of the function
function noDragging()
{
if (positionScroll < scrollEndY)
{
positionScroll = scrollEndY;
} // end if
if (positionScroll > scrollStartY)
{
positionScroll = scrollStartY;
} // end if
delete mcScroll.onEnterFrame;
mcScroll.onEnterFrame = function ()
{
procentScroll = Math.round(mcScroll._y / scrollStep);
positionDragger = -Math.floor(draggingHeigth * procentScroll / 100);
mcDragger._y = mcDragger._y + (positionDragger - mcDragger._y) / speed;
mcScroll._y = mcScroll._y + (positionScroll - mcScroll._y) / speed;
if (Math.abs(positionScroll - mcScroll._y) < 1)
{
mcScroll._y = ositionScroll;
delete this.onEnterFrame;
} // end if
};
} // End of the function
mcScroll.setMask(maskScroll);
var dragX = mcDragger._x;
var topY = mcDragger._y;
var positionDragger = topY;
var draggingHeigth = mcBgrDragger._height - mcDragger._height + 7;
var bottomY = mcBgrDragger._y + draggingHeigth;
var scrollStartY = mcScroll._y;
var positionScroll = mcScroll._y;
var scrollEndY = scrollStartY - mcScroll._height + mcBgrDragger._height;
var deltaScroll = scrollStartY - scrollEndY;
var scrollStep = deltaScroll / 100;
var draggerStep = draggingHeigth / 100;
var speed = 6;
var deltaMouseWheel = 8;
var deltaBtn = 20;
mcDragger.onPress = function ()
{
this.startDrag(false, dragX, topY, dragX, bottomY);
dragging();
};
mcDragger.onRelease = mcDragger.onReleaseOutside = function ()
{
this.stopDrag();
};
wheelMover = new Object();
wheelMover.onMouseWheel = function (mover)
{
if (maskScroll.hitTest(_root._xmouse, _root._ymouse, false))
{
positionScroll = positionScroll + mover * deltaMouseWheel;
noDragging();
} // end if
};
Mouse.addListener(wheelMover);
btnBottom.onPress = function ()
{
onEnterFrame = function ()
{
positionScroll = positionScroll - deltaBtn;
noDragging();
};
};
btnBottom.onRelease = btnBottom.onReleaseOutside = function ()
{
delete onEnterFrame;
};
btnTop.onPress = function ()
{
onEnterFrame = function ()
{
positionScroll = positionScroll + deltaBtn;
noDragging();
};
};
btnTop.onRelease = btnTop.onReleaseOutside = function ()
{
delete onEnterFrame;
};
Posted on Jul 9, 2009 | Reply | Reply with Quote | Send PM | Report