Xcode 4.2 Example runs once then stuck

I was having an issue, so I went back to a book example and found the same problem.  I am trying to create a very simple NSDictionary application under Cocoa.  At an early point I tried 'build and run' and it worked to bring up the screen I am constructing.  However, when I stop that run, and then repeat build and run, it never shows the screen.  It comes up with the following message and seems to be in a loop from there.  The number seems to be an almost random number.  I am sure it is a novice error, but it is stopping all progress!  Any help would be appreciated.
tty /dev/ttys000
[Switching to process 4792 thread 0x0]

Thanks.  The code is pretty short, so I am including it all.  It really is beginner level.  I am sure I just need an experienced eye to point out some mis-direction on my part.  Thanks for any coaching I can get.  I only wrote the first method and added a line to the init method.  It has occurred to me that perhaps this has something to do with the upgrade from Xcode 3.x to Xcode 4.2.  The book example I am following was written to Xcode 3.  The book examples had similar errors with NSDictionary and NSArray examples.
Document.h
#import <Cocoa/Cocoa.h>
@interface Document : NSDocument
    NSMutableDictionary *mainDictionary;
    IBOutlet NSTextField *kRefInField;
    IBOutlet NSTextField *dataInField;
- (IBAction)storeRefAndData: (id)sender;
@end
Document.m
#import "Document.h"
@implementation Document
- (IBAction)storeRefAndData: (id)sender
    NSString *kRefToStore = [kRefInField stringValue];
    NSString *dataToStore = [dataInField stringValue];
    [mainDictionary setValue:dataToStore forKey:kRefToStore];
