i was wanting to get the Chrome object to change its opacity to 1 but the clip is inside of another clip and it won’t think it exists here.
what do you mean by this?
You are not explaining well enough what you want help with
pretend we have clip A, and it’s trying to change the opacity of clip C. however, clip C is inside of clip B.
in clip A, you need to access clip C with clipB.clipC
. this makes the code look inside clip B, then it finds clip C. if you only use clipC
, the code can’t find it.
change the opacity with something like clipB.clipC.opacity = 0.5;
.