Forum: Graphics and Multimedia Jul 28th, 2009 |
| Replies: 8 Views: 515 I dunno if there is any linux application to edit FLA files. But you may try using Wine Project (http://www.winehq.org/)to use Windows version of Flash. |
Forum: Graphics and Multimedia Apr 4th, 2009 |
| Replies: 3 Views: 762 Could you post the link to web page or some code to which we can look and solve. Chances are slim for getting problem solved just by the information you have given. |
Forum: Graphics and Multimedia Jun 16th, 2008 |
| Replies: 7 Views: 1,314 use getURL() (http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary377.html) function. Use this function ion layer action panel of last frame. |
Forum: Graphics and Multimedia Jun 12th, 2008 |
| Replies: 5 Views: 1,353 Then this would work:
movieclipname.onRollOver = function(){
stop();
}
I removed this because if you use that it will stop the clip playing inside that movie clip will stop, not the... |
Forum: Graphics and Multimedia Jun 11th, 2008 |
| Replies: 5 Views: 1,353 Create a layer over the tween if both exist in same layer. Otherwise if would be simple. Posy if I not very clear.
on (rollOver) {
_movieClipName.stop();
} |
Forum: Graphics and Multimedia Jun 11th, 2008 |
| Replies: 1 Views: 841 If you want a hyperlink to another webpage tryout getURL() (http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary377.html). Otherwise for another frame try... |
Forum: Graphics and Multimedia Mar 19th, 2008 |
| Replies: 2 Views: 1,162 Well, don't keep height and width attribute empty. It will surely result into undefined behavior. |
Forum: Graphics and Multimedia Nov 8th, 2007 |
| Replies: 2 Views: 1,358 Giving you an idea how to do it. Try it, if encounter any problem post here with your AS. Create a new layer in root. Don't insert any frame except the first. Select the only and the first frame and... |
Forum: Graphics and Multimedia Jun 14th, 2007 |
| Replies: 3 Views: 5,793 I dont whether its in other versions but there is sample jukebox in sample apps in MX 2004. That would give you a drift.
You see that's not a big deal. You have two option, use XML or PHP. You... |
Forum: Graphics and Multimedia Oct 22nd, 2006 |
| Replies: 3 Views: 10,754 In the last keyframe of your movie, write following code in action panel:
getURL("http://www.domain.com/index.html"); |