- (id)init
    self = [super init];
    if (self) {
        // Add your subclass-specific initialization here.
        // If an error occurs here, return nil.
        mainDictionary = [[NSMutableDictionary alloc] init];
    return self;
- (NSString *)windowNibName
    // Override returning the nib file name of the document
    // If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
    return @"Document";
- (void)windowControllerDidLoadNib:(NSWindowController *)aController
    [super windowControllerDidLoadNib:aController];
    // Add any code here that needs to be executed once the windowController has loaded the document's window.
- (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
     Insert code here to write your document to data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning nil.
    You can also choose to override -fileWrapperOfType:error:, -writeToURL:ofType:error:, or -writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
    NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented", NSStringFromSelector(_cmd)]userInfo:nil];
    @throw exception;
    return nil;
- (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError **)outError
    Insert code here to read your document from the given data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning NO.
    You can also choose to override -readFromFileWrapper:ofType:error: or -readFromURL:ofType:error: instead.
    If you override either of these, you should also override -isEntireFileLoaded to return NO if the contents are lazily loaded.
    NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented", NSStringFromSelector(_cmd)]userInfo:nil];
    @throw exception;
    return YES;
+ (BOOL)autosavesInPlace
    return YES;
@end
Re: [Switching to process 2576 thread 0x0] 

Similar Messages

  • Xcode 3.x to 4.2 transition - Runs once then stuck

    I am teaching myself Xcode from a good book.  However I ran into a strange thing where a code example runs once in Xcode 4.2 and after that builds clean but gets in a loop when running and never even brings up the screen I set up in XIB.  It doesn't matter if I change the code or not.  The message showing in the debugger is [Switching to process 5521 thread 0x0] - the number seems to be rather random.  The first run was clearly stopped using the menu quit command, but it is like it is trying to write over itself or something.
    It finally dawned on me that perhaps this has something to do with the upgrade from Xcode 3.x to Xcode 4.2.  The book example I am following was written to Xcode 3.  The book examples had similar errors with NSDictionary and NSArray examples.
    The code is pretty short, so I am including it all.  It really is beginner level.  I am sure I just need an experienced eye to point out some mis-direction on my part.  Thanks for any coaching I can get.  I only wrote the first method and added a line to the init method. 
    Document.h
    #import <Cocoa/Cocoa.h>
    @interface Document : NSDocument
        NSMutableDictionary *mainDictionary;
        IBOutlet NSTextField *kRefInField;
        IBOutlet NSTextField *dataInField;
    - (IBAction)storeRefAndData: (id)sender;
    @end
    Document.m
    #import "Document.h"
    @implementation Document
    - (IBAction)storeRefAndData: (id)sender
        NSString *kRefToStore = [kRefInField stringValue];
        NSString *dataToStore = [dataInField stringValue];
        [mainDictionary setValue:dataToStore forKey:kRefToStore];
    - (id)init
        self = [super init];
        if (self) {
            // Add your subclass-specific initialization here.
            // If an error occurs here, return nil.
            mainDictionary = [[NSMutableDictionary alloc] init];
        return self;
    - (NSString *)windowNibName
        // Override returning the nib file name of the document
        // If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
        return @"Document";
    - (void)windowControllerDidLoadNib:(NSWindowController *)aController
        [super windowControllerDidLoadNib:aController];
        // Add any code here that needs to be executed once the windowController has loaded the document's window.
    - (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
         Insert code here to write your document to data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning nil.
        You can also choose to override -fileWrapperOfType:error:, -writeToURL:ofType:error:, or -writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented",NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return nil;
    - (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError**)outError
        Insert code here to read your document from the given data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning NO.
        You can also choose to override -readFromFileWrapper:ofType:error: or -readFromURL:ofType:error: instead.
        If you override either of these, you should also override -isEntireFileLoaded to return NO if the contents are lazily loaded.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented",NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return YES;
    + (BOOL)autosavesInPlace
        return YES;
    @end

    I am teaching myself Xcode from a good book.  However I ran into a strange thing where a code example runs once in Xcode 4.2 and after that builds clean but gets in a loop when running and never even brings up the screen I set up in XIB.  It doesn't matter if I change the code or not.  The message showing in the debugger is [Switching to process 5521 thread 0x0] - the number seems to be rather random.  The first run was clearly stopped using the menu quit command, but it is like it is trying to write over itself or something.
    It finally dawned on me that perhaps this has something to do with the upgrade from Xcode 3.x to Xcode 4.2.  The book example I am following was written to Xcode 3.  The book examples had similar errors with NSDictionary and NSArray examples.
    The code is pretty short, so I am including it all.  It really is beginner level.  I am sure I just need an experienced eye to point out some mis-direction on my part.  Thanks for any coaching I can get.  I only wrote the first method and added a line to the init method. 
    Document.h
    #import <Cocoa/Cocoa.h>
    @interface Document : NSDocument
        NSMutableDictionary *mainDictionary;
        IBOutlet NSTextField *kRefInField;
        IBOutlet NSTextField *dataInField;
    - (IBAction)storeRefAndData: (id)sender;
    @end
    Document.m
    #import "Document.h"
    @implementation Document
    - (IBAction)storeRefAndData: (id)sender
        NSString *kRefToStore = [kRefInField stringValue];
        NSString *dataToStore = [dataInField stringValue];
        [mainDictionary setValue:dataToStore forKey:kRefToStore];
    - (id)init
        self = [super init];
        if (self) {
            // Add your subclass-specific initialization here.
            // If an error occurs here, return nil.
            mainDictionary = [[NSMutableDictionary alloc] init];
        return self;
    - (NSString *)windowNibName
        // Override returning the nib file name of the document
        // If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
        return @"Document";
    - (void)windowControllerDidLoadNib:(NSWindowController *)aController
        [super windowControllerDidLoadNib:aController];
        // Add any code here that needs to be executed once the windowController has loaded the document's window.
    - (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
         Insert code here to write your document to data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning nil.
        You can also choose to override -fileWrapperOfType:error:, -writeToURL:ofType:error:, or -writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented",NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return nil;
    - (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError**)outError
        Insert code here to read your document from the given data of the specified type. If outError != NULL, ensure that you create and set an appropriate error when returning NO.
        You can also choose to override -readFromFileWrapper:ofType:error: or -readFromURL:ofType:error: instead.
        If you override either of these, you should also override -isEntireFileLoaded to return NO if the contents are lazily loaded.
        NSException *exception = [NSException exceptionWithName:@"UnimplementedMethod" reason:[NSString stringWithFormat:@"%@ is unimplemented",NSStringFromSelector(_cmd)]userInfo:nil];
        @throw exception;
        return YES;
    + (BOOL)autosavesInPlace
        return YES;
    @end

  • App-V 5 Application runs once then errors

    Hello Experts,
    I'm running an App-V 5.0 SP1 Management Server and Publishing Server on Server 2012 R2. My Sequencer and Client are App-V 5.0 SP2 from the current MDOP 2013 R2.
    The target systems are all running TrendMicro Antivirus, but I'm not sure, if that could be related, as the applications can run once. I'm afraid I can't uninstall or deactivate the AntiVirus in the case :-(
    I can sequence applications fine and run them once on any given system. But as soon as the application has been run once, it cannot be run on any system anymore. It errors out with the message:
    "A Problem caused the program to stop working correctly. Please close the program" then when clicking close the program, a new error message pops up: "The application was unable to start correctly (0x00000005). Click OK to close the application"
    In this case, it's FireFox, but the problem isn't related to the sequenced app - it happens to all app-v applications. If I export the sequenced app to my lab environment, the application works fine and does not through any errors.
    Here are the event viewer logs:
    Application Log:
    Faulting application name: firefox.exe, version: 27.0.1.5156, time stamp: 0x52fc0faa
    Faulting module name: MSVCR100.dll, version: 10.0.30319.1, time stamp: 0x4ba1dbbe
    Exception code: 0xc0000005
    Fault offset: 0x000407a6
    Faulting process id: 0x1668
    Faulting application start time: 0x01cf3865e9e27497
    Faulting application path: C:\Users\setup\AppData\Local\Microsoft\AppV\Client\Integration\C36655B9-CE43-445D-91CE-CCCCD2D8ABD1\Root\VFS\ProgramFilesX86\Mozilla Firefox\firefox.exe
    Faulting module path: C:\Users\setup\AppData\Local\Microsoft\AppV\Client\Integration\C36655B9-CE43-445D-91CE-CCCCD2D8ABD1\Root\VFS\ProgramFilesX86\Mozilla Firefox\MSVCR100.dll
    Report Id: 284ea35b-a459-11e3-955e-001dd8b71c30
    App-V Admin Log:
    Error encountered while executing command Mount-AppvClientPackage -PackageId abf22cdc-27ea-4d63-a937-d3824ce71196 -VersionId 9d3c1bfb-5ecc-4aa0-be9a-0f2811f5ae1a. Error: Application Virtualization Service failed to complete requested operation.
    Operation attempted: Mount Package.
    Windows Error: 0x80004004 -
    Error module: Streaming Manager. Internal error detail: 74F0282C80004004.
    Please consult AppV Client Event Log for more details.
    A virtual application could not be launched from package '' because the App-V Client Service is not running. Start the App-V Client Service and try again.
    Any Ideas? 
    Cheers,
    Fred

    Hello,
    Have you tried this hotfix?
    http://blogs.technet.com/b/appv/archive/2014/03/03/hotfix-package-2-for-microsoft-application-virtualization-5-0-service-sp2-is-now-available.aspx
    Nicke Källén | The Knack| Twitter:
    @Znackattack

  • Xcelsius runs only once, then the "play=true" needs to be reset.

    Post Author: stephantmi
    CA Forum: Xcelsius and Live Office
    When I export into PowerPoint the dashboard will only run one time... I then need to goto properties and find "play" and change from "false" to "true". I found a website that stated "Note: we've recently discovered that if the flash movie is scripted to stop
      playing rather than loop or repeat then this command appears to be passed to
      PowerPoint - this results in the play command being reset to false. The simple
      solution (if you've got the source flash file) is to remove the offending command,
      alternatively you'll have to save the presentation with play set to true and
      not run it again until ready to present - it'll only run once and will need
      resetting before it'll work again!" How do I send out a PowerPoint that would allow the person I would email the presentation to run the slide show and interact with the dashboard if it doesn't initiate without manual intervention.

    Post Author: abrat
    CA Forum: Xcelsius and Live Office
    I assume this is with X2008?   BTW. Right-clicking on the flash and choosing 'play' should also work. This is an Adobe issue. They have increased the security on the use of flash files.  They are afraid of malicious use and viruses so they now require manual intervention.  You could contact Adobe and let them know how this security feature is affecting you. Xcelsius is also currently in talks with them. - Andy

  • Limiting script to run once or twice

    I have this script which I'm trying to collect snmp stack based on the %SNMP-3-INPUT_QFULL_ERR. But my concerns is that when these error starts they run for about 2 hours and I get thousands of syslog entries for this error. I want to be able to limit this script and may run once or twice regarldess of how many error I get. Can someone assist me in tweaking this?
    Thanks.
    event manager session cli username "username"
    event manager applet SNMP_STACK
    event syslog pattern "%SNMP-3-INPUT_QFULL_ERR" occurs 32
    action 1.0 cli command "enable"
    action 2.1 cli command "show clock | append bootflash:SNMP_STACK.TXT"
    action 2.2 cli command "show proc cpu sort | append bootflash:SNMP_STACK.TXT"
    action 3.1 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"
    action 3.2 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"
    action 3.3 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"
    action 3.4 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"
    action 3.5 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"
    action 3.6 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"
    action 3.7 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"
    action 3.8 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"
    action 3.9 cli command "show stacks 560 | append bootflash:SNMP_STACK.TXT"

    One way to do this would be to have this applet install a second, timer-based applet then sets the event detector type of itself to "none".  The second applet would countdown the number of seconds that correspond to your time window, then reconfigures the event detector on the first applet to be your syslog event.  For example:
    event manager environment q "
    action 4.0 cli command "config t"
    action 4.1 cli command "event manager applet stack-countdown
    action 4.2 cli command "event timer countdown time 7200"
    action 4.3 cli command "action 1.0 cli command enable"
    action 4.4 cli command "action 2.0 cli command $q config t$q"
    action 4.4 cli command "action 3.0 cli command $q event manager applet SNMP_STACK$q"
    action 4.5 cli command "action 4.0 cli command $q event syslog pattern %SNMP-3-INPUT_QFULL_ERR$q"
    action 4.6 cli command "no event manager applet stack-countdown"
    action 4.7 cli command "event manager applet SNMP_STACK"
    action 4.8 cli command "event none"
    action 4.9 cli command "end"

  • Mail bounces once then won't open

    I guess that kinda sums it up. Mail, when you click on it in the dock, bounces once, then just sits there staring at me, and fails to open. I've run a Disk repair thing just in case it was accessibility, but that hasn't helped.
    I looked at it in Terminal and got this:
    dyld: /Applications/Mail.app/Contents/MacOS/Mail malformed library: /System/Library/PrivateFrameworks/HTMLDisplay.framework/Versions/A/HTMLDisplay (not a Mach-O file, bad magic number)
    Trace/BPT trap
    I haven't a clue what this means! I don't suppose anyone knows how I can restore access to Mail?
    Thanks in advance!

    It means that there is something wrong with your Mac OS X installation.
    What does “I've run a Disk repair thing” mean? Quit all the applications and verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all the filesystem issues, if any, reinstall the Combo Update for the type of computer and the version of Mac OS X you’re using (which you haven’t provided and doesn’t appear in your profile either), unless this is the version of Mac OS X that came with the computer:
    Mac OS X 10.3.9 Combo Update
    You may also have to reinstall the following Security Update, which includes most of the security updates released after Mac OS X 10.3.9:
    Security Update 2007-007 for Mac OS X 10.3.9
    Take a look at the following articles for guidelines on how to properly install system updates:
    Troubleshooting installation and software updates
    Installing software updates
    Basically, you should verify/repair the startup disk and back up before installing the update, no applications should be running while installing it, and you may experience unexpected results if you have third-party system software modifications (not normal applications) installed.

  • I am trying to install xcode on a macpro running OSX 10.6.8 .  It installs, but with the error that there is no unix support.Do I have to upgrade to Lion 10.7 to do this? And if so, is this a free upgrade if I have the extended 3 yr support?

    I am trying to install xcode on a macpro running OSX 10.6.8 .  It installs, but with the error that there is no unix support.   Do I have to upgrade to Lion 10.7 to do this? And if so, is this a free upgrade if I have the extended 3 yr support?
    thx,
    Pandabig

    Xcode 4.x cannot be installed on Snow Leopard.  You need a 3.x.  So if that is what you used then yes, you need to install lion.   If connect.apple.com still alows registration or logins using an existing appleid then you could download the last xcode 3.2.6 for free.

  • Help changing a run continuously VI into a run once

    Hi,
    I know that I am probably going to invoke the wrath of the labview gods with this request by not going through my tutorials again but I am unfortunately stuck and
    getting a bit of a brain freeze on this one.
    I have a VI for a flow meter, that runs perfect when I hit run continously but I need to add this to another VI that just runs once so I am trying to convert. 
    I have had previous suggestions in another thread to replace the for loop with a while loop. Add a Stop button on the front panel and wire it to the Stop it True terminal in the loop.
    Move the Waveform Chart and Flow Rate terminals inside the loop. I have done this but the VI does not run correctly, the dial just keep accumalating/adding and not resetting.
    Any alternate approaches that I can try would be greatly appreciated.
    Thank you.
    Attachments:
    Flow Meter 2.vi ‏56 KB

    I tried to do some cleanup and got away from that stupid Express VI.  Your loops really should be combined otherwise you have one nasty race condition with your local variable.  I also found a nice property node for the counter to reset its count.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Flow Meter 4.png ‏41 KB

  • Using an own function in a select how can i set that the function run once?

    Hi
    Using an own function in a select how can i set that the function run once, not in every row?
    Please help me
    Thanks
    Viktor

    Something like this ?
    SQL> select * from dept;
        DEPTNO DNAME                          LOC
            10 ACCOUNTING                     NEW YORK
            20 RESEARCH                       DALLAS
            30 SALES                          CHICAGO
            40 OPERATIONS                     BOSTON
    SQL> create or replace function ret_name (deptnum in number) return varchar2
      2  is
      3     name    varchar2(50);
      4  begin
      5     select dname into name
      6     from dept
      7     where deptno=deptnum;
      8     return name;
      9  exception
    10     when no_data_found then
    11             return('Not existent deptno');
    12* end;
    SQL> /
    Function created.
    SQL> select deptno, decode(rownum,1,ret_name(deptno),null) dname from dept;
        DEPTNO DNAME
            10 ACCOUNTING
            20
            30
            40
    SQL>

  • I'm having trouble downloading firefox. The install wizard runs but then I am unable to run the program either from the short cut or the program menu

    Firefox basically stopped working. Would not access any web pages. Internet expolorer works fine so this is not a connectivity issue.
    I tried to re-intall firefox several times (once w firewall off) unsuccessfully. No error messages. The install wizard runs but then I can't start the program. The short cut icon does not look right. It looks like a web page instead of the firefox logo. When I click it I get the message "windows is looking for Firefox.exe".
    It appears as though the exectutable file is not installing.

    It sounds like the acorn had a white background that you grouped with the acorn. Hence when you selected another color the entire object looked red. Look in the layers panel for one acorn and see how many objects make up the acorn. One of the objects for that acorn should have a fill of none or white. That object you can delete. Now try and fill the object with a color and see if it is ok. If it is, you can do the same to the remaining acorns. If not post the AI file and someone can check for you.

  • Run Once Wrapper

    After I have logged in my desktop turns black. Mouse is working and I can start the Taskmanager. When I delete a process called Run Once Wrapper (runonce.exe) I get back the normal desktop and the PC seems to work OK. I have scanned for virus and malware, found no problem. According to HP is this problem caused by a virus.
    Tom
    This question was solved.
    View Solution.

    Hi Tom,
    Stop the process running as you've already done using Taskmanager, then download and run Autoruns on the following link.
    https://technet.microsoft.com/en-us/sysinternals/bb963902.aspx
    Look at what's trying to be launched from the RunOnce wrapper - there will probably be 2 similar entries, one starting HKLM and the other starting HKCU.
    Post back with what's listed.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Run Once still runs on every refresh

    I have a bundle Launch action that is set to Run Once for first user that logs in. However, for my test user (the bundle is still in Sandbox mode for testing), the bundle is getting run every time the agent refreshes. What gives?

    Originally Posted by kjhurni
    Hmm, going back and looking, we may just be coding around it. I think that if it's sandboxed that may be intended behavior since there's no version number.
    We usually code in the system requirements for things so that it can't/won't install (so you don't get into endless reboot loops).
    If Craig gets a chance he can probably confirm/deny.
    I would suspect it is intended for the reason you state. (No Version number and a need to run the "test" bundle over and over until it is fully tested and the bundle goes live and then it is really run once.)
    I was just testing "Run Once" functionality on ZCM 11.3.1 MU1 in regards to whether "ShortCuts" appear or disappear.
    For Sandbox, the answer was No.
    Non-Sandbox Yes.
    Thus I would expect the same result from "Launch Actions".

  • Run once only jar

    Hi
    Not sure about this but ...
    I'm looking into the feesability of creating a jar file than can be run once - and only once.
    The idea is to send a small jar file to a client that will activate a program. However, once executed then the jar will fail to execute on any other PC.
    Like I say, not sure if this is feesable but thought I'd post the question anyway.
    Thanks in advance guys.
    GB

    greenockboy wrote:
    ..I'm looking into the feesability of creating a jar file than can be run once - and only once.
    The idea is to send a small jar file to a client that will activate a program. However, once executed then the jar will fail to execute on any other PC.Not feasible.
    Thanks in advance guys.No worries (in advance).

  • Motion plays once then stops responding

    Have all upgrades, run on quad 2.5, 8 gigs ram. Motion would continiously play (stop button would not work), then stop responding. Now, it will play once then not respond. Have not reinstalled software, but did trash pref files. Suggestions?

    Thanks Patrick... on all projects... but did re-install Motion, and not responding has not happened. But many times, it still will not stop playing. I have to wait unitl it plays to the end mark. Ideas?

  • I create an apple id then i want to verify it, i verify it once then  when i log in with my apple id it asked mi again to verify it.everytime i log in it asked me to resend verication and after i resend it i press done. Please can anyone help me ?

    I create an apple id then i want to verify it, i verify it once then  when i log in with my apple id it asked mi again to verify it.everytime i log in it asked me to resend verication and after i resend it i press done. Please can anyone help me ?

    How are you verifying it?  Are you responding to the email that is sent?  If not, do so.
    If so, then try changing your password.

Maybe you are looking for

  • BizTalk Map - Xslt Issue

    Hi, Here is a piece of xslt, i need to replace the characters with their shortcode which are not supported in xml. For eg i need to replace '&' to '&amp' and similarly all other characters as mentioned Unsupported characters and their replacements: &

  • HTTP Submit to SMTP Server (to send completed PDF copy) - possible?

    I've read various blogs re: HTTP Submit and the requirements of a web service, servlet, jsp, etc. I was wondering if was possible to setup an HTTP submit button to point to a mail server to send a copy of a completed form to a specific email address?

  • Why does the norwegian apple store deem this text inappropriate for a gift box?

    "Gratulerer med 25 års dagen! Jeg Elsker Deg! Masse Kyss og Klemmer fra Meg." .. and why don't they have web support for the store? or at least a contactable web administrator? Don't they want feedback on when they loose customers due to broken funct

  • Best option for payload monitoring

    Hi Experts, I have a scenario, where I need to monitor the message based on some mesage payload field values. I have implemeted: https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/4fbe7b8e-0a01-0010-b69b-b7e717378f22?overridelayout=t

  • Troubleshooting slow AirDrop?

    Hello, I am expereiencing very slow AirDrop speeds between my Mac Pro and Macbook Air (both on Yosemite, but has always been slow). I am seeing about 1.5 megabytes/sec... What are some steps I can take to troubleshoot why the speed is so slow?