Animated ad blocking

I just came from the PC world and had Zone Alarm to block pop up and animated ads, I have turned on "block pop up windows" in the Safari menu but it's not doing a very good job, if at all, I hate dancing things on my pages as I'm trying to read. Any suggestions as to another program to do this or is my pop up blocker not working properly?

Pop Ups windows are different than animated ads contained on a web page.
You might want to try the Firefox browser. It has a ton of plugins and one is to block those animated apps. Not sure you can do that on Safari without shutting off all plugins.
lenn

Similar Messages

  • How to disable sliding animation of "blocked remote content" message bar?

    The latest release of Thunderbird now has a sliding animation of the yellow message bar stating: "To protect your privacy, Thunderbird has blocked remote content in this message "
    When I access Thunderbird on the office computer via a remote viewer program like Teamviewer, The screen redraws several annoying times as the notice message opens op, pushing the entire message content window downward. This really slows down the operation.
    Most other Thunderbird animations can be disabled, but I can't find a setting that defeats this superfluous "eye candy". Is there a setting somewhere that turns off this animation?
    Thanks,
    Dave

    The remote content notification bar drives me nuts:
    1. It takes up space in the message pane.
    2. I have to deal with it for every single message.
    3. Having set the "block all" option, I don't want to be pestered.
    4. Surely I should have control of it anyway, on general principle.
    Much better would be the option to have a "show remote content" button in the header area or on the toolbar.
    Good Thunderbird people, please fix this!

  • Animation a UIButton while animating a View - Ipad

    Hi,
    I am facing a problem in animation.
    So right now in my app, I have a subview which has a close button. When the close button is pressed, a curl down animation occurs showing the previous view. That is working properly. I perform the curl down closing animation by passing a notification to the NSNotificationCenter like this [[NSNotificationCenter defaultCenter] postNotificationName:notificationName object:self];
    Now I wanted to apply an animation to the close button itself so that when I press the close button, it would perform an animation as well as the curl down animation would occur. So the way I do it is by the following code
    [UIView transitionWithView:self.view.superview duration:1                       options:UIViewAnimationOptionCurveEaseIn  animations:^ { closeButton.frame = CGRectMake(500, 15, 100, 40); }                    completion:nil];
    Where previously the closeButton.frame had the value of (580,15,100,40) so the animation would be like the image was moving from right to left from 580 to 500.
    So what happens when I run the code is that when I press the close button, the close button animation does not happen but the curl down animation occurs. So for testing when I commented out the code where I post the notification, the close button animation works perfectly but the curl down animation does not happen nor does the previous view come up ( since I do not send a notification which would cause the view to close).
    I would like to know what is going wrong here and why it does not allow 2 animations to occur at the same time.

    Here is how I solved it...
    I used the nested animation using blocks where I included the code for the curl down close view in the completion part of the close button animation...
    [UIView transitionWithView:self.view.superview duration:1
                           options:UIViewAnimationOptionCurveEaseIn
                        animations:^ {
                            popContents.closeButton.frame = CGRectMake(500, 15, 100, 40); }
                        completion:^(BOOL finished){
                            [UIView transitionWithView:self.view.superview duration:1
                                               options:UIViewAnimationOptionTransitionCurlDown
                                            animations:^ {
                                                popContents = nil;
                                                [popContents.view removeFromSuperview];
                                                [ovController.view removeFromSuperview];
                                                ovController = nil; }
                                            completion:nil];

  • UIView Animation Question

    To all,
    I have a question about how to handle the asynchronous call when a UIView animation is created. My setup is as follows. I have a method in a view controller that get user input from and then makes external http calls. Since the calls could take a few seconds I wanted to notify the user when the call started and ended. In order to show this message I created a simple animation block in a method which I will list below.
    The animation simply slides a box up with a label on it and then slides it back down. A pop up slider if you will.
    This is my method which does the http processing simplified down.
    My problem is that since the animation call is asynchronous the and takes 4 seconds total to complete. If the HTTP processing takes less then 4 seconds (at times it does) the next displayMessage is called and my animation gets screwed up.
    The thoughts I have had were to have a check to see if the animation was running which is set true in the pop up reveal and false in the popup hide. Then I could simply sleep my thread if the boolean was true. But this wasn't working since the animation stop block was never called.
    I need to bounce ideas of you guys cause I don't know how to get past this basic problem.
    - (void)loadPostViewController:(id)sender
    [self displayMessage:@"Parsing address"];
    //Actual http processing code here which invokes external service
    [self displayMessage:@"Address processed"];
    - (void)displayMessage:(NSString *) inMessage
    CGFloat PostListViewXOFFSET = 20.0f;
    CGFloat PostListViewYOFFSET = 20.0f;
    NSInteger messageWidth = 150;
    NSInteger messageHeight = 60;
    self.transitioning = TRUE;
    self.view.userInteractionEnabled = NO;
    UIView *localContainerView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
    CGRect messageFrame = CGRectMake(0,0,messageWidth, messageHeight);
    roundedRectangle *view = [[roundedRectangle alloc] initWithFrame:messageFrame x:0 y:0 Width:messageWidth Height:messageHeight cIndex:0 radius:10.0f positionIndex:0];
    CGRect frameOut = CGRectMake((localContainerView.bounds.size.width/2)-(messageWidth/2),localConta inerView.bounds.size.height+messageHe ight, messageWidth, messageHeight);
    UILabel *mylabel = [[UILabel alloc] initWithFrame:CGRectMake(PostListViewXOFFSET, PostListViewYOFFSET, messageWidth-40,20)];
    mylabel.font = [UIFont fontWithName:@"Helvetica" size:12];
    mylabel.textColor = [UIColor blackColor];
    mylabel.text = inMessage;
    mylabel.backgroundColor = [UIColor clearColor];
    self.messageLabel = mylabel;
    [view addSubview:mylabel];
    [mylabel release];
    view.frame = frameOut;
    self.messageView = view;
    [self.view addSubview:view];
    [UIView beginAnimations: nil context: nil]; // Tell UIView we're ready to start animations.
    [UIView setAnimationDelegate: self]; // Set the delegate (Only needed if you need to use the animationDid... selectors)
    [UIView setAnimationDidStopSelector: @selector(animationDidStop:finished:context:)]; // example of a selector called with context when animation finishes.
    [UIView setAnimationCurve: UIViewAnimationCurveEaseInOut];
    [UIView setAnimationDuration: 2.0f]; // Set the duration to 4/10ths of a second.
    CGRect frameIn = view.frame; // Get the current frame.
    frameIn.origin.x = (localContainerView.bounds.size.width/2)-(messageWidth/2); // Move the view completely on screen.
    frameIn.origin.y = localContainerView.bounds.size.height-(messageHeight+20.0f);
    view.frame = frameIn; // set the new frame
    [UIView commitAnimations]; // Animate!
    [view release];
    - (void)animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context
    self.transitioning = FALSE;
    [self HideMessage];
    - (void)HideMessage
    NSInteger messageWidth = 150;
    NSInteger messageHeight = 60;
    UIView *localContainerView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
    CGRect frameOut = CGRectMake((localContainerView.bounds.size.width/2)-(messageWidth/2),localConta inerView.bounds.size.height+messageHe ight, messageWidth, messageHeight);
    [UIView beginAnimations: nil context: nil]; // Tell UIView we're ready to start animations.
    [UIView setAnimationDelegate: self]; // Set the delegate (Only needed if you need to use the animationDid... selectors)
    [UIView setAnimationDidStopSelector: @selector(clearMessageView)]; // example of a selector called with context when animation finishes.
    [UIView setAnimationCurve: UIViewAnimationCurveEaseInOut];
    [UIView setAnimationDuration: 2.0f]; // Set the duration to 4/10ths of a second.
    self.messageView.frame = frameOut; // set the new frame
    [UIView commitAnimations]; // Animate!
    }

    To all,
    I have a question about how to handle the asynchronous call when a UIView animation is created. My setup is as follows. I have a method in a view controller that get user input from and then makes external http calls. Since the calls could take a few seconds I wanted to notify the user when the call started and ended. In order to show this message I created a simple animation block in a method which I will list below.
    The animation simply slides a box up with a label on it and then slides it back down. A pop up slider if you will.
    This is my method which does the http processing simplified down.
    My problem is that since the animation call is asynchronous the and takes 4 seconds total to complete. If the HTTP processing takes less then 4 seconds (at times it does) the next displayMessage is called and my animation gets screwed up.
    The thoughts I have had were to have a check to see if the animation was running which is set true in the pop up reveal and false in the popup hide. Then I could simply sleep my thread if the boolean was true. But this wasn't working since the animation stop block was never called.
    I need to bounce ideas of you guys cause I don't know how to get past this basic problem.
    - (void)loadPostViewController:(id)sender
    [self displayMessage:@"Parsing address"];
    //Actual http processing code here which invokes external service
    [self displayMessage:@"Address processed"];
    - (void)displayMessage:(NSString *) inMessage
    CGFloat PostListViewXOFFSET = 20.0f;
    CGFloat PostListViewYOFFSET = 20.0f;
    NSInteger messageWidth = 150;
    NSInteger messageHeight = 60;
    self.transitioning = TRUE;
    self.view.userInteractionEnabled = NO;
    UIView *localContainerView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
    CGRect messageFrame = CGRectMake(0,0,messageWidth, messageHeight);
    roundedRectangle *view = [[roundedRectangle alloc] initWithFrame:messageFrame x:0 y:0 Width:messageWidth Height:messageHeight cIndex:0 radius:10.0f positionIndex:0];
    CGRect frameOut = CGRectMake((localContainerView.bounds.size.width/2)-(messageWidth/2),localConta inerView.bounds.size.height+messageHe ight, messageWidth, messageHeight);
    UILabel *mylabel = [[UILabel alloc] initWithFrame:CGRectMake(PostListViewXOFFSET, PostListViewYOFFSET, messageWidth-40,20)];
    mylabel.font = [UIFont fontWithName:@"Helvetica" size:12];
    mylabel.textColor = [UIColor blackColor];
    mylabel.text = inMessage;
    mylabel.backgroundColor = [UIColor clearColor];
    self.messageLabel = mylabel;
    [view addSubview:mylabel];
    [mylabel release];
    view.frame = frameOut;
    self.messageView = view;
    [self.view addSubview:view];
    [UIView beginAnimations: nil context: nil]; // Tell UIView we're ready to start animations.
    [UIView setAnimationDelegate: self]; // Set the delegate (Only needed if you need to use the animationDid... selectors)
    [UIView setAnimationDidStopSelector: @selector(animationDidStop:finished:context:)]; // example of a selector called with context when animation finishes.
    [UIView setAnimationCurve: UIViewAnimationCurveEaseInOut];
    [UIView setAnimationDuration: 2.0f]; // Set the duration to 4/10ths of a second.
    CGRect frameIn = view.frame; // Get the current frame.
    frameIn.origin.x = (localContainerView.bounds.size.width/2)-(messageWidth/2); // Move the view completely on screen.
    frameIn.origin.y = localContainerView.bounds.size.height-(messageHeight+20.0f);
    view.frame = frameIn; // set the new frame
    [UIView commitAnimations]; // Animate!
    [view release];
    - (void)animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context
    self.transitioning = FALSE;
    [self HideMessage];
    - (void)HideMessage
    NSInteger messageWidth = 150;
    NSInteger messageHeight = 60;
    UIView *localContainerView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
    CGRect frameOut = CGRectMake((localContainerView.bounds.size.width/2)-(messageWidth/2),localConta inerView.bounds.size.height+messageHe ight, messageWidth, messageHeight);
    [UIView beginAnimations: nil context: nil]; // Tell UIView we're ready to start animations.
    [UIView setAnimationDelegate: self]; // Set the delegate (Only needed if you need to use the animationDid... selectors)
    [UIView setAnimationDidStopSelector: @selector(clearMessageView)]; // example of a selector called with context when animation finishes.
    [UIView setAnimationCurve: UIViewAnimationCurveEaseInOut];
    [UIView setAnimationDuration: 2.0f]; // Set the duration to 4/10ths of a second.
    self.messageView.frame = frameOut; // set the new frame
    [UIView commitAnimations]; // Animate!
    }

  • Final Cut 10.1 dual graphics on 5.1

    I have tried searching for this.  Every comment on the new FCPX 10.1 says it is optimized for dual graphics on the NEW Mac Pro.  Well, what about last years model (which I have)?  I don't think I can spring for a new Mac Pro right now and was wondering two things.  1. Will FCPX work a lot harder if I put in two graphics cards into my old machine?  2. What two grahics cards would one recommend?  I have the 5770 right now and I did try a 7970 in there once, but it really made no difference at all.  Please let me know what you know, and thank you!

    for xavc 50p,the fcpx use mainly cpu.
    this is unlike prores422,
    xavc50p can be 2 tracks video and 4 tracks text realtime with 1 5770 card
    at better performance option.
    in fact you will see little image quality loss
    when choose this option.
    this also prove decoding xavc uses cpu!
    the brucex's test is not overall.
    that test is almost use gpu,cause the project
    is using fcpx generate text clouds etc.
    however, if you render  a dissolve of xavc clips,
    1 5770 takes only 1/28 more time than 2 5770
    here is the list i've done:
    encoding 4k 50p xavc to prores 32s clip
    1 5770 39s     2 5770 29s    1 k5000 50+s(i can't remember)
    render 10s dissolve 4k xavc 50p
    1 5770 29s.    2 5770 28s.   1k5000 35s
    brucex test output prores
    1 5770 64s.    2 5770 38s.    1k5000 about65s(not remember)
    render 10s 4k xavc 50p gauss blur
    2 5770 almost= 1 k5000
    realtime play 4k 50p xavc
    2 video tracks both primary colorgade
    with4 tracsk text(with simple animated color block behind the text)
    1 5770= 2 5770= 1 k5000
    all can output 3g sdi 1080p50 to monitor
    image quality: better performance almost= better quality
    realtime playback 4kprores50p at high quality:
    1 5770 drop frame
    2 5770 dont drop
    1 k5000 dont drop
    but if ouput to sony monitor all drop frame
    image quality:better performance << better quality

  • Data Charges - Some Investigation and assistance needed

    VZW has helped me with this issue but I am seeking further information from others that may have the knowledge to answer / help me.
    I have a charge on June's bill for data - approx 3 am download IM (instant messaging) also a $2.99 charge for UNLIMITED BABES.......not really sure what this is but have been told it is a chat with women and that IM is needed to be on the phone for this to be used. Charges were placed 6/2/11
    On 7/2/11 UNLIMITED BABES shows up again for $2.99.
    I am looking to see if there is ANY WAY that the IM and connect to UNLIMITED BABES on those dates were done in ANY OTHER WAY than from the phone itself.    Also where can I find out information on that app....
    I was told that someone had to have the phone physically to download the IM program onto the phone and that it would have asked 2 times if you wanted to do this. This is also the case with Unlimited Babes.
    This phone was not with me when these charges were made. Divorced and my 9 and 4 year old boys have this phone for contact with me.  I can say with certainty that the kids did not do this but I do not have information regarding anyone else.
    I am looking to see if there were ANY other explaination to this.

    At 3am the kids are out like lights.
    As for the ex and her friends, fiancee...etc....I have no idea.
    I looked into this and found the phone must be used to accept the services. Period. Found the app on the web site after some help from VZW customer svc...Kudos to VZW for their great help!!
    I have the service blocked, but now it appears that there may be more to this than meets the eye.  She is certain that no one has access to the phone....but the charges, and system says different.
    So VZW thanks for your help!!  Looks like more to find out from the ex.....
    rcschnoor wrote:
    idaho2010 wrote:
    This phone was not with me when these charges were made. Divorced and my 9 and 4 year old boys have this phone for contact with me.  I can say with certainty that the kids did not do this but I do not have information regarding anyone else.
    You are better than I, then, as I cannot say with certainty what my children do when they are not with me. Sometimes, even when they are with me.
    Edit: Can you say the same thing about your ex? This sounds like a premium SMS, or subscription on your phone. I would call customer service and have this cancelled. Then you can go onto My Verizon and have premium SMS blocked, app downloads blocked, animated messaging blocked, custom ringtones blocked and any other items that your children do not need blocked. There is no charge for having these items blocked and will prevent further unknown charges like this.

  • Toolkit.createCustomCursor(...) blocks when provided with an animated GIF

    Hi everyone:
    Here is a code snippet from an application of mine:
    // Loading an image: works fine. duke.gif is an animated Duke icon found in the source code version of J2SDK 1.3.1.
    ImageIcon imageIcon = new ImageIcon("duke.gif");
    // Conversion into an image: works fine too. I checked its proper termination with a MediaTracker, which I removed after determining that getImage() does not block at all.
    Image image = imageIcon.getImage();
    // This method blocks forever!
    Cursor myCursor = Toolkit.getDefaultToolkit.createCustomCursor(image, new Point(0, 0), "Duke");After testing with a few other GIF images, I could determine that this blocking problem seems to occur only with animated GIF images. Are animated GIFs supported as cursor images at all? Also, what is the best method to use the Toolkit.getBestCursorSize(...) to properly size the loaded image for use as a cursor icon?
    Thanks in advance for helping...
    Jean-Fran�ois Morin

    I think the problem may be that your using an animated gif. If you read the doc on the Curson class it says that Cursor is a bitmap representation of the mouse cursor. Bitmaps do not generally support animation. Also it is likely the createCustomCursor method is waiting for a call to ImageConsumer.imageComplete(). I am not sure, but if the GIF animation loops this function may never get called. This could cause your hangup. I would suggest trying a non-animated GIFf produced from the same program to ensure that your paint program is producing compliant GIFs. If that works I would assume the problem is that Cursor does not support animation at this time. I could be wrong about that, but there is nothing in the documentation to indate that it would.
    NoOneLeft

  • Why are white blocks appearing in my animation?

    When my animations loads (by clicking the packaging icon), a white block appears in the middle and I would like to know if there
    is a way that I could change it so it is either transparent or not have the white appear?
    I made use of a EdgeDocks extention (http://www.edgedocks.com/edgecommons) called Composition Loader to animate the
    centre.
    Link: http://vectorgraphics.co.za/

    Hey Edward , i build this loader for you man
    Try to donwload that  and tell me if that helful
    http://www.2shared.com/file/uBPJIY1N/Loader_SEIF.html
    SEIF BH

  • Animations in Flash ads blocking text input into rich-text editor (IE)

    We've been able to reproduce that Flash ads, that are currently animating, block text input into rich-text areas.  Has anyone heard of this?

    I should add, they do not block all text input, just every 10th (or so) character.

  • New version of Firefox is missing settings. I cannot block ad links or animated pictures any more. I have uninstalled Firefox and plan not to use it now.

    The new version of Firefox does not allow me to block sites from displaying media that I don't want. Many site advertisers trigger unpleasant animations and pics and I refuse to use a browser that does not allow me to block those. Because of this I have uninstalled and deleted Firefox from all my computers, including programs, settings, and registry entries.
    If I get a reasonable answer from Mozilla on the settings I am missing then I will re-install Firefox, and if not then I'm never using Firefox again.

    None of the solutions above allows me to block display of all images on a web page or to prevent scripts from running. Preventing pop-ups does not cut it. I want to see a web page that, without my explicit permission, displays nothing but text on every site. This has to do with regular content on pages, not advertisements. So far, it seems, the new Firefox is unable to provide this security.
    These days so many 'advertisers' (so they call themselves) are competing more and more viciously to hijack web pages that I need to access by using auto-linking and animated images to get around ad-blockers. I need to be able to block everything except text on a page unless i give specific information to allow it for a particular site - some sites do not allow those ads and I can release the restrictions on those sites.
    I am not using Firefox, and also have some complaints about other browsers; I am considering doing all my work on the Tor browser.

  • Recursive animation block problem

    Hi all,
    i have a recursive animation block.  It calls itself according to the parameter value which can be 3 or less.
    when this parameter value is  two or one, animation is working correctly.  If the parameter value is 3, the animation block (although it works correctly in the code,debug mode), the screen seems to be called on it once.
    But, if the parameter value is 3, When I put  2 seconds between each recursion call,  the animation also seems  correctly on the screen.
    What could be the cause of the problem?
    Xcode 4. 2
    Build 4D199
    iphone 5.0 Simulator
    //Animation Definition
    -(CAAnimationGroup*) getAnimationGroupForLayer :(UIImageView *) layerView duration :(float) duration
        UIBezierPath *movePath = [UIBezierPath bezierPath];
        [movePath moveToPoint:layerView.center];
        [movePath addQuadCurveToPoint:self.totalQuestion.center controlPoint:CGPointMake(160, 240)];
        CAKeyframeAnimation *moveAnim = [CAKeyframeAnimation animationWithKeyPath:@"position"];
        moveAnim.path = movePath.CGPath;
        CABasicAnimation *opacityAnim = [CABasicAnimation animationWithKeyPath:@"alpha"];
        opacityAnim.fromValue = [NSNumber numberWithFloat:1.0];
        opacityAnim.toValue = [NSNumber numberWithFloat:0.1];
        CAAnimationGroup *animGroup = [CAAnimationGroup animation];
        animGroup.animations = [NSArray arrayWithObjects:moveAnim, opacityAnim, nil];
        animGroup.duration   = duration;
        return animGroup;
    -(void) doAnim4Layer:(UIImageView *) layerView
        [layerView.layer addAnimation:[self getAnimationGroupForLayer:layerView duration:0.25] forKey:nil];
    //Recursion
    -(void) startAnimation:(int) counter
         [UIView animateWithDuration:0.25
                         animations:^{
                             [self doAnim4Layer:(counter == 3 ? self.star1:(counter==2? self.star2:self.star3))];                                             
                         completion:^(BOOL finished)
                                [self addStar:1];      
                                if(counter == 1)
                                    [self getNextQuestion]; 
                                }else{
                                    //sleep(2);  //works correctly when initial value 3
                                    [self startAnimation:counter-1];

    i found problem.  Let me explain.
    when  i was calling animation block, i called other method which is also CAAnimation.  But i didn't implement of its delegate methods (
    - (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag{
    Now,  this delegate method is implemented and recursive animation  is done in this method.  Everthing is now ok.
    - (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag{
      self.animationCounter--;
       [self addStar:1];
        if(self.animationCounter>=1)
            //recursive call
             [self layerMovedAnimation:
                           [self getAnimatedStar:self.animationCounter]
                                andLayerName:                       [NSString stringWithFormat:@"star_%d",self.animationCounter]];
        if(self.animationCounter == 0){

  • Move a UIView below a subview in animation block

    Hi,
    I am moving UIViews inside an animation block [UIView beginAnimations:context:] [UIView commitAnimations] by changing the view's view.frame to a different CGRect values. And I need to move a subview below the subview on its right when swipe movement to the right is detected.
    All subviews are created with a different set of CGRect valudes and added to self.view in viewDidLoad. Is there any way to move a UIView under a subview without using [self.view insertSubview:firstView belowSubview:secondView] inside the animation block?
    Thanks in advance,
    aobs

    I have tried the above code. Unfortunately, it does not work. Can anyone point me in the right direction on how I can move a subview below another subview in an animation block?
    Thanks,
    aobs

  • Animation is not a thread and therefore blocking my view

    Hi,
    I have a small animation on my view, but it seems, that as long this animation is running, I am not able to use my view (for example the buttons..)
    - (void) showInfoAsThread:(NSString*) info{
    NSAutoreleasePool *pool = [NSAutoreleasePool new];
    if(animating == FALSE){
    infoView = [[RoundedRectView alloc] initWithFrame:CGRectMake(50.0,327.0, 210.0, 30)];
    UILabel *infoLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 5, 200, 18)];
    infoLabel.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];
    infoLabel.text = info;
    [infoLabel setTextAlignment:UITextAlignmentCenter];
    [infoLabel setTextColor:[UIColor darkGrayColor]];
    infoLabel.font = [UIFont boldSystemFontOfSize:14];
    [infoView addSubview:infoLabel];
    [infoLabel release];
    [self.view addSubview:infoView];
    [UIView beginAnimations:@"fadeOut" context:NULL];
    [UIView setAnimationDelegate:self];
    [UIView setAnimationDidStopSelector:@selector(loadingViewDisappear:finished:context:)];
    [UIView setAnimationDuration:2];
    [infoView setAlpha:0];
    animating = TRUE;
    [UIView commitAnimations];
    [pool release];
    what i am doing wrong? should i just write my own UIView and make it changing its opaque values in a thread?

    Not that I have a solution or anything but has anyone actually filled out a feedback form about this?
    http://www.apple.com/feedback/
    Apple can't fix what they don't know. Complaining here does not help, this forum is not monitored by Apple.
    If you haven't found a solution yet (I'm still searching too), then please file a feedback and continue to do so. The more feedback Apple receives, the more attention it will get. Hopefully.

  • Flash Animation Blocks Drop-Down Menu

    I added a simple flash animation (slideshow) to a site I am
    working on which is located under the navigation bar that has a
    drop-down menu (created in Fireworks). When I preview the site in
    Firefox or Internet Explorer on a PC, the drop-down menu is behind
    the flash animation and all of the links cannot be seen. Is there
    an easy solution to this problem?
    Thank you,
    Troy

    "FlineCo" <[email protected]> wrote in
    message
    news:gopblq$c47$[email protected]..
    >I added a simple flash animation (slideshow) to a site I
    am working on
    >which is
    > located under the navigation bar that has a drop-down
    menu (created in
    > Fireworks). When I preview the site in Firefox or
    Internet Explorer on a
    > PC,
    > the drop-down menu is behind the flash animation and all
    of the links
    > cannot be
    > seen. Is there an easy solution to this problem?
    Google "wmode" and use opaque
    Thierry | Adobe Community Expert | Articles and Tutorials ::
    http://www.TJKDesign.com/go/?0
    Spry Widgets |
    http://labs.adobe.com/technologies/spry/samples/
    [click on
    "Widgets"]
    Spry Menu Bar samples |
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html

  • Animating Single Lines of Block Text In Keynote

    Is it possible to animate single lines of block text in Keynote? Or do I have to rewrite each line as a separate text box

    Select the text box then
    Inspector > Animate > Build > Delivery;  from the drop down menu, select By Paragraph

Maybe you are looking for