Can I change the layer depth of a Drawing?

I've got a spiral
function spiral(centerX, centerY, radius, sides, coils, rotation){
    with(this){
        moveTo(centerX, centerY);
        var awayStep = radius/sides;
        var aroundStep = coils/sides;// 0 to 1 based.
        var aroundRadians = aroundStep * 2 * Math.PI;
        rotation *= 2 * Math.PI;
        for(var i=1; i<=sides; i++){
            var away = i * awayStep;
            var around = i * aroundRadians + rotation;
            var x = centerX + Math.cos(around) * away;
            var y = centerY + Math.sin(around) * away;
            lineTo(x, y);
lineStyle(4,0xCCB700);
spiral(260.5,438.0,125,DOTS,XE,0);
and I want some movie clips to appear infront as well as behind it, but right now it always appears on the bottom layer. Is there a way to attach the drawing to a movie clip or something so I can change it's depth?

here's the code, it's not too many lines of code, just convoluted.
bolt_range = 0;
rod_base = rod._y;
spring_ybase = spring._yscale;
spring_xbase = spring._xscale;
spring_x = spring_cap._y;
speed = 0;
activation = 1;
$a = clamp._rotation;
$b = clamp2._rotation;
$c = mgearB._rotation;
$d = sgearA._rotation;
$e = mgearA._rotation;
$f = saw._x;
$g = saw.sgear1._rotation;
$h = gear19._rotation;
$i = mgearC._rotation;
six00 = 6;
tdbase = turndial._y;
function spiral(centerX, centerY, radius, sides, coils, rotation){
    with(this){// Draw within the clip calling the function.
        moveTo(centerX, centerY);
        var awayStep = radius/sides;
        var aroundStep = coils/sides;// 0 to 1 based.
        var aroundRadians = aroundStep * 2 * Math.PI;
        rotation *= 2 * Math.PI;
        for(var i=1; i<=sides; i++){
            var away = i * awayStep;
            var around = i * aroundRadians + rotation;
            var x = centerX + Math.cos(around) * away;
            var y = centerY + Math.sin(around) * away;
            lineTo(x, y);
//lineStyle(thickness, 0xColor);
// spiral(centerX, centerY, radius, sides, coils, rotation).
XE = 2;
XPLUS = 0;
marker = 0;
rewind = 0;
active = 0;
springframebase = springframe._rotation;
onEnterFrame = function(){
markerval.text = marker;
switchact.onRelease = function(){active++;}
if(active > 2){active = 0;}
if(ticker == 2){ticker = 0;}
if(active == 0){switchact._rotation = 0;   
six00 = 0;
turndial._y = tdbase;
lock._rotation = 0;
gear1._xscale = 100;
gear1._yscale = 100;
if(active == 1){switchact._rotation = +40;   
if(Key.isDown(Key.UP)){six00++;}
if(Key.isDown(Key.DOWN)){six00--;}
if(six00 > 600){six00 = 600;}
if(six00 < 6){six00 = 6;}
springframe._rotation = springframebase - rewind + marker;
marker = marker - 1;
    XPLUS--;
  this.clear();
lineStyle(4,0xCCB700);
spiral(260.5,438.0,125,DOTS,XE,0);
windgear._rotation += six00;
turndial._y = tdbase - 10;
lock._rotation = -10;
gear1._xscale = 100;
gear1._yscale = 100;
//windup;
if(active == 2){switchact._rotation = -40;   
springframe._rotation = springframebase - rewind + marker;
six00 = 0;
gear1._xscale = 80;
gear1._yscale = 80;
windgear._rotation -= 6;
rewind = rewind - 1;
    XPLUS++;
  this.clear();
lineStyle(4,0xCCB700);
spiral(260.5,438.0,125,DOTS,XE,0);
turndial.play();
turndial._y = tdbase;
lock.play();
speed.text = six00;
//1:60
seconds._rotation += six00;
gear1._rotation += six00;
gear2a._rotation -= six00/2;
gear2b._rotation += six00/4;
gear2c._rotation -= six00/8;
gear2d._rotation += six00/16;
gear15._rotation -= six00/24;
gear25._rotation += six00/60;
minutes._rotation += six00/60;
//1:3600
missing._rotation -= six00/60;
gear2cq._rotation += six00/120;
hourfix._rotation -= six00/240;
gear2dq._rotation += six00/240;
gear15q._rotation -= six00/360;
gear2q._rotation += six00/720;
hours._rotation += six00/720;
//winding mode;
DOTS = XE * 50;
XE = 8 + XPLUS/360;
//winding watch
if(Key.isDown(Key.LEFT)){marker = marker + 18;
XPLUS++;
  this.clear();
lineStyle(4,0xCCB700);
spiral(260.5,438.0,125,DOTS,XE,0);
XE = 8 + XPLUS/20;
if(Key.isDown(Key.RIGHT)){marker = marker - 18;
    XPLUS--;
  this.clear();
lineStyle(4,0xCCB700);
spiral(260.5,438.0,125,DOTS,XE,0);
    spring._yscale = spring_ybase - (bolt_range/0.73);
    spring._xscale = spring_xbase + (bolt_range/Math.PI);
    rod._y = rod_base + bolt_range;
    spring_cap._y = spring_x + bolt_range;
if(bolt_range < 0){bolt_range = 0; speed = 0;}
if(bolt_range > 65){bolt_range = 65;}
if(clamp.catchdot.hitTest(mgearC.catchdot)){activation = 0;}
if(rod.tip2.hitTest(catchdot3)){activation = 1;
clamp._rotation = $a;
clamp2._rotation = $b;
mgearB._rotation = $c;
sgearA._rotation = $d;
mgearA._rotation = $e;
saw._x = $f;
saw.sgear1._rotation = $g;
gear19._rotation = $h;
mgearC._rotation = $i;
//key was "DOWN" switched to SPACE to avoid interference
if(Key.isDown(Key.SPACE)){speed++; bolt_range = bolt_range +1 ;}   
else{bolt_range = bolt_range - (1 + speed/2);}
//if(Key.isDown(Key.UP)){bolt_range = bolt_range - 1; transferrod._rotation = 0}
transferrod._rotation = bolt_range * 0.728;
transferrod.bend._rotation = -bolt_range * 0.414;
clamp2.pullbeam._rotation = +clamp2._rotation;
rodgear._rotation = bolt_range * Math.PI;
doublerodgear._rotation = -bolt_range * Math.PI/2;
quadrodgear._rotation = bolt_range * Math.PI/4;
octrodgear._rotation = -bolt_range * Math.PI/8;
octrodgear.transferrod._rotation = bolt_range * Math.PI/8;
octrodgear.transferrod.bend._rotation = bolt_range * Math.PI/60;
lock._rotation = octrodgear._rotation * 1.25;
dotval.text = activation;
if(activation == 0){
if(rod.tip2.hitTest(clamp2.sensor)){clamp._rotation += 5; gear19._rotation -= 5; saw._x += 8.75;}
if(activation == 1){
if(rod.tip2.hitTest(clamp.sensor)){clamp._rotation -= 2; gear19._rotation += 2; saw._x -= 3.5;}
if(rod.tip2.hitTest(clamp2.sensor)){clamp2._rotation -= 2; if(saw.sgear1._rotation != 0){
    saw.sgear1._rotation -=9; mgearA._rotation -= 6; sgearA._rotation +=9; mgearB._rotation -= 6;
    mgearC._rotation +=6;}
if(rod.tip2.hitTest(clamp2.sensor2)){clamp2._rotation += 2;  saw.sgear1._rotation +=9;  
mgearA._rotation += 6; mgearB._rotation += 6; sgearA._rotation -=9; mgearC._rotation -=6;}
if(rod.tip2.hitTest(clamp.tip)){if(bolt_range < 26){bolt_range = 26; speed = 0;}}

Similar Messages

  • Can we change the layer's opacity?

    Can we change the layer's opacity in flash CS4? Such as change the photoshop's layer's opactiy.

    No and yes.
    No. A layer is just for stacking things and organizing your artwork. So there is no way to change a whole layer.
    Yes. Movie clip, graphic, and button symbols are the main paradigms in Flash and each of them can have their transparency altered. (In Flash is is called alpha.) So convert your artwork into a movieclip or graphic and then from the properties panel look for the color effects drop down and change the alpha.
    Or you can draw your art with colors that already have an alpha value set.

  • Can I change the bit depth on images in pdf files?

    I have a lot of pdf files that were scanned in 24 bit colour. I'd like to convert some of them to greyscale or black and white, and reduce the resolution to make them smaller.
    I can see how to reduce the resolution with Save As Other/Optimized PDF, but there are no options there to reduce bit depth. Is there any way to do this?

    Thanks, I think I've worked out how to use them. I found a fixup called "Convert color to B/W", but it seems to convert to greyscale, not black and white.
    I found this page describing how to convert to both greyscale and monochrome. It says the only way to do monochrome is to convert to tiff first:
    http://blogs.adobe.com/acrolaw/2009/10/converting-color-pdf-to-greyscale-pdf-an-update/
    If that's the case then Acrobat Pro isn't going to help me, but that was written in 2009. Does anyone know if true black and white conversion has been made available since then?

  • When using the Save Layer Comps to PDF Script, can you change the PDF settings. I need both Smallest File Size and Press Quality?

    When using the Save Layer Comps to PDF Script, can you change the PDF settings. I need both Smallest File Size and Press Quality? Thanks in advance to the group for assisting with this matter.
    — John

    No, there isn't. The way you're using the file is not recommended. You
    should use a review tracker to avoid getting in the way of one another.

  • How can I change the frame rate mode?

    Adobe Premiere Pro exports my videos with a variable frame rate. Because of this long videos are asynchronous. How can i change the frame rate mode? So Adobe Premie Pro exports my videos with a CONSTANT frame rate? The original video  has a constant frame rate...

    Sorry my mistakes. I am from Germany.. so...I mean with asynchronous that the video file and the sound file are displaced. In the beginning of the Video it's normal, but if the videos is very long it goes VERY "asynchronous"
    I analyzed the video with "mediainfo":
    General
    Format                                   : MPEG-4
    Format profile                           : Base Media / Version 2
    Codec ID                                 : mp42
    File size                                : 2.00 GiB
    Duration                                 : 20mn 13s
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 14.2 Mbps
    Encoded date                             : UTC 2013-12-11 13:56:13
    Tagged date                              : UTC 2013-12-11 13:58:30
    ©TIM                                     : 00:00:00:00
    ©TSC                                     : 30
    ©TSZ                                     : 1
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : [email protected]
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 3 frames
    Format settings, GOP                     : M=3, N=30
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Duration                                 : 20mn 13s
    Source duration                          : 20mn 13s
    Bit rate                                 : 14.0 Mbps
    Width                                    : 2 560 pixels
    Height                                   : 1 440 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Variable
    Frame rate                               : 30.000 fps
    Minimum frame rate                       : 30.000 fps
    Maximum frame rate                       : 30.030 fps
    Standard                                 : PAL
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.127
    Stream size                              : 1.98 GiB (99%)
    Source stream size                       : 1.98 GiB (99%)
    Language                                 : English
    Encoded date                             : UTC 2013-12-11 13:56:13
    Tagged date                              : UTC 2013-12-11 13:56:13
    Color primaries                          : BT.709
    Transfer characteristics                 : BT.709
    Matrix coefficients                      : BT.709
    mdhd_Duration                            : 1213733
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : 40
    Duration                                 : 20mn 13s
    Source duration                          : 20mn 13s
    Bit rate mode                            : Variable
    Bit rate                                 : 158 Kbps
    Maximum bit rate                         : 254 Kbps
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 22.8 MiB (1%)
    Source stream size                       : 22.8 MiB (1%)
    Language                                 : English
    Encoded date                             : UTC 2013-12-11 13:56:13
    Tagged date                              : UTC 2013-12-11 13:56:13
    mdhd_Duration                            : 1213777
    And there i can read that the "frame rate mode" is variable... and that's the bad thing... I want to change that point to a constant frame rate mode. I use the H.264 codec 

  • How can I change the settings of all instances of a particular effect?

    I've applied the same color correction effect to a lot of clips in the timeline. Now I want to fine tune the color correction (same setting for all clips still). How can I change the setting of all instances of the color correction effect without going into each clip manually?
    Looking forward to your thoughts on this!! Go on and save my cold winter editing day ...

    I was first hoping for File> New > Adjustment layer, but it's always greyed out. I thought that would create an adjustment layer, maybe I'm misunderstanding something? Anyway, if I create a black video stump and then right click it and choose "Adjustment layer", it will turn into one, and everything works as it should with that. If the black video become adjustment layer is placed on a video track atop my video, and I add for example color correction to it, it will be applied to the videos below.

  • [OSX] Photoshop CC bug - can't change Shape Layer colour from layers panel

    Hi there,
    I have a persistent bug where after a certain amount of time (potentially after the iMac goes to sleep and reawakes?) that after creating a new Shape Layer I can no longer change it's colour from the layers panel. If I double-click it the colour palette appears and it seems to record the colour but the Shape Layer does not reflect this. If I go into the Shape Layer bar at the top of the screen I can still change the Fill and Stroke.
    If I re-open the program it works again.

    Had the same problem. Turns out I needed to use the Path Selection Tool and click the path right on the canvas, not in the layer panel. This re-enables the Live Shape properties.
    Here is a short video with more details if you're interested -> http://www.michalkopec.com/blog

  • Can't change parent/layer in CS3

    I've been running into this problem alot in the last 6 months and I'm finally fed up. Basically, at some point while working on my CS3 projects, something unknown to me happens and I can no longer change a layers parent with the drop down box, same thing goes for layer control drop down boxes in the effects panel. Now, I can still change a layers parent with the pick whip, which is why I've just lived with the issue. But I've now run into a problem where I'm using a Layer Control expression effect and I cannot change the layer at all there. I click it and nothing happens, no response at all. Any help here would be greatly appreciated.

    Please be more specific. Provide info about the number of layers per comp, comp settings, what items are referenced/ used using the layer controls etc.. Also provide screenshots (use the camera icon to attach)/ info about the structure of the project or the project itself. I've never encountered such issues myself, but it is imaginable that too many references/ too many layers create some sort of overflow that prevents the list from being drawn or populated correctly.
    Mylenium

  • Is there a way to change the Layer Color Tag via Script?

    I tried to use the Script Listener to find the Event to change the Layer Color Tag but there were no commands recorded to my desktop. I have scoured the forums and the depths of Goooooo....ooogle and to no avail.
    I checked the API for an Art Layer and found no options to assign a Color Tag.
    I want to change the Color Tag From:
    To Color Tag Purple:
    Could anyone please help point me in the Right Direction?

    Just solved my own question:
    Photoshop was being weird so I had to change the color 2 times for the event to be recognized...idk why but it worked: heres the code:
    desc66.putReference( idnull, ref55 );
        var idT = charIDToTypeID( "T   " );
            var desc67 = new ActionDescriptor();
            var idClr = charIDToTypeID( "Clr " );
            var idClr = charIDToTypeID( "Clr " );
            var idVlt = charIDToTypeID( "Vlt " );
            desc67.putEnumerated( idClr, idClr, idVlt );
        var idLyr = charIDToTypeID( "Lyr " );
        desc66.putObject( idT, idLyr, desc67 );
    executeAction( idsetd, desc66, DialogModes.NO );

  • Can't change the weight of my strokes, color or fill...

    I use artioscad wich has a plug-in for illustrator. When I'm working with illustrator i can't change the weight of my strokes, color or fill, in fact i can't do anything, everything is locked. I have tried to unlock the draw but with n o sucessm can anyone help me?? I have to make the illustrations for the boxes I draw and using *.eps file is not my solution.

    Hi Megan,
    Thanks for the replay.
    I have tried many thinks, and tried what you wrote, but nothing. I'm new in this artioscad-illustrator, so probably I'm making something wrong. I just draw in artios and open directly in illustrator using esko plug-in.
    I tried again what to told me to trie but with no luck.
    I'll pass you a step-by-step what I made after oppening in illustrator:
    I'll make my steps for you to undersatnd whats hapening.. because I have tried looking the appearance palette.. and its ok.
    First i draw in artios, its a package software design which has a plug-in for illustrator (to open directly artios drawings in illustrator)
    Then in illustrator i open it directly, the aspect is like this:
    I unlock the chain of the layers and in the appearence palette apears just plug-in object.
    I can select an individual path but can't change it. If I make a offset path with 0mm, I can change that path weight but not the original. But if i try to move the offset path or the original path it gives me an error "Can't move the objects. The command was canceled"
    I have tried so many things that, realy, I can't remember all. I
    have a menu that has more options, but none of them unlock the paths. Every time try to drag an anchor it goes right back to the original position.
    The goal is to make something like the next image:
    Today I dupplicated my layer and then made a offset 0, now I can change the weight, color and fill my shape. Probably I will find more problens in the way. This was the only solution that worked with me!

  • Changing the layer colour in Isolation Mode

    How do I change the layer colour once I'm in Isolation Mode? I'm using CS4 and tring to edit a yellow object but Illustrator has made the layer/paths/edges yellow making it VERY difficult to see what I'm doing?
    ...actually, I just changed the objects layer to a differrent colour which seems to have made Illustator select the next colour down when in Isolation made.
    Is this my only option?

    I decided to test this more thoroughly.
    Elements edited in Isolation Mode do actually inherit the color of the parent layer.
    But there seems to be an exception: symbols. No matter what color the layer is, symbols edited in Isolation Mode get their own color. And that color is persistent across all symbols, regardless of the layer that they appear on.
    However, that color is not consistent throughout the lifespan of the document. The color changes according to a pattern.
    And the pattern is this: there is a sequential list of layer colors in AI, and a correlation  between the number of layers in your document and the sequential number of the colors in the Layer Options color list. Symbols always use the color that is next in the list of layer colors, following the pre-assigned color of the most recently-created layer.
    Test this out if you want:
    Create a new document. Note that the default layer always uses the "light blue" layer color.
    Now create a second layer in that document. It will be red.
    The third layer will be green, and the fourth will be blue.
    Now make a symbol and edit it in Isolation Mode. It's yellow.
    Now look at the sequence of colors in the layer color dropdown menu: "yellow" is fifth in the list, after "blue," the fourth color in the list. It seems like AI is creating a new temporary layer for editing symbols, and like other layers, it is automatically assigned a color.
    So basically, symbols edited in Isolation Mode will only be yellow if you have four layers. The way that AI assigns colors to symbols being edited in  Isolation Mode seems to depend on the number of layers in the document.
    If you followed the steps above, you can test this out by creating a fifth layer. Notice that it automatically gets assigned a layer color of yellow. Edited symbols will be magenta... the sixth color in the list.
    It doesn't matter if you change the colors of each layer after creating  them; as far as I can tell, if you have four layers, symbols edited in Isolation Mode will always be yellow.
    The workaround would be to add a fifth layer to your document. Symbols in Isolation Mode will then show up in magenta, which is much easier to see on a white background.

  • I can't change the length of an cross dissolve in iMovie

    I can't change the length of a cross dissolve in iMovie 10.0.1
    I do the right things but 1.0 second stays 1.0 second
    Who has the solution of this problem?

    »Pass Through« indicates that Adjustment Layers will affect lower Layers outside the Group and that contained Layers with different Blend Modes will affect Blending with underlying Layers outside the Group accordingly.
    If you change it to Normal or any of the other Blend Modes everything contained within the Group will basically act as one flattened Layer and Adjustments only affect the Group’s pixel content.
    Could you post a screenshot of the document with the Solid Color Layer’s Color Picker and the Layers Panel visible?

  • HT5312 I DO remember them but Apple chose to put them in Japanese and I can not change the language on Manage my Apple ID so I do not know if I made an error ,it threw me off , it was the wrong question Where did you fly to on your first Aiplane trip ? th

    I DO remember them but Apple chose to put them in Japanese and I can not change the language on Manage my Apple ID so I do not know if I made an error ,it threw me off , it was the wrong question Where did you fly to on your first Aiplane trip ? then I was unable to enter until 8 hours then called Apple Japan 4 times each time threy asked me would you like to speak with an English speaker,I said yes then they told me sorry today is Sunday no English speakers ,but they refused to speak Japanese, then I called 5th time and a kind guy could speak English we were on 1and 1/2 hours he got me to log in but the reset key chain could not be completed still pending.
    He said do not mess with that ! then I got a text from somewhere to reset 4 pins suddenly it was very strange I said to him that I got this pin this morning but it said you can use maximum 3 hours it had a UK number and I told him I do not like this and will not enter the code he said do not do it if it is from the UK and then I said to him ok you did a lot to help but we can not go any further ! and we cut of I went back to my computer to re do the ID but I found everything a mess so I call and a stupid sounding Japanese women with a squeaky voice came on I was calm at first and they want your phone number your IMEI number your iPhone serial number date of birth Address email address it takes 10 munutes to check then they ask what are you caling about so I try to explain my keychain is broken or problems with language security questions and can not change my pasword because the security question have failed me so it is ONE BIG HEADACHE AND I START I GET STRESSED she says Do want an ENGLISH speaker ,I say yes ,that guy i talked to earlier but I never got his name and first time I ever talked to him but they said he is not here so I said ok and then she said today is sunday so call back in the morning ,I said ,well ok in Japanese but they make you feel stupid because they do not want to speak Jap@anese with none natives and they are to busy,And they feel that I should not bother them ,then I say that Apple Japan is trying to refuse Apple foreign customers and then she wants to hang up and ask me to visit the shop ,but they are the same I have a very bad time with Apple Japan since they do not discuss software problems or security with customer meaning if you have a problem they ask you to come on a time 20 minutes max so they do hardware test and say you phone is fine then I say no I can not reset my ID they say you must call call centre so I am going around in circles ,When I call English it is usually Australia so if my problem is in Japan surely if do not want me to talk to them in Japanese and they ask me to call Australia but every time my call charge is expensive after asking them is this free because I have Apple care they say yes but when the call goes to Australia 0120 277 535 it might change to paid call so I call then I have to ask is this charging they say we can not give you that information ! so what can I do I have have been at the computer and phone all day on my day off work and in tre week I am so busy and can not use my phone I can not work without it ,this new technology for you ,they can not cope with the fact that the customer have problems yet they do not want to deal with us because they can not solve it and so it shows them to be useless they like to walk around in their cool tee shirts and retro shop but when it comes to functionality we are unwelcome they got the money so do not return because apple is perfect that nothing should go wrong .
    But it does somehow my English security answers do not work on a Japanese Question especialy if I did not choose that question I set  up the multiple choice In English and wrote the answers in English or Roman and set them langauge preferences in English, do you really think you can correctly write english name or word in Japanese they write a police patrol car  pato caa パトカア they do not have r and l .So it is my choice to make my security easy for me and as difficult for others to hack.But they also have patororoo choo meaning ' now patrolling ' so why they have pato caa patrol car and patoro patrol and have thousands of Chinese words kanji they can find patrol.
    I am getting off the topic but I am at a loss to fix this problem when they hold the keys and i have all the info to verify my ID.

    You have to enter the Apple ID and password. You are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • How can I change the display of Inbox in my iPad's mail app- so that it takes up the full screen?

    How can I change the display of Inbox in my iPad's mail app- so that it takes up the whole screen, as opposed to just about one third; the other two thirds display the full text of the selected email?

    You can't change the display in the Mail app, if you are holding the iPad in landscape orientation then the left-hand third will be for navigation, and the right-hand two-thirds will be an email. If you hold the iPad in portrait orientation then the navigation section becomes a drop-down section.

  • How can I change the age associated with my daughter's account?

    OK I am sure that this is a common issue.  Back when my daughter was about 9 or 10 years old, we bought her an iPod Touch.   She was too young to have an AppleID of her own, so I set one up for her using an extra gmail accoun that I had, and entered my birthdate/age.  A few years later, she received an iPad, and most recently, an iPhone.   All of these devices are tied to the same AppleID.
    Well, now she will be 13 years old soon, and I would like to switch things to represent reality.  She has her own email account, and I believe you can go to My Apple Id to change the Apple ID name and e-mail address.  My question is, can we change the age associated with the account?
    I hear you saying, "Just create a new AppleID for her."  That may end up being the only solution, but I am trying to avoid having two AppleIDs for her to keep up with.  She has already purchased a fair amount of content (music and apps) under the existing AppleID, and I am pretty sure from looking at the posts on this Community that you can not transfer content away from the AppleID under which it was downloaded/purchased.  And so, if I create a new AppleID, she will have to re-purchase the content to get it all in one place.  As she eventually grows up and becomes independent, I would like for he to not have to "start over" with her AppleID.
    Any advice or direction to information would be appreciated.

    I have a similar situation however a bit more complicated! It seems that when I was setting the birthdate I forgot to change the year so now my seven years old daughter shows up as a two months old! There is no way to change the birthdate because it shows up in light grey when I login into my daughters account and doesn't allow a change! The birthdate can be changed only when the child turns 13 however according to this she will have to be 20 before she can change it to show property 13 and here is where this is getting completely out of hand! Now to make things more complicated I have twin daughters and they came up with their unique but similar Apple ID, so changing one will require to change both Apple IDs! After being on the phone with Apple's customer support for about one hour I talked to a supervisor and the supervisor of the supervisor and their only solution is to create a new Apple ID! Of course in my case I will have to create two new Apple IDs, and I'm considering doing it. However when I started reading it becomes more complicated because I already made their Apple IDs part of my family group. It seems like you're not able to just let go of family member that is less than 13 years of age. You can only transfer it to another family, so Apple is making sure there are no kids left behind It seems like the only option will be to "abandon" the family and then create a new family with the new Apple IDs. If all this sounds bizarre to you it sounds bizarre to me too! If I can just put the kids in the car and drive them to the nearest one hour away Apple Store and have them show their credentials confirming their birthdate I would rather do that than having to spend more and more time with this issue, but that was not an option pointed out by customer support. So folks keep in mind that if you make a mistake your children's age is set in stone until he or she turns 20 if they happen to be seven at the time you made the mistake and no one can change this, even Apple! Now on the positive side I'm glad I didn't do the mistake when she was 13 or she will have to wait until she's 26 Most likely I'll be calling customer support tomorrow again and I will let you know how it went!

Maybe you are looking for

  • Weird Behavior in Form

    Hi everybody, I have foud weired behavior in my form. I created master detail relation ship between two tables. I kept Deffered and Automatic query property of realtion to NO. I run the form and i clicked on execute query. it works properly. When fir

  • Slwo to Come Out of Stand By after OS2 Upgrade

    Ladies and Gentlemen: Ever since I upgraded my 16 GB PlayBook to OS2, it has been very slow - sometimes up to 17 seconds - to come out of stand by.  Has anyone else run into this?  Any ideas as to how to speed things up a bit?  It was pretty well ins

  • Stuck Pixels

    How is the quality of the iPhone display? Anyone seeing stuck pixels? Mine is free of stuck pixels but incase I find something odd in the 14 day exchange period I want to weigh that against the stuck pixel, which I would hate! How hard is it to remov

  • A black wire sticking out of the CD tray

    I open the CD tray to my eMac and find a black wire with a fitting on the end. I has become detached from somewhere. Unable to use CD tray. Wondering how to put the wire back where it is supposed to go.

  • Error when downloading illustrator

    I have downloaded the adobe application manager with the full suite. I downloaded few of the trails, one of which is Illustrator. Although that it says that installation was succesfully completed I cannot launch it or find it anywhere on my pc laptop