Divide object (letter in this case) into equal multiples object

Hey,
I want to divide object into multiple object equally distribued. But my object is a "S", this is not a basic rectangle.
And i want to apply this technique to other objects.
I don't know if it's possible to do that with illustrator because it seems a little bit complicated.
I made those beautiful lines to make you understand
Any idea ?

Plugz,
Always work on a copy with things like this.
You may:
1) Create a copy of the S shape, lock the original and work with the copy;
2) With the Direct Selection Tool click the straight segments (top right and lower left) and Delete them; if the remaining two curved paths form a Compound Path, Object>Compound Path>Release, and if they form a Group, Ctrl/Cmd+Shift+G to get two independent paths;
3) Object>Blend>Blend Options, set Spacing>Specified Steps and set the number to the intermediate curves (4 in your image);
4) Select the two paths from 2) and Object>Blend>Make;
5) Unlock the original.
This will give you the original S with the added curves.
If you wish, you may create separate closed S shapes based on pairs of curves as follows:
6) Select the two innermost new curves and Ctrl/Cmd+J to join them;
7) Repeat 6) for the two outermost new curves.

Similar Messages

  • What's wrong with a "regular" global in this case? AND WIl ActiveX objects stored in functional globals remain valid (when used in an executable)?

    I've written a plugin layer for a LV executable.  When this layer makes a call to the plugins' initialization functions, I want each plugin library to be able to initialize and maintain its own global memory (where things like VISA resource names or ActiveX objects are stored).  However, I've found that I can't manage to keep my global VIs "alive."  I'm inclined to switch to functional globals, but I suspect that this will be a problem for things like ActiveX objects (that in this particular case reference a CAN interface).  I believe that the functional global will indeed store the object from run to run, it's just that I'm somehow disinclined to think that the object will remain valid.  I think you'll have to re-initialize it.  Can anyone speak for or against this hunch?  (If you can't tell, I'm trying to avoid building a whole little test executable just to debug this problem.)
    I suppose the more profound question is "Why don't the globals stay in memory?"  I'm attaching an image of what the application layer that calls the plugins' intializations looks like.  Next I'm attaching an example of an actual initialization routine.  You'll notice that I've even gone so far as to explicitly open the ref to the global VI that I want to keep in memory.  Then I just leave it there dangling - but it still gets dropped!  In my mind I shouldn't even have to do this, since the dynamically-called subVI "MC_CMO Init.vi" actually initializes the globals and runs with AutoDisposeRef = False. 
    Lastly, this is my first-ever attempt at writting plugin software.  So if you look at my code and have any criticisms/pointers, I'll greatly appreciate them.
    Thanks in advance,
    Nick
    "You keep using that word. I do not think it means what you think it means." - Inigo Montoya
    Attachments:
    AppLayer.JPG ‏60 KB
    InitPlugin.JPG ‏103 KB

    I am not sure if I follow you completely on your work-around.
    Everything I have to say on this topic is based on obesrvations and threads I have read on Info-LabVIEW. Therefore it is subject to corecttion by those who know better.
    LV is smart enough to know when "something" that had been opened, can be closed. It is not perfect.
    If for instance you open a VISA refnum and pass the refnum  to a LV2 AS A REFNUM the refnum in the LV2 stay alive as long as the VI's are running.
    If you start another VI that uses the LV2 to fetch the refnum, it should get a valid ref as long as it starts before the first goes idle.
    You then be able to work with refnum usign the VI launched second as long as stays active.
    I often create action engine that can be invoked where required throughout an application. If the action engines get a ref in one state (like init) and use it another, I will generally write a "tester" that calls the action engine action to test the engine. In this case, my "tester" stays live and it keeps the ref's fresh.
    I suspect if you tried to trick LV you could. If you type cast the ref nums to I32 and stored those in a LV2, I could see how LV could loose track of the resource sharing, but that is something I would avoid.
    So I encourage you to do some experimenting with keeping track of who's running when to see if your work-around will work.
    If you think you understand it better than I explained it, please post.
    Trying to help,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to remove/avoid faint line after dividing objects and recoloring intersection

    I created two rings which  should pass through each other similar to the olympic rings.
    I recreate the two rings (both objects, filled no stroke) and position them. I  select them both and click divide using the pathfinders tool.
    I then change the color of one point of intersection to that of the background ring (in this case from pink to black).
    However, as shown in the image below a very faint line is left. This shows up when I create a .pdf file of the ring.
    How can I prevent this faint line from showing? Have searched for the answer but can't find it.

    Probably just an artifact. But you can select that oath and look at the appearance panel and make sure it only has on fill and no stroke.
    Orr you can turn that into alive paint group and use the Live Paint Bucket to fill it with black even though it already is black.
    Or you can redo this by creating outlines of the rings as you did before  selecting both outline rings and clicking on the live paint bucket to turn the art into a live paint group and fill the segment with black.
    If using CS 5 you might want to hide the original path after using the outline stroke command.
    In CS5 when you outline a stroke the original Path is preserved so you either want to use it delete it or turn its visibility off.
    This is the result of the live paint group method

  • How to divide a grid (an 2D array) into subgrids? [Suduko]

    Hey guys
    I've been struggling with a problem with my Suduko program for a few days now and thought I could get some help here.
    The problem is that I have no idea how to divide a Suduko grid and stuff them into subgrids.
    My current plan is to go through the Suduko array r * c times (where r and c is the dimensions of a subgrid) and stuff the cells into my quad array (somehow). I've gone through the sourcecode of 4 suduko programs on sourceforge, but still can't find a solution (mainly because I can't read other prog. lannguages yet).
    My code:
    * easyIO is a packadge that enables read/write to files
    * and enables communication between the user and the program via the command-line
    * You can find this packadge here: http://www.universitetsforlaget.no/java/easyIO.zip
    import easyIO.*;
    /** Initialises the board */
    class Oblig2
         public static void main(String[] args)
              /** If there is a argument in the command line (the filename to be used in this case),
               *  then send that argument with a new Board
              if(args.length >= 0)
                   Board suduko = new Board(args[0]);
    class Board
         /** Constant (yeah, no final int) that defines the board dimensisions, if dimension is 6, then the board is 6 x 6 */
         int dimension;
         /** The quad dimensions */
         int quadRow;
         int quadCol;
        Cell[][] cells;
        Row[] row;
        Col[] col;
        Quad[] quad;
         * Board contructor defines the boards properties
         * @param filename comes from Oblig2.main()
        Board(String filename)
              /** In is a class of easyIO, inFile will contain the contents of the file */
              In inFile = new In(filename);
              dimension = inFile.inInt("\n"); System.out.print(dimension + "\n");
              quadRow = inFile.inInt("\n"); System.out.print(quadRow + "\n");
              quadCol = inFile.inInt("\n"); System.out.print(quadCol + "\n");
              inFile.readLine();
              /** Creates all the neccessary cell, row, cols and quad arrays */
              cells = new Cell[dimension][dimension];
              row = new Row[dimension];
              col = new Col[dimension];
              quad = new Quad[quadRow * quadCol];
              /** Initializes all the rows */
              for(int i = 0; i < row.length; i++)
                   row[i] = new Row(dimension);
              /** Initializes all cols */
              for(int i = 0; i < col.length; i++)
                   col[i] = new Col(dimension);
              /** Initializes all quads */
              for(int i = 0; i < quad.length; i++)
                   quad[i] = new Quad(quadRow, quadCol);
              /** Initializes all cells and puts them in rows and cols */
              for(int i = 0; i < cells.length; i++)
                   for(int j = 0; j < cells.length; j++)
                        cells[i][j] = new Cell();
                        row[i].addCell(cells[i][j]);
                        col[j].addCell(cells[i][j]);
                        cells[i][j].addRCpointer(row[i], col[j]);
              for(int i = 0; i < (quadRow * quadCol)
                   for(int j = 0; i < cells.length; j++)
                        for(int k = 0; k < cells[k].length; k++
              /** Reads the file until it reaches the end of the file */
              while(!inFile.endOfFile())
              /** Closes the filecontainer */
              inFile.close();
    class Row
         /** Single col. array to contain cells in row */
         Cell[] row;
         * Assigns an array with length=rowVal
         * @param is the same as dimension in Board-class
         Row(int rowVal)
              row = new Cell[rowVal];
         /** Add cell to row
         * If the cell is null, or empty, then it will set the cell[i] = cell,
         * and return control back to the caller
         void addCell(Cell cell)
              for(int i = 0; i < row.length; i++)
                   if(row[i]==null)
                        row[i] = cell;
                        return;
         * Checks if it's possible to stuff a number into the row,
         * returns true if it's possible and false else
         boolean tryNumeral(int cellVal)
              for(int i = 0; i < row.length; i++)
                   if(row[i].getContains() == cellVal)
                   { return false; }
              return true;
    class Col
         /** Single col. array to contain cells in col.*/
    Cell[] col;
    * Assigns an array with length=colVal
    * @param is the same as dimension in Board-class
    Col(int colVal)
              col = new Cell[colVal];
         /** Add cell to col.
         * If the cell is null, or empty, then it will set the cell[i] = cell,
         * and return control back to the caller
         void addCell(Cell cell)
              for(int i = 0; i < col.length; i++)
                   if(col[i]==null)
                        col[i] = cell;
                        return;
         * Checks if it's possible to stuff a number into the col,
         * returns true if it's possible and false else
         boolean tryNumeral(int cellVal)
              for(int i = 0; i < col.length; i++)
                   if(col[i].getContains() == cellVal)
                   { return false; }
              return true;
    class Quad
         /** Single col. array to contain cells in quad*/
    Cell[] quad;
         /** Assigns an array with length=row*col to quad */
    Quad(int row, int col)
              quad = new Cell[row * col];
         /** Add cell to quad
         * If the cell is null, or empty, then it will set the cell[i] = cell,
         * and return control back to the caller
         void addCell(Cell cell)
              for(int i = 0; i < quad.length; i++)
                   if(quad[i]==null)
                        quad[i] = cell;
                        return;
         * Checks if it'possible to stuff a number into the quad.
         * returns true if it's possible and false else.
         boolean tryNumeral(int cellVal)
              for(int i = 0; i < quad.length; i++)
                   if(quad[i].getContains() == cellVal)
                   { return false; }
              return true;
    /** The lowest unit on a Suduko board */
    class Cell
         /** The number the box contains */
    int contains;
         /** Pointers to the row/col/quad it's located in */
    Row cellRow;
    Col cellCol;
    Quad cellQuad;
         /** Add pointers from Board-contructor R = Row, C = Col. */
         void addRCpointer(Row row, Col col)
              cellRow = row;
              cellCol = col;
         /** Checks if it's okay to place a number there */
    void tryNumeral()
    /** Get-method for the cells value */
    int getContains()
              return this.contains;

    nitinkajay wrote:
    I want to know how to store the output of a analog to digital converter into an 2D labview array.
    How exactly are you performing 'Analog to Digital'???
    Grabbing image using camera OR performing data acquisition using DAQ card OR some other way????
    I am not allergic to Kudos, in fact I love Kudos.
     Make your LabVIEW experience more CONVENIENT.

  • Can I call hashCode() into equals()

    Hi,
    I implemented a class MyObject that overrides the method hashCode() that respect the general contract and the resulting hashcode value is stored in a data member of my class MyObject.
    I also overrided the equals() that looks like this:
    public boolean equals(Object obj) {
    if (obj == null) return false;
    if (obj == this) return true;
    if (other instanceof MyObject == false) {
    return false;
    .... complex tests to check the equality that take a long time....
    To optimize the equals() I would like to do:
    public boolean equals(Object obj) {
    if (obj == null) return false;
    if (obj == this) return true;
    if (other instanceof MyObject == false) {
    return false;
    // use the hashCode, if different, no need to make the complex checks
    if (hasCodeValue_ != obj.hashCode()) {
    return false;
    .... complex tests to check the equality
    I think it should work because the hashCode is different when the objects are different, but I can't find any example of equals() implementation that uses the hascode(), is there any reason for that ? Thanks for your help, BR,
    Sebastien.

    Would you clarify for me please?
    Do you mean that the hashCode method will naturally be
    faster because something like String.hashCode() will
    return faster than String.equals(otherString) ?Equals methods usually require a few checks before they really start comparing things. They check to see if the objects are the same, they check to see of the object passed in was null, they check the type of the argument and then they cast it. Then they start comparing members and if any of their members are Objects there's more of that.
    Hashcode methods just go right at the values. And like you said, they can be cached in a lot of cases like String.
    Or do you mean that one should take care to write
    hashCode methods that are very fast?
    If the latter, I'd like to hear about how you make
    sure of that.Well, you could eliminate fields from the calculation but that might produce bad results. Generally, you just don't do a lot of complicated operations.

  • What is the public IP in this case?!!

    I have an ASA firewall,i also have a Motorola router that is actually a modem and a router and an access point in the same time (3 in 1) ;however iam only intending to use the Motorola internal ports to connect to the external ASA port, when i finish the NAT rules (which translating the internal ASA network into the outside network which is 192.168.0.0/24 which is the internal network for the Motorola router) which one is the public IP address in this case?? i mean i might not be able to get to the ASA's internal IP from the Internet because it is the internal network for the Motorola...so in this case is my only public IP on the Internet in the Motorola's external IP ? which is the ISP's IP address provided???
    I am really lost on this one, any help here is much appreciated.
    Thanks

    Hi,
    Seems to me that your public IP address will be configured on the Motorola device. In most cases the device will probably be using DHCP to get the public IP address from the ISP and therefore the IP might sometimes change. Though naturally it might be a static public IP address as I don't know the thing is handled in your case.
    If you wish to have a host/server reachable from the Internet then you would probably have to configure somekind of Static PAT (Port Forward) on the Motorola device or perhaps even Static NAT the public IP address from to the external IP of the ASA (from the network 192.168.0.0/24) so that all traffic that is allowed on the Motorola device will be forwarded to the ASA (because of the 1:1 Static NAT mapping of the IP addresses)
    If you need to reach your internal network remotely and dont need to host anything directly to the public network then you might be able to set up VPN Client connection to the ASA.
    If you dont know the public IP address then if its a DHCP IP address from the ISP you can always check your current public IP address through some site. I for example tend to go to www.ripe.net . It shows your current IP address on the site. Naturally there should be multiple other sites that show this information.
    If your public IP address is static then the ISP probably has provided you some documentation which mentions the public IP address assigned to you when you got the Internet connection.
    Also you might not need to configure NAT at all on the ASA since its not an edge device. You could simply let the internal networks of ASA and the Motorola device to communicate with their original IP addresses. This would naturally require that the Motorola device has a route for the ASA internal network on it pointing towards the external IP address of the ASA.
    - Jouni

  • Would this case be considered an OO problem?

    Hi!
    Suppose that some developers and programmers, say programmers of the group A, created the following interfaces:
    public interface BankInformation {
      int getYearOfConstruction();
      //and other methods related to bank
    public interface CompanyInformation {
      double getCompanyPrice();
      //and other methods related to company
    public interface GovernmentInformation {
      Date getBeginningDate();
      Date getEndDate();
      //and other methods related to government
    /* and other kinds of useful interfaces... */And others, say programmers of the group B, created the following very useful class (for the group B):
    public class Informations {
      private String usefulInformation;
      public void setRelevantInformations(BankInformation bi) {
        int i = bi.getYearOfConstruction();
        String something = null;
        //etc...
        //doing something based on BankInformation...
        usefulInformation = something;
      public void setRelevantInformations(CompanyInformation ci) {
        double d = ci.getCompanyPrice();
        String something = null;
        //etc...
        //doing something based on CompanyInformation...
        usefulInformation = something;
      public void setRelevantInformations(GovernmentInformation gi) {
        Date initialDate = gi.getBeginningDate();
        Date endDate = gi.getEndDate();
        String something = null;
        //etc...
        //doing something based on GovernmentInformation...
        usefulInformation = something;
      //and other useful methods...
    }Now both group A and B are implementing those interfaces, without any kind of design problems untill now:
    /* here, classes that implement the interfaces */
    public class BankOfBostonInfo implements BankInformation {
      public int getYearOfConstruction() {
      //and other things...
    public class SantanderInfo implements BankInformation {
      public int getYearOfConstruction() {
      //and other things...
    public class McDonaldsInfo implements CompanyInformation {
      public double getCompanyPrice() {
      //and other things...
    public class MicrosoftInfo implements CompanyInformation {
      public double getCompanyPrice() {
      //and other things...
    public class GeorgeBushInfo implements GovernmentInformation {
      public Date getBeginningDate() {
      public Date getEndDate() {
      //and other things...
    public class BillClintonInfo implements GovernmentInformation {
      public Date getBeginningDate() {
      public Date getEndDate() {
       //and other things...
    /* and other kinds of useful classes... */The problem happens now: other group of programmers, say group C, develop a class that implements all those interfaces (why not?), like below:
    class AdministrativeInformations implements BankInformation, GovernmentInformation, CompanyInformation {
      public int getYearOfConstruction() {
      public double getCompanyPrice() {
      public Date getBeginningDate() {
      public Date getEndDate() {
      //and other useful things...
    }Since it makes sense for group C, why not implement all those interfaces at the same time?
    But, unfortunatelly, group C do not know about the Informations class, created by group B. And one day, group B will say to group C: "Hey, give us an instance of your AdministrativeInformations class, we need it!".
    Group B will have a problem now, because when they use setRelevantInformations() method, which is the parameter they have to pass? They cannot pass an instance of AdministrativeInformations class, and they cannot cast, because setRelevantInformations() method works according to the parameter passed. Certainly, they cannot specify and cast to BankInformation, GovernmentInformation or CompanyInformation, because they simply are not able to decide which type of interface they have to consider.
    And if group B decide to discuss about this problem with group C, to solve that, group C won't be able to help, because group C will say "this is a problem of group B, only. It is not our problem". Or group C could rewrite their AdministrativeInformations class, but obviously they would not like this idea.
    Might this situation be considered a design problem, that could have been prevented, or is this situation just an unlucky OO problem, that might occur and nothing can be done to prevent that? I would like to read your comments.
    Many thanks!!!

    I'm going to hazard an answer here and suggest the problem lies with the original design of the "Informations" class. As itchyscratchy pointed out, the problem lies within the fact that the setRelevantInformations method is overloaded and, as a result, assumes that being a BankInformation (for example) is mutually exclusive with being a CompanyInformation.
    I find myself asking what precisely it is that the setRelevantInformations(...) methods are doing with that data and I would resolve this issue in one of two ways. The first is to simply rename the methods ("setBankInformation(...)", "setCompanyInformation(...)", etc.); this presumes that the operation which is being performed is unique to the Informations class and doesn't really directly have anything to do with the BankInformation, CompanyInformation, or GovernmentInformation interfaces. The structure of the Informations class as is implies that being a BankInformation is exclusive with being a CompanyInformation. Even if this is not the case, calling setBankInformation is definitely exclusive (at any instant, anyway) with calling setCompanyInformation.
    The solution I would prefer, however, would rely on the operation being performed by each of the setRelevantInformations(...) methods having something quite directly to do with the objects themselves: that is, that the operation and the object are somehow conceptually linked. For example, they seem to be producing a string in this snippet. In that case, I would make:
    public interface BaseInformation {
        public String makeInformationString();
    public interface BankInformation extends BaseInformation {
        int getYearOfConstruction();
    public interface CompanyInformation extends BaseInformation {and so on. Then, I would modify the Informations class:
    public class Informations {
        private String usefulInformation;
        public void setRelevantInfomation(BaseInformation bi) { ... }
    }Whatever operation the setRelevantInformations(...) methods were performing have now been abstracted into a single method. Once again, this eliminates the need for overloading. And, of course, this would only be appropriate if the operation being performed (in this case, "makeInformationString") is somehow related to the interfaces themselves and not just to the Informations class.
    In summary, it seems that abuse of overloading is the problem. I can't quite put my finger on exactly how the overloading has been abused in this case, but that's probably due to a combination between lack of specific information and lack of sleep. :)
    Cheers!

  • How to convert lower case letter to upper case letters

    hai all,
    How to convert lower case letter to upper case letters??
    Thanks & Regards,
    suresh

    Hi Suresh,
    Include ALL_CAPITAL in the RSKC Tx.
    Also try this code in your Transfer rule,
    TRANSLATE TRAN_STRUCTURE-(Info Object Name) TO UPPER CASE.
    RESULT = TRAN_STRUCTURE-(Info Object Name)
    Hope this solves................

  • My iphone 4 is stuck on the reboot logo, ive ried holding both home and power to shut it off snd then keep holding home to let you plug it into itunes but it doesnt work. what do i do?

    my iphone 4 is stuck on the reboot logo, ive ried holding both home and power to shut it off snd then keep holding home to let you plug it into itunes but it doesnt work. what do i do?

    Did you try rebooting the iPad? You will need to have some battery power for this.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This may be helpful
    iPhone, iPad or iPod touch: Not responding or does not turn on
    Frozen or unresponsive iPad - Apple
    iPad: Unable to update or restore

  • ICloud ruined my life- how can I escalate this case further!!!

    The unthinkable has been hande to me by Apple.
    iCloud corrupted 40% of my documents. Then 'reset' the remaining 60%
    100% of my documents erased by Apple. This has taken 8 months of my life away, the apple care process has been woeful. So many Senior Advisors said they would 'take ownership of the case' and 'call me back'. Nothing, no call back- I am forced to call up again- explain the case again- be promised again by another Senior Advisor that they would 'take ownership of the case' and 'call me back'...
    I am left shattered.
    This was a few months ago- i have lost huge amounts of irreplaceable research generated from over 2000 hours of my own personal work.
    It was not backed up to my mac book as it was rendered inoperable when i 'upgraded' to OSX Lion.
    I did all my work for 8 months on my ipad. All documents were created and stored locally on my ipad. I had no access to my LaCie external because my macbook was inoperable.
    It was recommended by Apple Genius that I turn on icloud for Documents. iCloud then corrupted the documents and synced that corruption back to my documents locally stored on my ipad.
    I could then see all the images in pages documents view. But could not open them- that was for about 40%of my documents. I could still access the other 60%
    My account was then referred to the iCloud engineers. After a few weeks with no contact from apple I called up to chase up this loss of my documents- it had been going on for 7 weeks at this point.
    The senior advisor told me that my account had been 'reset' and should be working fine now..
    WHAT!!!! Reset!!!?????? so what about the 60% of docs that i had access to?
    Gone. Deleted from the icloud account, synced back to my ipad.
    All Gone.\
    If i had been contacted by the engineers. 'We cannot fix your corrupted documents. We propose to reset your account. That will erase all data and documents in your account. Is this ok? Please backup any documents you have on your ipad.'
    This would have saved 60% of my 8 months research- which is a lot.
    but no- no contact, just reset my account and erased my documents.
    its unbelieveable and unthinkable.
    I am a MASSIVE apple fan- i have 22 Apple devices and tell everyone in my network that all my dreams have come true with Apple- ridiculing them for using other devices. It has now turned into a nightmare.
    I WENT TO THE APPLE STORE IN SYDNEY IN DESPARATION- TO FIND OUT IF THERE WAS AN IMAGE OF THE DOCUMENTS SOMEWHERE/ANYWHERE!!! I KNOW THEY CAN ONLY CONTACT ICLOUD IN THE SAME WAY AS ME- BUT WHAT OPTIONS DID I HAVE- I COULDN'T ESCALATE THROUGH APPLE ANY HIGHER- THEY TOLD ME THAT THE SENIOR ADVISORS AND ENGINEERS WERE AS HIGH AS I COULD ESCALATE. SO I WENT TO THE APPLE STORE AND TOLD THEM THAT I WOULD NOT LEAVE THE STORE UNTIL IT WAS RESOLVED- THEY TOLD ME THEY COULDN'T HELP ME- I STAYED FOR 8 HOURS- AFTER 1.5 HOURS WE FOUDN OUT THAT THE ENGINEERS LIKENED TRYING TO RESTORE MY DOCUMENTS TO TRYING TO REBUILD A BURNT DOWN HOUSE.
    We were about to release our energy saving App globally. I had a meltdown and just went away on holiday to New Zealand and Thailand with my kids- I couldn't face the reality of what i had to do to recover.
    I came back to try and get back on track recently. My only way forward was to forget about it and start again.
    AND THEN!!!
    I stupidly used pages on my ipad to edit a document from our development partner the other day. I opened my pages today, the document was there- then in front of my eyes all the documents shuffled around. Guess what- the doc I had edited disappeared.. In shock i called Apple Support. He asked me to check on icloud. com. 15 documents, not the one i want, advisor can see my doc- i cannot. I feel naseous.
    THIS CASE HAD ALREADY GONE TOO FAR. BUT NOW I HAVE HAD ENOUGH!!!!!!
    How can i escalate further? There must be a way. This is not acceptable! Apple are messing with my life!!!!! I'm losing too much time and money- it's just not fair at all. Something MUST be done by way of compensatiing for this series of errors!!!!

    There's nothing anyone here can do for you, and I'm afraid I have little sympathy.
    2000 hours of "irreplaceable work" and at no point during those 8 months did you think "Gee, I really should back up all these hugely important files just in case my iPad gets stolen, lost, breaks or some other disaster occurs"?
    As soon as you noticed something was amiss, or even at the point when you still had access to 60% of your documents, why did you not take the opportunity to download a copy of them via iCloud.com (on any computer) and save them safely on a memory stick or other backup device?
    Having just one copy of any file is asking for trouble. Backing up regularly is the No.1 rule of computing. Apple is not responsible for your lack of any backup routine. Apple advise you to backup regularly. Being able to backup your iPad should've been your motivation for spending an hour or two of those 2000 getting the MacBook up and running.

  • I bought an old iPod touch It is 6.1.6, i would like to add a new icloud account but it can't let me. this iPod touch belonged to another person and i don't know where is he can you tell me please how to add a new icloud account??

    I bought an old iPod touch It is 6.1.6, i would like to add a new icloud account but it can't let me. this iPod touch belonged to another person and i don't know where is he can you tell me please how to add a new icloud account??

    The 4G/iOS 6 does not have an Activation Lock. That started with iOS 7.
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:                                                             
    iTunes: Restoring iOS software

  • HT5639 After installing the windows 7 64 bit, it will restart automatically with error in blue screen. in this case what should i do?  i have using bootcamp 5

    After installing the windows 7 64 bit, it will restart automatically with error in blue screen. in this case what should i do?  i have using bootcamp 5

    if it's restarting directly into an error, you can try troubleshooting (might be painful) or re-install windows with boot camp

  • IPod touch 1st generation could not be restore on iTunes, an unknown error occurred (1). how can i fixed this case?

    My iPod touch 1st generation could not be restore on iTunes, the message was "The iPod "iPod" could not be restore. an unknown error occurred (1)".
    my serial number is AB1905714N
    how can i fixed this case?
    thank you

    ERROR (1)
    - Place the iPod in DFU mode and then restore
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - Try on another computer
    - Try another cable           
    - Also, confirm your security software and settings are allowing communication between your device and update servers.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar     

  • Suggestion to Moderators: time to split this forum into subjects

    I think this forum went through significant activation and change since first initiated after SAPPHIRE 2010. As HANA went from the idea on the slide to real thing with many different aspects I think it is time to split this forum into few focused topics, e.g.:
    - Business cases for in-memory technology
    - SAP HANA platform and administration
    - SAP HANA development (SQL, SQLScript etc)
    - Data replication into SAP HANA (SLT, SyRS)
    - SAP HANA Dev Center
    - SAP HANA Security
    etc.
    BO integration with HANA should be in BO forums. BW-on-HANA should be in corresponding forums on BW and OS/DB migrations.
    Thanks everyone for lively discussions (especially technical ones and contributing to this forum!
    -Vitaliy

    Hi Vitaliy,
    Your suggestion makes perfect sense to me. However, as we are all waiting for the new SCN to launch, we should get prepared to do some re-org of the content on the new platform and not introduce another level of complexity here. I don't think a definite date has been announce yet, but we're getting closer to the final migration. At least the developer center will have it's own forum on the new platform. Plus, the new SCN will allow tagging of content, so it'll be much easier to keep things organized if we all show some discipline (and if we don't, separate forums won't help because without some discipline, people will post into whatever they find first)
    cheers
    --Juergen

  • Hello every body .. my ipad blocked with icloud and i dont remember the email or even birthday i've wrote I just remember the security question ... what can i do in this case to restor my email working ?? thx

    hello every body .. my ipad blocked with icloud and i dont remember the email or even birthday i've wrote I just remember the security questions ... what can i do in this case to restor my email back ?? thx

    Do you mean that the iPad is on the activation screen ? If it is then does it not show the first letter of your email address and the provider e.g. similar to :
    If that is what you are seeing then you don't remember any email account that you had starting with that letter with that provider ? If not then do you know if you have any of the account's downloads in your computer's iTunes library : Recovering a forgotten iTunes Store account name ?
    Or see if you can find it via http://appleid.apple.com : Apple ID: How to find your Apple ID
    If you cant remember or find your id then you won't be able to use your iPad

Maybe you are looking for