Tricky Loop code help

Hey all, I could use some help with this.
So my current code auto adjusts, and resizes a group of text.
I'm looking to convert it to a loop so I can make it generate more text fields without breaking it.
and I'm scratching my head on how to structure it.
addEventListener(Event.ENTER_FRAME,patchSpacingFun);
function patchSpacingFun(event:Event)
patTexArr1["pp2"].x = patTexArr1["pp1"].width + patTexArr1["pp1"].x;
          patTexArr1["pp3"].x = patTexArr1["pp2"].width + patTexArr1["pp2"].x;
          patTexArr1["pp4"].x = patTexArr1["pp3"].width + patTexArr1["pp3"].x;
          patTexArr1["pp5"].x = patTexArr1["pp4"].width + patTexArr1["pp4"].x;
          patTexArr1["pp6"].x = patTexArr1["pp5"].width + patTexArr1["pp5"].x;
          patTexArr1["pp7"].x = patTexArr1["pp6"].width + patTexArr1["pp6"].x;
          patTexArr1["pp8"].x = patTexArr1["pp7"].width + patTexArr1["pp7"].x;
          patTexArr1["pp9"].x = patTexArr1["pp8"].width + patTexArr1["pp8"].x;
          patTexArr1["pp10"].x = patTexArr1["pp9"].width + patTexArr1["pp9"].x;
          patTexArr1["pp11"].x = patTexArr1["pp10"].width + patTexArr1["pp10"].x;
          patTexArr1["pp12"].x = patTexArr1["pp11"].width + patTexArr1["pp11"].x;
here is basically what I got started for the loop
its supposed to make these from the PatchLims
var patTexArr1:Array = new Array();
for (var i:int =0; i<patchLims; ++i)
thanks

if patTexArr1 is a movieclip, use:
var patchLims:int=11;
for (var i:int =1; i<patchLims; i++)
patTexArr1["pp"+(i+1)]=patTexArr1["pp"+i].width+patTexArr1["pp"+i].x;

