truetree
Community Beginner
truetree
Community Beginner
Activity
‎Jul 30, 2018
02:24 PM
1 Upvote
I had this problem and was able to resolve it, but not sure if it's the same exact issue. I think one of the layers was corrupt for some reason. I went to the frame it kept stopping on and tested all the layers by shutting off each one individually and then doing a little sample render. I found one adjustment layer with the "bulge" effect on it and shut it off and the render went through.
... View more
‎Jul 16, 2018
01:46 PM
I have the same issue and it's infuriating because I save like every few seconds and this disk error pops up constantly. I found that it doesn't happen when I make that file or folder "available offline" which may not be ideal for some people, but is a temporary workaround.
... View more
‎Aug 23, 2014
10:03 PM
I recently found out that SWFs do not autoplay in Safari anymore and have to be user activated. I have a batch of banners due on Monday and need to solve for this problem. Basically I need all of my SWFs to show the last frame for a split second and then starting the animation from the beginning. I need the last frame to show because that is where the main messaging and button is for the ad. This is what I have, but only works if I set the timer to 2000 milliseconds as opposed to 1000 milliseconds or less. Can anyone help with this? gotoAndPlay(totalFrames); var timer:Timer = new Timer(1000, 0); timer.addEventListener(TimerEvent.TIMER, timerFunction); timer.start(); function timerFunction(e:TimerEvent):void{ gotoAndPlay(2); timer.removeEventListener(TimerEvent.TIMER, timerFunction); } Thanks, Ken
... View more