How to redraw Tree widget after mouse scrolling multiple times?

We have a tree widget which is loaded with around 2000 nodes up to 4 levels. We have Parent – child hierarchy up to 4 levels. Tree loading is fine for first time. But when we start scrolling using mouse on the tree widget tree gets scroll but node names are shown up as blank. We are searching for API function which can allow tree to redraw it fine after scroll.This is the issue we are getting on MAC Indesign CS4 only, it is working fine on Windows.

Well said! And you said it about six weeks ago. And 4 other people said "Me Too." - I guess we're screwed.
I guess it's time to switch to GMail.
Such a trivial thing, but it irritates me every single time.
MOZILLA - YOU'RE GOING DOWNHILL...

Similar Messages

  • How to restrict user marking same events in multiple times.

    Hi,
    In my online exam system, I am displaying the questions and related answer in jsp page. Once user fill all this questions, the result of these stored in final table containing column questonNo, userid, answer, testname.
    Now in my application if any user goes back to the question displaying page after submitting same questions, he can change the answer selected in first attempt and submitting again the test, the result are stored in final table. I.e. for same question no. user is now able to answer in two times. I want to restrict user for answering test in second times.
    How can I achieve this?
    Any suggestion is highly appreciated?
    Thanks and Regards
    Harshal

    Hi Hari,
    with you suggested logic can i restrict user marking one question in multiple times,
    My target is once user submit any questions teh control will be transferred to the next page.Now he/she could not able to submit the same questions with another answer or the same answer also which is possible in my application by going back to these page using back button .so that i can get only one record for particular questions in table final.
    Thanks and Regards
    Harshal
    Edited by: HARSHAL_GURAV on Aug 20, 2008 12:15 AM

  • How to stop someone from submitting a form multiple times?

    My customers order my service by down loading a .pdf form. They then fill out the form and submit the form by my email as a pdf form. How do I stop a customer from submitting the form multiple times. I would like for the customer to submit the form only once filled out. If I need more info I could follow up to their order manually via email. Thanks for your help!
    Sorry if a newbie question,
    Looking for a way to disable the form after the form is filled out then submitted through their email

    One of the main reasons why you have a customer posting multiple submits would be because for some reason he/she doesn't know the first one was successful.
    Add a property your form to record whether or not a valid submit has already happened. Use script to set that property on submit. Check each time the submit operation is fired to see if the property is set. If it is display an error dialog and stop the submit from occurring.
    If someone wants to open multiple copies of your form and fill it out and send it to you, well there's nothing you can do about that.

  • How do u clean the Mighty Mouse Scroller Ball?!

    my scroller ball on my mighty mouse doesnt scroll down because its dirty (ive chheckd system preferences), but i can seem to clean it! Anyone know how?
    Cheers,
    Si

    Hello nymph - I think you went through this on another thread... my only thought would be to check out the Last Post on the other thread, in case the cleaning doesn't help... Rick
    BTW - In case above link stops working go here http://discussions.apple.com/message.jspa?messageID=2575796
    iMac G5 iSight 20" - 30G iPOD - HP Pav 15" WS and Toshiba Sat 17" WS   Mac OS X (10.4.6)   Canon 20D & A620

  • How to manage the uitableviewcell after being scrolled?

    Hi all.
    I manipulated the cell of the table view to be a custom one, which will be expanded(from height=50 to height=100) on selection and will be srinked to original(from height=100 to height=50) on second click or deselction. Now my problem is that i am selecting a row and without deselecting it or without clicking it for second time if i am scrolling the table ,the cell should reload to the original(height=50) srinked one. Here the view is reloading but the height for that row is not srinking(still height for that row remains to be 100). Can anyone have tried like this? Plz help me to sort out the problem.
    Tanks in advance.
    Satya.

    Well sorry for late responsse, here is the code:_
    @interface HomeControl : UIViewController<UIScrollViewDelegate,UITableViewDelegate,UITableViewDataSource >
              IBOutlet UITableView *newsTable;
              NSArray *dataArray;
              NSMutableArray *selectedRowArray,*clickedCountArray;
              CGRect frame;
    @property (nonatomic,retain) UITableView *newsTable;
    @property (nonatomic,retain) NSArray *dataArray;
    @property (nonatomic,retain) NSMutableArray *selectedRowArray,*clickedCountArray;
    @end
    @implementation HomeControl
    @synthesize newsTable,dataArray,selectedRowArray,clickedCountArray;
    - (void)viewDidLoad
              //table view section
                        NSDictionary *row1=[[NSDictionary alloc] initWithObjectsAndKeys:@"News",@"newsCatagory",@"News Title",@"newsTitle",nil],*row2=[[NSDictionary alloc] initWithObjectsAndKeys:@"News'it",@"newsCatagory",@"News Title",@"newsTitle",nil],*row3=[[NSDictionary alloc] initWithObjectsAndKeys:@"News",@"newsCatagory",@"News Title",@"newsTitle",nil],*row4=[[NSDictionary alloc] initWithObjectsAndKeys:@"Fashion",@"newsCatagory",@"Good Deal Title",@"newsTitle",nil],*row5=[[NSDictionary alloc] initWithObjectsAndKeys:@"News",@"newsCatagory",@"News Title",@"newsTitle",nil];
                        NSArray *a=[[NSArray alloc] initWithObjects:row1,row2,row3,row4,row5,nil];
                        self.dataArray=a;
                        [row1 release];[row2 release];[row3 release];[row4 release];[row5 release];[a release];
                        selectedRowArray=[[NSMutableArray alloc] initWithCapacity:dataArray.count];
                        clickedCountArray=[[NSMutableArray alloc] initWithCapacity:dataArray.count];
                        for(int i=0; i<[dataArray count]; i++)
                                  [selectedRowArray addObject:[NSNumber numberWithInt:0]];
                                  [clickedCountArray addObject:[NSNumber numberWithInt:0]];
    - (void)viewDidUnload
              // Release any retained subviews of the main view.
              // e.g. self.myOutlet = nil;
              self.newsTable=nil; self.selectedRowArray=nil;          self.clickedCountArray=nil;
              self.dataArray=nil;
              [super viewDidUnload];
    - (void)dealloc
              [newsTable release]; [selectedRowArray release]; [clickedCountArray release];
              [dataArray release];
        [super dealloc];
    #pragma mark Custom Methods
    -(void)cellWithDataInTableForCell:(TableDataCellControl*)tCell withIndexPath:(NSIndexPath*)ip
              NSUInteger r=[ip row];
              NSDictionary *rowdata=[self.dataArray objectAtIndex:r];
              tCell.newsL.text=[rowdata objectForKey:@"newsCatagory"];
              tCell.title.text=[rowdata objectForKey:@"newsTitle"];
              if(tCell.newsL.text==@"Fashion")
                        tCell.rowImage.image=[UIImage imageNamed:@"orange.png"];
              else if(tCell.newsL.text==@"News'it")
                        tCell.rowImage.image=[UIImage imageNamed:@"IT-Icon.png"];
                        tCell.rowImage.backgroundColor=[UIColor clearColor];
              else
                        tCell.rowImage.image=nil;
              NSDateFormatter *formatter=[[NSDateFormatter alloc] init];
              [formatter setDateFormat:@"dd-MM-yyyy HH:mm"];
              tCell.timeL.text=[formatter stringFromDate:[NSDate date]];
              [formatter release];
    -(void)accessViewForCell:(TableDataCellControl*)tCell
              UILabel *l=[[UILabel alloc] initWithFrame:CGRectMake(0,0,10,12)];
              l.textAlignment=UITextAlignmentCenter;
              l.backgroundColor=[UIColor clearColor];
              l.textColor=[UIColor blueColor];
              if(tCell.selectedRow==0) l.text=@">";
              else l.text=@"<";
              tCell.accessoryView=l;
              tCell.accessoryView.userInteractionEnabled=YES;
              [l release];
    #pragma mark Table DataSource Methods
    -(NSInteger)tableView:(UITableView *)tv numberOfRowsInSection:(NSInteger)s
              return [self.dataArray count];
    -(NSString *)tableView:(UITableView *)tv titleForHeaderInSection:(NSInteger)s
              if(s==0)
                        return [NSString stringWithString:@"Actuallite"];
              else
                        return nil;
    -(UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)ip
              static NSString *cid=@"CID";
              TableDataCellControl *tCell=(TableDataCellControl *)[tv dequeueReusableCellWithIdentifier:cid];
              if([[clickedCountArray objectAtIndex:ip.row] intValue]%2==0)
                        if(tCell==nil)
                                  NSArray *cellNib=[[NSBundle mainBundle] loadNibNamed:@"TableCell" owner:self options:nil];
                                  for(id ob in cellNib)
                                            if([ob isKindOfClass:[TableDataCellControl class]])
                                                      tCell=(TableDataCellControl *)ob;
                        tCell.selectedRow=[[selectedRowArray objectAtIndex:ip.row] intValue];
                        tCell.rowClicked=[[clickedCountArray objectAtIndex:ip.row] intValue];
                        [self cellWithDataInTableForCell:tCell withIndexPath:ip];
                        [self accessViewForCell:tCell];
              else
                        if(tCell==nil)
                                  NSArray *cellNib=[[NSBundle mainBundle] loadNibNamed:@"TableCellExtended" owner:self options:nil];
                                  for(id ob in cellNib)
                                            if([ob isKindOfClass:[TableDataCellControl class]])
                                                      tCell=(TableDataCellControl *)ob;
                        tCell.selectedRow=[[selectedRowArray objectAtIndex:ip.row] intValue];
                        tCell.rowClicked=[[clickedCountArray objectAtIndex:ip.row] intValue];
                        [self cellWithDataInTableForCell:tCell withIndexPath:ip];
                        [self accessViewForCell:tCell];
              return tCell;
    -(void)tableView:(UITableView *)tv didSelectRowAtIndexPath:(NSIndexPath *)ip
              TableDataCellControl *tCell=(TableDataCellControl *)[tv cellForRowAtIndexPath:ip],*newCell;
              tCell.rowClicked+=1;
              [clickedCountArray replaceObjectAtIndex:ip.row withObject:[NSNumber numberWithInt:tCell.rowClicked]];
              if(tCell.selectedRow==0)
                        tCell.selectedRow=1;
                        [selectedRowArray replaceObjectAtIndex:ip.row withObject:[NSNumber numberWithInt:tCell.selectedRow]];
              else
                        tCell.selectedRow=0;
                        [selectedRowArray replaceObjectAtIndex:ip.row withObject:[NSNumber numberWithInt:tCell.selectedRow]];
              [tv reloadRowsAtIndexPaths:[NSArray arrayWithObject:ip] withRowAnimation:UITableViewRowAnimationFade];
              tCell=(TableDataCellControl*)[tv cellForRowAtIndexPath:ip];
              if(tCell!=nil)
                        for(id ob in tCell.contentView.subviews)
                                  [ob removeFromSuperview];
              NSArray *cellNib=[[NSBundle mainBundle] loadNibNamed:@"TableCellExtended" owner:self options:nil];
              for(id ob in cellNib)
                        if([ob isKindOfClass:[TableDataCellControl class]])
                                  newCell=(TableDataCellControl *)ob;
              [self cellWithDataInTableForCell:newCell withIndexPath:ip];
              //[self accessViewForCell:tCell];
              [tCell.contentView addSubview:newCell.contentView];
              if((tCell.selectedRow==0)&&(tCell.rowClicked%2==0))
                        [self tableView:tv didDeselectRowAtIndexPath:ip];
    -(void)tableView:(UITableView *)tv didDeselectRowAtIndexPath:(NSIndexPath *)ip
              [clickedCountArray replaceObjectAtIndex:ip.row withObject:[NSNumber numberWithInt:0]];
              [selectedRowArray replaceObjectAtIndex:ip.row withObject:[NSNumber numberWithInt:0]];
              int c,s;
              c=[[clickedCountArray objectAtIndex:ip.row] intValue];s=[[selectedRowArray objectAtIndex:ip.row] intValue];
              [tv reloadRowsAtIndexPaths:[NSArray arrayWithObject:ip] withRowAnimation:UITableViewRowAnimationFade];
              TableDataCellControl *tCell=(TableDataCellControl *)[tv cellForRowAtIndexPath:ip],*newCell;
              if(tCell!=nil)
                        for(id ob in tCell.contentView.subviews)
                                  [ob removeFromSuperview];
              NSArray *cellNib=[[NSBundle mainBundle] loadNibNamed:@"TableCell" owner:self options:nil];
              for(id ob in cellNib)
                        if([ob isKindOfClass:[TableDataCellControl class]])
                                  newCell=(TableDataCellControl *)ob;
              [self cellWithDataInTableForCell:newCell withIndexPath:ip];
              //[self accessViewForCell:tCell];
              [tCell.contentView addSubview:newCell.contentView];
    -(CGFloat)tableView:(UITableView *)tv heightForRowAtIndexPath:(NSIndexPath *)ip
              int cliked=[[clickedCountArray objectAtIndex:ip.row] intValue],selection=[[selectedRowArray objectAtIndex:ip.row] intValue];
              int check=(cliked%2==0)&&(selection==0)?0:1;
              switch (check)
                        case 0:
                                  return 49;
                                  break;
                        case 1:
                                  return 100;
                                  break;
                        default:
                                  return 49;
                                  break;
    @end

  • How to animate cast members after mouse events?

    Hi there
    I´m doing a work for university using Director but
    i´m in need of help with it.
    What i want to do is to have animated cast members moving to
    a place in the stage after we press a button.
    For example, imagine a background photo of a stage (which
    will be my background image) and then image a wood crate image in
    the center of the stage.
    What i want to do is to press in that crate and after i
    pressed that crate 4 more wood crates will appear behyind the main
    crate and move to different points in the stage making it look like
    the five number in a dice.
    Can you help me with this?

    Hi,
    Place the crates that appear when the middle one is clicked
    on the stage where you want them to appear (ie at the end point of
    the animaiton), and then add a behaviour like this to each of these
    sprites
    property mySprite
    property myOnLoc
    property myDestination
    property myCurrentLoc
    on beginSprite (me)
    -- grab a reference to the current sprite object
    mySprite = sprite(me.spriteNum)
    -- assume starts at the place it should appear
    -- when the center crate is clicked. So record it now
    myOnLoc = mySprite.loc
    -- now place the sprite off-screen
    myCurrentLoc = point(-999.0, -999.0)
    mySprite.loc = myCurrentLoc
    -- set this offscreen loc as the current destination
    -- (so we don't animate)
    myDestination = myCurrentLoc
    end
    on ShowCrates (me, fromPnt)
    if (fromPnt.ilk = #point) then myCurrentLoc = fromPnt
    mySprite.loc = myCurrentLoc
    myDestination = myOnLoc
    end
    on enterframe (me)
    -- if not at the destination loc, then move there
    if (myDestination = myOnLoc) then
    -- There are lots of ways of 'animating' to a point.
    -- This example simply moves halves the distance and
    -- then checks that the distance is not less 1 pixel
    -- (to prevent 'jiggling')
    dx = (myDestination.locH - myCurrentLoc.locH) / 2.0
    dy = (myDestination.locv - myCurrentLoc.locv) / 2.0
    myCurrentLoc = myCurrentLoc + point(dx, dy)
    if abs(dx) < 1 then myCurrentLoc.locH =
    myDestination.locH
    if abs(dy) < 1 then myCurrentLoc.locV =
    myDestination.locV
    mySprite.loc = myCurrentLoc
    end if
    end
    Now on the middle crate (the one that gets clicked) add a
    behaviour like this
    on mouseUp (me)
    sendAllSprites(#SHowCrates, sprite(me.spriteNum).loc)
    end
    Hope this helps,
    Luke

  • How to test alert mechanisum after checking., Suppress Multiple Alerts of this Rule.

    Hi Experts,
    Currently,  Suppress Multiple Alerts of this Rule. condition is not checked, now its checked to avoid dulicate alerts.
    Please let me know how to test this conditon?
    Thanks,
    Thrilok Chandar

    make the message fail in PI for example 3 times, and check if you get 3 alerts.
    you won't get 3. after one you have to confirm the alert then only you will get another consecutive one.
    for that go to alert inbox and complete the alert and check if you get the alert or not.
    if you don't check Suppress Multiple Alerts of this Rule no need to do above activity.

  • How to stop refreshing jsp after a period of time

    Dear all,
    Anyone has idea of how to stop jsp page refreshing after I get result from Backend?
    I am using META tag to do refreshing in jsp: HTTP-EQUIV="Refresh" CONTENT="60
    After I got the result from back end, say after there's a "status" bean property changed from "processing" to
    "successful".The refreshing activity is disabled?Any good way to do that?

    Why don't you use listener to listen to changed events within your application and set you refresh status flag up when changes occur

  • How do I stop a notify icon appearing multiple times... then disappear when mouse hovers over them

    Hi,
    [Re-posted
    from Outlook Dev Forum]
    I have an Outlook addin which makes use of a System.Windows.Forms.NotifyIcon to display update message without requiring the user to click Okay to dismiss them...etc.
    I declare and create it in the addin class (so not in start up or any other event) as:
    Public WithEvents notifyIcon As New System.Windows.Forms.NotifyIcon
    Then throughout in my code if I need to display a message I use notifyIcon.ShowBalloonTip.  This works great, and I run it off the main thread as well as a syncing background worker thread.  The problem is that when I go down and expand the
    system tray, there are often many clones of the icon I use, which then disappear when I hover my mouse over them.
    I understand this isn't an uncommon problem, and it happens also with new email icons in the system tray.  However, is there any way I can prevent this from happening, or best practices I need to abide by?
    In the Shutdown event I use:
    If notifyIcon IsNot Nothing Then
    notifyIcon.Visible = False
    notifyIcon.Dispose()
    End If
    Any help would be much appreciated, since I can't seem to find any definitive info elsewhere online.
    Thanks!
    Tom
    Note: I don't actually use a windows form with the notifyIcon, I just declare it as above... not sure if that affects anything?

    Would this be the same as using the Application_Quit event for the Outlook addin?  Since I've
    seen that in Outlook 2010 onwards it doesn't call the Shutdown event now anymore, so you need to use the Quit event of the application to do any tidy up.  Maybe that is why the icons are remaining.
    Thanks,
    Tom
    Hello,
    Wyck has shared a nice example with a form event, and for outlook 2010, we could deal with that notifyIcon inside application quit event.
    Based on the document below you shared, it seems that you have found the reason, if that issue still exists, please feel free to let us know.
    https://msdn.microsoft.com/en-us/library/office/ee720183(v=office.14).aspx
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Tree control erroneously displays nodes multiple times

    I'm attempting to use a Tree control to display some data.
    I'm using an HierarchicalCollectionView as the dataProvider. All
    the data displays, but it appears on the wrong level. For instance,
    on the root level, it displays the root node (correctly marked with
    the folder icon as having children), plus all the children (on the
    root level!) If I expand the root node, underneath it it displays
    its children as expected -- now there are 2 copys of all the
    children, one in the correct place and one at the root level. If I
    expand 2nd-level nodes, their children (and children's children,
    etc) display underneath them... the pattern continues. It looks
    like every level of the hierarchy displays ALL the nodes underneath
    it, no matter how many levels down.
    I think I know why this happens: a
    HierarchicalCollectionView's createCursor() function returns an
    IViewCursor that treats the collection as linear instead of
    hierarchical. The Tree then uses this cursor to visit every node in
    the tree, displaying it. When expanding a node, it again uses one
    of these linear-type cursors, but on the children of the node
    clicked on, so it displays all the children underneath it and their
    children, etc. This seems like a major bug in the library -- I'm
    pretty sure this isn't a problem with my code. Doesn't it seem
    natural to use a HierarchicalCollectionView with a Tree control?
    Has no one else ever experienced this issue? I'd expect it to work,
    especially since HierarchicalCollectionView extends
    ICollectionView, which is what the dataProvider wants. I've looked
    through the source of the Tree class (and List, and ListBase) and I
    think it all boils down to not using the dataDescriptor's
    getChildren() method and instead using createCursor() directly on
    the dataProvider. The dataDescriptor's getChildren() method returns
    an ICollectionView that correctly only contains the next-level
    nodes, not all of the ones all the way to the bottom of the
    hierarchy. I think the bad behavior is inherited from ListBase (and
    in that class, it actually makes sense... too bad nobody overrode
    it in Tree).
    Am I wrong? Am I making a mistake somewhere in my code? If
    not, is there a workaround? Has a bug report been filed, and should
    I file one if this is indeed a bug? Any help or insight would be
    greatly appreciated.

    OK, after banging my head against this for a day and a half,
    I finally have an answer. It seems that the problem is my root node
    (and possibly others; I didn't delve that deep) is "open". I guess
    something, somewhere is calling
    IHierarchicalCollectionView.openNode() on it. Closing the node(s)
    makes the problem disappear. I've attached a reproduction script
    that's about as simple as I can make it (I guess it could be
    simpler with less data, but oh well). Why does this happen? Should
    I open a bug report? It seems to me that the correct behavior would
    be to have the open node(s) disclosure controls start out open
    rather than incorrectly displaying their children as on the same
    level as them.

  • Motorola Services Contact re-appears after delete and multiple times

    I have owned this Motorola Droid 3 for a week or so and I am having problems with Contacts. I have successful syncs with gmail, but I don't know why some contacts continue to reappear and continue to be added in spite of deleting them and in spite of already having a contact with the same name. When one edits a contact I want which is in gmail, scrolling the edit page reveals multiple instances of the same contact labeled "Motorola Services Contac". Then if I delete this contact, after a couple of hours, the deleted contact re-appears with multiple instances again. The multiple instances continue to grow and eventually the contact application boggs down. Can anyone help?

    My gmail account contacts are the ones I want. The "Motorola Services contacts" list include the gmail ones, and ones that have been deleted. When I delete all the contacts in the phone by using an App (MyPhoneExplorer), the phone contact list ends up being the precise list that's in gmail, the list I want. A few hours later the "Motorola Services contact" list reappears. Apparently this happens every few hours, as you see repeated instances of all the "Motorola Services contacts" joined as I see by editing a contact. It is as the "Motorola Services contacts" are somewhere in the phone memory. My Backup Assistant list in verizon is empty. I guess I will visit the Verizon rep as I have cleared data areas in the sync services, and any other attempt I make does not cure this problem for me....  Al

  • XSLT: How can I explode a single node value multiple times?

    For a given XML tree like this,
    <?xml version="1.0"?>
    <offers>
      <fcst start_hr="1" end_hr="10" value="100"/>
    </offers>how can I get an output like this? (I need to explode the value of 100 from hr=1 to hr=10, ten times.)
    100,100,100,100,100,100,100,100,100,100

    This?:
    michaels>  VAR cur refcursor
    michaels>  DECLARE
    xml XMLTYPE := XMLTYPE('<offers> <fcst start_hr="1" end_hr="10" value="100"/> </offers>');
    BEGIN
    OPEN :cur FOR
      SELECT LTRIM(VALUE(t),',') str
            FROM XMLTable ('let $s := xs:integer(offers/fcst/@start_hr)
                            let $e := xs:integer(offers/fcst/@end_hr)
                            let $v := offers/fcst/@value
                            return ora:replace(<i>{for $i in $s to $e return (",",$v)}</i>," ,",",")'
                            PASSING xml) t;
    END;
    michaels>  PRINT cur
    STR                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    100,100,100,100,100,100,100,100,100,100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
    1 row selected.

  • How do I de-authorise if it's multiple times on one computer?

    Recently my 2003 iPod died and my nano was recalled for a battery problem. On both of these, I had a book that I had purchased through iTunes. It's a very large book (3 large volumes) and I cannot back it up to an audio cd.
    It has once more asked me to authorise the computer for this book - it wouldn't let me play it on my computer even. (at this point I tried to deauthorise it, but it told me it wasn't authorised)  It now tells me that I have authorised it on 5 computers, but I know it is only on that one computer (though I have just managed to copy it to my new iPod touch).
    I am nervous that this will happen again, and I will lose my purchased book.
    How do I deauthorise these other 4 times if it has only ever been authorised on this one computer? Does it count my dead iPod and recalled nano as authorised computers? - if so, how can I deauthorise them?
    I have just had a thought - my motherboard was replaced at one time - could this have any effect?
    Any help would be greatly appreciated!
    Thanks
    Barb

    Having posted this question, a few useful links came up on the right hand side. I believe I can de-authorise all computers, and then reauthorise just my one. (Mine was only authorised once)
    I hadn't realised that if my husband had authorised one music track from my library, then effectively he was authorised for all my downloaded tracks, even if he didn't have them on his computer.
    My dead iPod and recalled nano have nothing to do with it.
    I am still a bit mystified, but at least I can see a way forward.
    Barb

  • How do I get refund for being charged multiple times for single download

    I have just been charged multiples of times for my last three purchases . How do get refunded?

    Click Support at the top of this page, then click the link under Contact Apple Support

  • How do I prevent the patch from advancing multiple times per switch press?

    I'm using Mainstage 2.1.3 with a Roland RD-300SX. I have an FS-5U foot switch that I'd like to use to advance patches plugged into the Roland's control switch port. Regardless of what I've set the Roland to send for that port, it sends one or two messages with a value less than 127 before sending the value of 127. This causes Mainstage to advance 2 or 3 patches each time I press the switch.
    I saw that recent release notes said that this didn't happen for the sustain pedal now. Indeed, it does not. However, I need the sustain pedal to sustain.
    Is there any way to get Mainstage to only advance one patch in this situation? Perhaps set a threshold value for the action?

    I've had this problem - bad polarity on the pedal was my demon.
    I have found a very stable configuratio.
    On my 88 note midi-master keyboard, the lowest note has been assigned to step back one patch, and the next black note, to advance one patch.
    This works just fine, and these are notes I never use - just be careful if you do big "sweeps" of the keyboard to STOP before these last two notes.
    Sort of "off" subject.
    Mainsatge 2.2.1 and OS 10.7.4 are unstable.
    Deleting the "CPU/Ram" meter has been suggested as a fix, or shell out for MS 2.2.2
    Or, apparently OS 10.8 fixes the stability problem.
    Good luck

Maybe you are looking for

  • What is the path in the filesystem for the deployed Wendynpro application .

    What is the path in the filesystem for the deployed Wendynpro application in the WAB AS We have a different version of webdynpro application running in production and non production , what is the process for overwriting the deployed application from

  • I want Preview in Safari, Not Acrobat

    Ever since I installed Acrobat 7, whenever I open a PDF in Safari - it takes forever to open the document in Safari in an imbedded Acrobat window. I want to change this back to Preview - it's much faster. I tried moving the AdobePDFviewer plug in and

  • Multi Language 3rd party

    Hi, As you all might know, Apple had disabled using 3rd party keyboards in iOS 8 when filling Password fields (Apps, Safari, etc'...). Because of that i found an issue which is really make things uncomfortable for me. I am using both English and Hebr

  • 3D ray tracing and nvidia ge force gtx 860M

    Hi, I found these types of errors when I try to activate the 3D ray tracing for animations in AE CC 2014 trial: after effects error: ray-traced 3D: initial shader compile failed (5070 :: 12) after effects error: Ray-traced 3D: Can not create context

  • Converting 24 - 25fps

    I shot a music video on a Canon 5D mark II at 23.98 edited and completed in final cut pro until I was left with a Pro res 422 master. I've now been asked for a 25fps version. I've tried doing a conversion in Compressor but I got strange ghosting in t