Similar Messages

  • Looping code -  help

    Hello,
    here's the problem.
    I have two txt. files one of them has :
    1st txt:
    Barcelona 14 20 // Airport , x and y (coord.)
    Caliornia 30 40
    Paris 2 15
    Fiji 20 23
    and the 2nd txt file has:
    40 // number of flights for exemple
    C 0025 California Barcelona // type, number,Startpoint , destination
    A 0045 Paris Barcelona
    C 0032 Fiji Paris
    C 0047 Paris California
    A 0078 Fiji Barcelona
    C 0065 California Paris
    i've a method that splits those words into columns so in the 1st txt the name of the airport is e.g word[0] xx = [1] and yy [2]
    in the 2nd txt i did the same thing, Starpoint is word_flight [2] and the arrived point is word_filght [3]
    So, what im trying to do is to return all the coordenates (x , y) of the start points and all the coordenates (x, y ) of the arrived points
    to do that we must to compare the first name of the start point with the list of the airports of the 1st txt file, like a loop. , what it supose to do is something like this: e.g
    Flights.txt
    first it picks " California"
    then, it will compare with the list of the Airports.txt
    "california " - 1st position of the Airports.txt is: Barcelona
    is not equal so..now it will compare with the 2nd position
    california with california (2nd of the 1st txt) -> combines so it keeps the coordenates , and then increment the next line of the flights.txt and picks the flight from the 2nd position (Paris)
    Now it will compare with the list of airports
    Paris - Barcelona = NO 1st position
    Paris - California = NO 2nd
    Paris - Paris = Yes 3rd ( keeps the coordenates of paris)
    remember that word [0] (from the airports.txt ) when we do : System.out.println(word[0]) , the ouput is:
    Barcelona
    California
    Paris
    Fiji
    samething to the others.
    Well the big problem is that i don't know how to do that..this few lines of code that u'll see under, compares the first position of both , if it is equals keeps the coordenates , if not, leaves the 1st start point and picks the 2nd ...i don't want that, i want it picks the 1st startpoint and see if it exists on the airports.txt (1st , 2nd ,3rd....positions) and not if it is on the same position. you will understand where the problem is..through the code.
    //FileAir = method the returns the number of lines of the  Airport.txt
              for(int i = 0, j = 0; i!= numLinesFileAir()-1 && j!= numLinesFileFlights()-1; i++, j++){
                   air_line = air_read.readLine();
                   air_word = air_line.split(" ");
                   flight_line = flight_read.readLine();          
                   flight_word = flight_line.split(" ");
                   r = new Caracteristicas(air_word[0], air_word[1], air_word[2], "airport.txt", "flights.txt" );
                   r = new Caracteristicas(flight_word[0],flight_word[1], flight_word[2],flight_word[3], "airport.txt", "flights.txt");
                   if(flight_word[3].equals(air_word[0]) ) {
                        int arrived_pointX = Integer.parseInt(air_word[1]);
                        int destinationY = Integer.parseInt(air_word[2]);
                        System.out.println(destinationX);
                        System.out.println(destinationY);
                   }airport.txt /************************************/ flights.txt
    Barcelona 14 40 /*****************************/ Chicago California
    California 7 25 /*****************************/ Barcelona California
    Chicago 32 36 /*****************************/ Paris Barcelona
    Paris 24 35 /*******************************/ California Paris
    if we use these files, when we print (destinationX and destinationY) the output will be only : 7 25 and 24 35 ( because California and Paris are in the same position in both files)
    if we print(startPointX and Y) it won't print anything because the names are in different positions in both files.
    I don't want it to see if it is on the same position , i just want it to search in the airports-txt if name by name (startpoint) exists in the list of the airposts, check it one name at the time, and when it finds the same name on the 2nd position 1st or last ( doesn't matter) it keeps the coordenates, then increments the flight_word[3] 1 line and picks the 2nd name...and so on.... it must print all the coordenates even if the names are in different positions.
    for loop is wrong because it increments both variables at the same time, and it doesn't checks if the name(destination or startpoint) is on the other positions too..
    NEED HELP to solve this annoying problem, plz!!
    thanks everyone!!
    Message was edited by:
    Java__Estudante

    It looks to me like you are trying to do some computations with the flightpaths while you are reading the files. Mixing stuff up like that almost always makes things harder. If you separate file i/o from whatever computations you do with the data, it will make both parts easier.
    Your data looks to be in a pretty regular format, so I would create a class for an Airport that holds the name, x and y coords. Another class for the flights holds the letter, number, and both cities. As you read each line from the file, parse out each bit of info, and store it in an Airport/Flight class. Keep a list of these objects, then when you want to calculate whatever, just retrieve the needed object from the list. If you design it this way, you'll have a much better time with it. Because, no offense, but that snippet of code looks pretty rough.
    Barcelona 14 20 // Airport , x and y (coord.)
    Caliornia 30 40
    Paris 2 15
    Fiji 20 23
    40 // number of flights for exemple
    C 0025 California Barcelona // type, number,Startpoint , destination
    A 0045 Paris Barcelona
    C 0032 Fiji Paris
    C 0047 Paris California
    A 0078 Fiji Barcelona
    C 0065 California Paris

  • Please help me.. how to rewrite the following java- for loop code in ada

    int i, j, n = 100;
    for (i = 0, j = 17; i < n; i++, j-- )
    sum += i * j + 3;

    how to rewrite the following java- for loop code in ada
    You should have a programming manual for Ada first. If you mean it the other way round, I think you subject line confused me.

  • I have Probleme in ctrating Loop code in report 6i

    Hi all
    am using oracle 6i and am working on library system and I have to create report so it will give me the Books Details
    and incase the book has number of copies morethan 1 the reoprt should duplicate the records according to the total number of book copy
    So How I can add loop code the the report so it will display the requiered data
    this is the code which I wrote it the report
    book_id_from and book_id_to they are to parameters to spacify the range of books data display
    SELECT LIB_BOOKS.SERIAL,
    RPAD(LIB_BOOKS.BOOK_NAME,2)DISPLAY_COL2,
    LIB_CLASSIFICATIONS.CLASS_TYPE,
    RPAD(LIB_BOOKS.AUTHOR_NAME,2)DISPLAY_COL4,
    LIB_BOOKS.PUBLISH_DATE,
    LIB_CLASSIFICATIONS.CLASS_NO,
    LIB_BOOKS.TOTAL_COPY
    from LIB_CLASSIFICATIONS,LIB_BOOKS
    where LIB_CLASSIFICATIONS.class_id = LIB_BOOKS.class_id
    and TOTAL_COPY &gt; 1
    AND LIB_BOOKS.BOOK_ID BETWEEN :P_book_id_from AND :P_book_id_to;
    any help will be apreciated
    regards

    use inline query
    select t.SERIAL,
    min(t.DISPLAY_COL2),
    min(t.CLASS_TYPE),
    min(t.DISPLAY_COL4),
    min(t.PUBLISH_DATE),
    min(t.CLASS_NO),
    min(t.TOTAL_COPY)
    from
    (SELECT LIB_BOOKS.SERIAL,
    RPAD(LIB_BOOKS.BOOK_NAME,2) DISPLAY_COL2,
    LIB_CLASSIFICATIONS.CLASS_TYPE,
    RPAD(LIB_BOOKS.AUTHOR_NAME,2) DISPLAY_COL4,
    LIB_BOOKS.PUBLISH_DATE,
    LIB_CLASSIFICATIONS.CLASS_NO,
    LIB_BOOKS.TOTAL_COPY
    from LIB_CLASSIFICATIONS,LIB_BOOKS
    where LIB_CLASSIFICATIONS.class_id = LIB_BOOKS.class_id
    and TOTAL_COPY > 1
    AND LIB_BOOKS.BOOK_ID BETWEEN :P_book_id_from AND :P_book_id_to) t
    connect by level <= t.total_copy
    group by t.serial, level;hope this works
    Edited by: Mohammed H. on Oct 12, 2008 1:37 PM

  • Code help in writing  report Program

    Hello experts
    I have to write a selection screen program based on the following requirements (only for sales Org:5090, plant:9000, Outbound delivery type= "LF")
    Selection parameters:
    Material (lips-matnr)
    Sold to party(likp-kunag): can hardcode it to 5090
    Sales Org(likp-vkorg)
    Plant(lips-werks) : hard code it to plant:9000
    Sales order(likp-vbeln)
    Actual goods movement dates(likp-wadat_ist)
    Invoice number
    Sales order
    Output
    material numberlips~matnr ( should Display only S* materials  and  material type FERT)
      Serial number of the device shipped (objk-sernr)
    Delivery number (lips~vbeln)
    Invoice number (vbrp-vbeln)
    Invoice price=Vbrp-vbeln/quantity (invoice price)
      Notification number (Viqmel-QMNUm)
      KBB Repair Level(VIQMEL-QMTXT from QMCOD ) 
      KBC Repair level(VIQMMA-MNCOD from KBC-SM07 code group(VIQMMA-MNGRP))
    code help is higly appreciated,
    Thanks
    Sp

    Hi anurag,
    Code is going like this, i could able to display it but when i run it ABAP Dump is coming.
    what could be the reason?
    Tahnks
    SP
    *& Report  ZSDR_PRICING_KSE_RPT                                        *
    REPORT  ZSDR_PRICING_KSE_RPT          .
    TABLES: likp, lips, vbfa, vbak.
    TYPE-POOLS: slis.
    */ Selection and Input Parameters
    SELECTION-SCREEN BEGIN OF BLOCK block2 WITH FRAME TITLE text-003.
    SELECT-OPTIONS: s_matnr FOR lips-matnr,
                    s_kunag FOR likp-kunag.
    SELECT-OPTIONS: s_vkorg FOR likp-vkorg NO INTERVALS,
                    s_werks FOR lips-werks.
    SELECT-OPTIONS: s_vbeln FOR likp-vbeln,
                    s_waist FOR likp-wadat_ist.
    SELECT-OPTIONS: s_vgbel FOR lips-vgbel.
    SELECTION-SCREEN END OF BLOCK block2.
    DATA: gt_fieldcat TYPE slis_t_fieldcat_alv.
    TYPES: BEGIN OF ty_data,
           matnr TYPE lips-matnr,
           sernr TYPE equi-sernr,
           vbeln TYPE lips-vbeln,
           invno TYPE vbfa-vbeln,
           qmnum TYPE vbak-qmnum,
           netwr type vbrp-netwr,
           END OF ty_data.
    DATA: gt_data TYPE TABLE OF ty_data WITH HEADER LINE.
    TYPES: BEGIN OF ty_lips,
           vbeln TYPE likp-vbeln,
           matnr TYPE lips-matnr,
           wersk TYPE lips-werks,
           vgbel TYPE lips-vgbel,
           END OF ty_lips.
    DATA: gt_lips TYPE TABLE OF ty_lips WITH HEADER LINE.
    DATA: gt_vbfa TYPE TABLE OF vbfa WITH HEADER LINE.
    DATA: gt_vbrp TYPE TABLE OF vbrp WITH HEADER LINE.
    TYPES: BEGIN OF ty_ser01,
           lief_nr TYPE ser01-lief_nr,
           obknr TYPE ser01-obknr,
           sernr TYPE objk-obknr,
           END OF ty_ser01.
    DATA: gt_ser01 TYPE TABLE OF ty_ser01 WITH HEADER LINE.
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM display_data.
    *& Form get_data
    FORM get_data.
      SELECT likpvbeln lipsmatnr lipswerks lipsvgbel
             INTO CORRESPONDING FIELDS OF TABLE gt_lips
             FROM likp INNER JOIN lips ON lipsvbeln = likpvbeln
             WHERE lips~matnr IN s_matnr
             AND lips~werks IN s_werks
             AND likp~kunag IN s_kunag
             AND likp~wadat_ist IN s_waist
             AND lips~vgbel IN s_vgbel
             AND likp~vkorg IN s_vkorg.
      IF NOT gt_lips[] IS INITIAL.
        SELECT vbeln vbelv INTO CORRESPONDING FIELDS OF TABLE gt_vbfa
        FROM vbfa
        FOR ALL ENTRIES IN gt_lips
          WHERE vbelv = gt_lips-vgbel
          AND vbtyp_n = 'M'.
        IF NOT gt_vbfa[] IS INITIAL.
          SELECT vbeln matnr netwr
          INTO CORRESPONDING FIELDS OF TABLE gt_vbrp
          FROM vbrp FOR ALL ENTRIES IN gt_vbfa
          WHERE vbeln = gt_vbfa-vbeln.
          SELECT ser01lief_nr ser01obknr objk~sernr
          INTO CORRESPONDING FIELDS OF TABLE gt_ser01
          FROM ser01 INNER JOIN objk ON objkobknr = ser01obknr
          FOR ALL entries IN gt_vbfa
          WHERE ser01~lief_nr = gt_vbfa-vbeln
          AND taser EQ 'SER01'.
        ENDIF.
      ENDIF.
      clear: gt_data[].
      LOOP AT gt_lips.
        LOOP AT gt_vbfa WHERE vbelv = gt_lips-vgbel.
          READ TABLE gt_vbrp WITH KEY vbeln = gt_vbfa-vbeln
          matnr = gt_lips-matnr.
          LOOP AT gt_ser01 WHERE lief_nr = gt_vbfa-vbeln.
            gt_data-matnr = gt_lips-matnr.
            gt_data-sernr = gt_ser01-sernr.
            gt_data-vbeln = gt_lips-vbeln.
            gt_data-invno = gt_vbfa-vbeln.
            gt_data-netwr = gt_vbrp-netwr.
            APPEND gt_data.
          ENDLOOP.
        ENDLOOP.
      ENDLOOP.
    ENDFORM. " get_data
    *& Form display_data
    FORM display_data.
      DATA: lv_repid TYPE sy-repid.
      lv_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
      EXPORTING
      i_program_name = lv_repid
    I_INTERNAL_TABNAME =
      i_structure_name = gt_data
    I_CLIENT_NEVER_DISPLAY = 'X'
    I_INCLNAME =
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE =
      CHANGING
      ct_fieldcat = gt_fieldcat
    EXCEPTIONS
    INCONSISTENT_INTERFACE = 1
    PROGRAM_ERROR = 2
    OTHERS = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE = ' '
    i_callback_program = lv_repid
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = ' '
    I_STRUCTURE_NAME =
    IS_LAYOUT =
    it_fieldcat = gt_fieldcat
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    IT_EVENTS =
    IT_EVENT_EXIT =
    IS_PRINT =
    IS_REPREP_ID =
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER =
    ES_EXIT_CAUSED_BY_USER =
    TABLES
    t_outtab = gt_data
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.

  • Simulation Loop: Code could not be generated correctly for this VI

    Running LabView Simulation 8.2 on Windows XP laptop.  I have a Simulation Loop that keeps generating the following error message:
    "Simulation Loop: Code could not be generated correctly for this VI"
    The only reference I can find in my searches is to using an RTX target, which does not apply.  When I click on Show Error it just highlights the Sim Loop
    Any ideas on how to debug this?

    Perhaps you can start removing things until you don't get the error any more. How big is the code in the loop?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Survey creation abap code help needed

    hello experts,
    I need to create a survey in crm, by taking values from end-user from a webpage
    A sample code help is needed.
    Thanks in advance

    Take a look at this SAP note - It does a pretty good job of detailing the steps for you.  No coding necessary, it worked out of the box for us after patching this note.
    https://service.sap.com/sap/support/notes/638320

  • Inquiring minds may find this error code helpful: 0x207

    Hopefully I'm asking this in the right forum. I just downloaded the update for Microsoft Remote Desktop for Windows Phone 8.1 (I am actually running Denim on a 1520 but that may not matter). The version is 8.1.8.13 released 3/4/2015. I am trying to connect
    to a RemoteApp application but I am receiving the following error message shortly after it tries the redirection process (I think it fails at the securing remote connection part after it attemps the redirction to the RemoteApp application collection server):
    Connection error
    We couldn't connect to the remote PC. This might be due to an expired password. If this keeps happening, ask your admin or tech support for help.
    Inquiring minds may find this error code helpful: 0x207
    I am able to connect directly to both the broker server as well as the RemoteApp collection server with this application with the same credentials and am only experiencing this when trying to connect to a RemoteApp application.
    We are running Server 2012 R2 for both the broker/web and the collection servers. We are not using a gateway server as we use an SSL VPN concentrator instead for access outside of our network. We have server farms set up as well in the RemoteApp topology.
    Any info would help or let me know if I'm not posting in the right forum for this issue. I know this is a very recent release so I'm trying to figure out if I should wait for a bug fix or if there's something that I can do on my end.
    Thank you in advance for your time!

    Hi Scott,
    Please check your configuration once again and the certificate must be well configured. Also for accessing RemoteApp there might be the permission issue for your use, recheck once and verify. You can also got through
    this article for information.
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to make in the loop codes?

    How to make in the loop codes to have like my output(below)?
    For example:
    I am trying to figure out how to make them correct the way I want to have the output.
    String start = "02-01-08";
    String end = "02-29-08";
    Calendar a = new GregorianCalendar();
    while( start <= end ) {
              a.add(Calendar.DAY_OF_WEEK, 7);
              Date d = a.getTime();
              DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
              String ss = df.format(d);
              System.out.println(ss);
    }The output:
    +02-01-08+
    +02-08-08+
    +02-15-08+
    +02-22-08+
    +02-29-08+
    Anybody know how to make it correct?

    artist_tech07 wrote:
    I am confused where is the answer in the doc that you gave me?Read my first reply and read the docs. Then read them again.
    And then re-read this
    To do what you want you need a start and end Dates. These you can compare in one numeric form or the other. For example by using getTime.
    Then during each loop iteration you will need to add *1 day (using the Calendar)* to the start date.
    I am telling you what methods to use. I have told you were you can find those methods. I have given you a link to the Calendar class API. All you have to do is put 2 and 2 together. Or at the very least make an attempt to do so.

  • Redemption code help that you keep sending everyone to is NOT HELPING. It just tells you to put in the redemption code. IF I HAD THE CODE I WOULD HAVE PUT IT IN!! How do I find the code?

    Redemption code help that you keep sending everyone to is NOT HELPING. It just tells you to put in the redemption code. IF I HAD THE CODE I WOULD HAVE PUT IT IN!! How do I find the code?

    Version 5.5 was/is not part of the Cloud, so you could not have subscribed to that version
    You install version 5.5 on a 2nd computer exactly the same way you did the 1st time... put the disc in the drive and enter your serial number when asked
    Does your serial number show on your account page?
    https://www.adobe.com/account.html for serial numbers on your Adobe page... or
    Lost serial # http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • I was messing around with my iPad and put in a in app purchese and forgot the pass code help!

    I was messing around with my iPad and put in a in app purchese and forgot the pass code help!

    Do you mean you forgot the passcode for your iPad?  If so you need to restore it through the recovery mode described in http://support.apple.com/kb/HT1808

  • I have successfully downloaded lion, and after I click restart, the message " you hard disc is corrupted and cannot be repaired. Please restart" keeps looping. Help !

    I have successfully downloaded lion, and after I click restart, the message " you hard disc is corrupted and cannot be repaired. Please restart" keeps looping. Help !

    First try restarting your Mac into "safe mode", which will run the equivalent of a Disk Utility "repair disk" operation.  If your Mac shuts down during that process, you'll have to try something a little more powerful (and more expensive), such as DiskWarrior.

  • Redemption Code Help, where do I locate it?

    Redemption Code Help, where do I locate it?

    You have activate the subscription only once in the month of August 2014, so you can activate it one more time, if the Cc is asking for serial number then please follow the steps:
    Creative cloud do not need a serial number. it will be using your Adobe ID on which you have purchased the creative cloud membership.
    So you need to login with your Adobe ID and password to activate the cloud membership.
    Log out & log back in of the CC Desktop App.
    In case it is not signing in successfully please try the following:
    I don't know which operating system you are working on so i am giving you some steps windows and MAC OS:
       Windows:
       In windows 7 navigate to following location:
         /windows/system32/drivers/etc
       1. look out for "Hosts" file
       2. Open it with notepad
       3. Check if you have any entry for Adobe
       4. Remove the entries and try again launching any product from CC
       On Windows XP navigate to following location:
       \windows\system32\drivers\etc
       1. look out for "Hosts" file
       2. Open it with notepad
       3. Check if you have any entry for Adobe
       4. Remove the entries and try again launching any product from CC
       Mac:
       1. Please click on "Go" and navigate to /private/etc
       2. Open "hosts" file and check out for any entries for Adobe.com
       3. Remove the entries and save the file
       4.  try again launching any product from CC
    You can refer :
    http://helpx.adobe.com/creative-cloud/kb/ccm-prompt-serial-number.html
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-i ssues.html.
    Please let us know if it worked.
    Regards,
    Rajshree

  • HT201209 When I try to redeem it says error invalid code help me please.

    When I try to redeem it says error invalid code help me please.

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    Note: iTunes Gift Cards are only Valid in Country of issue

  • I just had to buy a new computer because my "vintage" Mac died. after migrating my backup drive over my Adobe creative suite no longer wroks I get a 150:30 error code HELP!

    I just had to buy a new computer because my "vintage" Mac died. After migrating my backup drive over to my New mac book my Adobe CS no longer works. I get a 150:30 error code HELP!

    You need to reinstall it properly, not use migration.
    Mylenium

Maybe you are looking for