Sparratic and random tween instances in library?

Out of all the many animations I have, I've recently discovered dozens of tween instances in my library
bits and pieces of animations and snippets of tweens randomly from my animations.
why is this happening, how can I stop it and most importantly how can I prevent this from ever happening?
This is extreamly annoying as there is not direct sign or alert telling me that i have created them and they show up in the middle of my animations not the entire thing which confuses me even more..will i have to redo all the hundreds of animations I've have already done now that I've discovered this issue?
I think it may stem from converting my vectors images to bitmaps but i am not sure.

i still don't know what I'm doing wrong....
my methodology is
step1) grab bitmap from library and place on stage.
step2) create keyframe at frame 260
step3) shift click and move horizontaly
step4) right click on timeline and create classic motion tween
- (two new tweens are created in the library)
-(delete one and the starting keyframe disapears, delete the other and the ending keyframe disapears)

Similar Messages

  • When importing photos from my iPhone black boxes appear in place of random photos in the library and in Photostream.

    When importing photos from my iPhone black boxes appear in place of random photos in the iPhoto library and in Photostream. It has no apparent pattern, the photos are just blank. It's not just icons, when I go to edit the photos externally in Photoshop it opens an image filled with nothing but black.
    This is more than annoying. It's effectively deleting photos I'm taking on vacation and so forth.
    Anyone?

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 
    Regards
    TD 

  • I'm trying to get organized and I just added a bunch of books and pdfs to my itunes library. They were all added immediately to my ipad and iphone even though, itunes automatically putting books on my idevices

    I'm trying to get organized and I just added a bunch of books and pdfs to my itunes library. They were all added immediately to my ipad and iphone even though I did not want this. I added them to itunes using add to library and I have both devices set to sync only selected books.
    How do I do this in the future so this doesnt happen? Its a lot of work to now manually erase them from each device and it sent my phone over capacity.
    thanks

    I dont see the difference in the posts. I dont think theres anything inaccurate or misleading about what I wrote. The items were immediately added to my ipad and my iphone, even though I have them both set to sync only select items. As soon as I added new titles to my itunes library, they were immediately added to the devices. Not on the next sync. Immediately. Both devices were plugged into the computer at the time. Sorry if I failed to mention they were plugged in but I dont see the signifigance youre making out of it. The problem persists anyway.
    Now that I did a test without the devices plugged in, the new items were still added as soon as I plugged my devices into the computer ( I do not have them set to sync over wifi).
    Since I have both devices set to manually select items to sync, of course I want to manually select new items to sync. For instance, I am not going to read any of these magazines or books on my phone, ever, and I dont want to waste valuable space with them.
    So I'm trying your advice:
    I just tried deselecting sync books. It erased all content from ibooks on my device. I then dragged
    one title onto the device, and it just goes back to syncing select books, with the one title selected.
    It appears that wont work to solve my issue. The next time I add something to itunes it will be put on my phone. Is this really something most people want? To select to manualy control what content is synced, but then have things automatically added. It seems inconsistent to me.

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • I just upgraded to Yosemite, downloaded iPhoto 9.6 and get this promptYour photo library is damaged or unreadable and cannot be opened. Please restore from a backup. Suggestions?

    I just upgraded to Yosemite, had to upgrade my iPhoto so downloaded iPhoto 9.6. My photo library needs to be upgraded to work with this new version of iPhoto but when it started to upgrade, this prompt appeared -Your photo library is damaged or unreadable and cannot be opened. Please restore from a backup.
    Suggestions?

    Try download iPhoto Library Manager and use its rebuild function. (In Library Manager it's the FIle -> Rebuild command)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 

  • My iPhoto library just reverted to an old library: How can I find, and re-access my current library?

    My iPhoto library just reverted to an old library: how can I find and re-access my current library?  I opened my iPhoto, and got the message that it needed to "update" to use this library.  I thought maybe there had been a software update since I last opened the program (2 days ago).  The library it opened was saved in a file on the desk-top.  My current file was just in iPhoto.  Please help!

    Best option: Restore from your back up.
    Otherwise:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • ITunes will quit working mid-song and will skip around entire library.

    In the most recent iTunes version running on windows 7, iTunes will not play through an entire song and skips around the entire library of music. Sometimes only the first few seconds of a song will play, and sometimes a little over a minute will play before it starts skipping around. iTunes has been uninstalled and reinstalled, and all the drivers have been uninstalled and reinstalled, and the computer is fully updated. This issue doesn't happen consistently or for any particular songs, and is very frustrating because it seems so random. All the music files used to work just fine, and no settings have been changed since it worked. Any ideas or help would be much appreciated!

    The simplest way to remove the song is to remove it from the Up Next list.
    Click on the Up Next icon and when you hover the cursor over the song, you will see an X appear to the left of the song. Click on the X to remove it.

  • Opened iPhoto 9.6 in Yosemite 10.0 and had to update my library.  Updated but now I don't see my photos.  Trying not to panic.

    Saying there are no photos in my library.  Should be over 13,000.  Went through update iPhoto requested upon start up.  Had a message box at beginning saying there was an issue with permissions which needs to be fixed.  Chose to fix and then update proceeded.  After a while iPhoto finished but if I click on Photos, Events, etc. in the library it is saying No photos in top right side of screen. 

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • I'm running iPhoto '08 on an eMac G4 using OS 10.5.8 and have lost my photo library. Any ideas to help me "find" it--I know it is on the disk?

    I'm running iPhoto '08 on an eMac G4 using OS 10.5.8 and have lost my photo library. Any ideas as to how to find it and /or rebuild it? I know it is there on my disk.

    However, in pictures there seems to be a complete set of my photos(?).
    I'm don't understand what you're saying here.
    In the iphoto window I somehow managed to open a type of "photo library" that includes every photo I've every downloaded on my computer in multiple and entirely random order.
    This can happen if someone inadvertently drags the HD icon or even the home folder icon to iPhoto Window. The best soluion for that is to restore from your back up.
    Regards
    TD

  • My ipad will not sync with all my music and films in my itunes library. I have just carried out a restart and sync again but still not showing all my music or films.

    My ipad will not sync with my library in itunes, i have music and films in my itunes library but they will not transfer to my ipad. I have just carried out a restart to factory settings and then sync of my back up but still no joy. Any suggestions?

    Have you selected the content to sync to your iPad in your sync settings in iTunes. The content that you want to transfer must be selected (checked or "ticked") to sync out will not transfer when you sync.
    For instance - if you want to sync music....
    Connect the iPad to the computer and launch iTunes.
    Click on the iPad name on the left side under devices.
    Click on the Music Tab on the right.
    Click on the albums or playlists that you want to sync - or the entire library if you like.
    Click on the Sync Music Heading.
    Click on Apply in the lower right corner of iTunes
    This applies to all content that you want to transfer from iTunes to your iPad. Make the selections in the appropriate tabs in the iTunes window on the right.

  • Screensaver, random transitions and random photos

    Hi all, a simple question I hope.
    How can I create a screensaver which will display random photos from my library with random transitions between photos?
    I've got the random photos part working but despite many hours, I can't work out how get random transitions in the screensaver.
    Many Thanks

    I updated my themes and uploaded to my gallary on Muvipix. Here is the link to the post over there.
    http://muvipix.com/phpBB3/viewtopic.php?f=57&t=3890&start=0&st=0&sk=t&sd=a

  • I have a new Windows tablet computer with limited hard drive space, and cannot transfer my itunes library to the hard drive. Can I run t media from an external hard drive? If so, how do I transfer my files?

    I have a new Windows tablet computer with limited hard drive space (32 GB), and cannot transfer my itunes library to the hard drive. Can I run itunes from an external hard drive? I have tried to follow some of the directions on this site, but am having no success. Thanks.

    iTunes will run fine with the media on an external drive.
    However, I suggest that a tablet computer with a tiny hard drive is not ideal as the primary computer for managing an iTunes library, even a small one. If you have another machine, perhaps a big, boxy, inexpensive old desktop with a decent amount of storage, that might be a better choice.
    http://support.apple.com/kb/HT1364

  • My old computer crashed and I lost my old library of recorded CD's and new music.  I downloaded iTunes again and found my old account info.  How do I add a new CD without deleting all of my music on my iPod?

    My old Computer crashed and I lost my old library of recorded CD's and tunes.  iTunes says I must delete everything off my iPod in order to add a new CD.  It also said I already have an account which I was able to locate.  I don't know how to get into my old account.  I think that would solve everything.  I have Windows XP.  I'd appreciate any input.

    No.
    All iTunes content on your iPod Touch should be in your iTunes library on your computer, and your iTunes library on your computer should be included with your computer's backup along with all other important data - stored on an external drive or some other external media used for backup purposes only.
    When music was purchased on a CD, if the CD was lost and you returned to the store where the CD was purchased with your receipt, were you given a replacement CD?
    The same applies here.

  • I already have adobe digital editions on my mac pc and download books from the library to my android e-reader. Can I use the same digital editions on my ipad air, or do I need to load a different one onto my ipad?

    I already have adobe digital editions on my mac pc and download books from the library to my android e-reader. Can I use the same digital editions on my ipad air, or do I need to load a different one onto my ipad?

    Try following forum:
    Adobe Digital Editions

  • New computer--do i erase ipod and sync with new itunes library?

    I downloaded itunes on my ancient pc and that's where I synced my ipod. i finally put that pc out to pasture and now have a new laptop. i downloaded itunes to the new computer, and when i hooked up my ipod i got the message "the ipod is synced with another itunes library. Do you want to erase this ipod and sync with this itunes library?" So do I want to erase and sync or not? I'm scared I'm going to mess everything up if I erase it.
    One more question: my daughter got a new ipod; once i figure out this syncing issue with my existing ipod, do I need to set up a new account for the new ipod, or can i sync it with the account i already have?
    sorry for all the questions--I'm a newbie and want to get this right. Thanks for your help!

    Hello. I recently had to restore my computer (as if it was new due to, to many viruses) Afterwards itunes was still there but the music i have on my ipod was not previously purchased through itunes but they were on my computer and placed in itunes library and sent to my ipod. Well after restoring my pc, itunes opened up when i connected my ipod and it asked me to update. So i updated to itunes 10. Now it is telling me that this ipod is registered to my fiance' and it is running off a different itunes library, and that I would either need to erase and sync to the new library in itunes 10, or transfer to itunes 10 library. I tried transfer and restarted itunes, but it just asked me the same questions again. It wouldnt let me create new place lists either. im scared to erase bc i have so many songs i wont remember what there all were to go back and download if it actually erases all my current songs or applications. I assumed when itunes updated to itunes 10, it would update with all my information. And although the ipod is registered in his name or however he did that, I also have sum form of account with apple/itunes because it uses my email address and my credit card during purchases for this ipod (his name is just there). i dont understand what I am suppose to do to fix this problem. These songs are still on my computer and the program where i downloaded them from but since i had to restore the whole computer, its like they are probably hidden files and arent being detected i guess. I really dont know. I have been reading and I see many ppl with the same issue. Any suggestions that wont cost me anything or a little of nuthing to resolve? I heard of Tansee Ipod Transfer but it charges you to move your files from your ipod, into a folder, to your computer, and then to be added to your itunes. Any suggestions would be appreciated.
    Thanks...Lana

Maybe you are looking for

  • Ipod restore error (1611)

    Hello, i am having trouble with my ipod touch 2nd gen. I got it all working and fine when i first got it. But one day, when i tried to charge it with my computer, it wouldnt recognize in my itunes. Then, i tried to do the 5 R's, then i finally restor

  • Account assignment defaulting to U after MRP run

    hello, i have got one ticket the material is non valuated (UNBW)- when MRP is run - purchase requisitions are getting generated  as having default acount assignment category "U". This is creating problem in automatic creation of PO as U category is n

  • Small chain link icon on status bar

    I connected my ipod to my mac mini via bluetooth, and a small chain link icon appeared next to the word "ipod" on the status bar. Does any one know what this icon means?

  • Bookmarks in z10

    I have to say I'm quite impressed by the speed of the new z10 browser. The one area where I find it frustrating though is the organization of the bookmarks. I have no control over how the book marks are organized. I can't control what order they are

  • Unhandled Exception of type Exception

    Im getting an error message that says Unhandled Exception of type Exception when trying to us a method or when im trying to call a vector. What does that mean? Am i missing something? I would really appreciate your help.