AS 2 Conundrum

Happy Holidays everyone,
I've looked at this problem a hundred times but cannot seem to see what's causing my problem.  I am looking at this ActionScript in my Flash file:
import mx.transitions.Tween;
import mx.transitions.easing.*;
var tween_type = Strong.easeInOut;
var arr1:Array = new Array();//the array that will hold the data of each
var space_x:Number = 10;//the x space between news
var space_y:Number = 10;//the y space between news
var original_x:Number = c_holder.c_mc._x;
var original_y:Number = c_holder.c_mc._y;
var distance_x:Number;//the x distantce between items
var distance_y:Number;//the y distantce between items
var num:Number = 0;//ckeck number for auto play take 0=off 1=on;
var i:Number = 0;
var j:Number = 0;
var k:Number = -1;
var a_no:Number = 0;
var duration:Number = 6000;//time to transfere between items
var xl:XML = new XML();
xl.ignoreWhite = true;
xl.onLoad = function(ok) {
if (ok) {
var xdata:XMLNode = this.firstChild;
for (i=0; i<xdata.childNodes.length; i++) {
arr1.push({path:xdata.childNodes[i].childNodes[0].firstChild, title:xdata.childNodes[i].childNodes[1].firstChild, desc:xdata.childNodes[i].childNodes[2].firstChild, booger:xdata.childNodes[i].childNodes[3].firstChild, date:xdata.childNodes[i].childNodes[4].firstChild});
//distribute items in its position
DisplayNews();
xl.load("newsXML.xml");
function DisplayNews() {
for (i = 0; i<arr1.length; i++) {
mc = _root.c_holder.c_mc.attachMovie("itms","itm"+i,i);
mc.img_holder.img_mc.loadMovie(arr1[i].path);
mc.header = arr1[i].title;
mc.details = arr1[i].desc;
mc.dates = arr1[i].date;
mc.onRelease = function(){
getURL(arr1[i].booger, "_blank");
distance_x = mc._width + space_x ;
distance_y = mc._height + space_y ;
if (i%3 == 0) {
j = 0;
k++;
mc._x = j * distance_x;
mc._y = k * distance_y;
j++;
slideAnim(0);
//next button
tools.next_btn.onRelease = function(){
slideAnim(next_no);
//previous button
tools.prev_btn.onRelease = function(){
slideAnim(previous_no);
//first button
tools.first_btn.onRelease = function(){
slideAnim(0);
//lask button
tools.last_btn.onRelease = function(){
slideAnim(arr1.length-1);
//animation start
function slideAnim(no)
if( !no && no != 0 && a_no == arr1.length )
no = a_no = 0;
else if( !no && no != 0 )
no = a_no;
else
a_no = no;
a_no++;
tools.record = no+1  + " / " + (arr1.length);
next_no = no + 1;
previous_no = no - 1;
tools.next_btn._visible = true;
tools.prev_btn._visible = true;
if( no == arr1.length - 1 ){
tools.next_btn._visible = false;
}else if( no == 0 ){
tools.prev_btn._visible = false;
j = Math.round(no % 3);
k = Math.floor(no / 3);
old_x = c_holder.c_mc._x;
old_y = c_holder.c_mc._y;
new_x = original_x - j * distance_x;
new_y = original_y - k * distance_y;
var tw1:Tween =new Tween(c_holder.c_mc, "_x", tween_type, old_x, new_x, 1.2, true);
var tw2:Tween =new Tween(c_holder.c_mc, "_y", tween_type, old_y, new_y, 1.2, true);
auto_btn.gotoAndStop(2);
auto_play = setInterval(slideAnim, duration);
auto_btn.onRelease = function()
if( num ==0 ){
this.gotoAndStop(1);
clearInterval(auto_play);
num = 1;
}else if(num ==1){
this.gotoAndStop(2);
auto_play = setInterval(slideAnim, duration);
num = 0
My particular problem is with this section:
mc.onRelease = function(){
getURL(arr1[i].booger, "_blank");
The function itself works, when the SWF is clicked, a new window opens like it should, but the URL comes up as Undefined.  I know that the XML for the URL is loading into the SWF, because if I swap its location in the XML Nodes, it will show up correctly in one of the other fields inside the SWF when it plays.
So I'm throwing this out here for hopefully a fresh set of eyes to look at and point me in the right direction.
Many thanks,
Gary

he meant, use trace(i).  that will be the last value of i in your for-loop, not the value of i when your button
handler was created.
use:
import mx.transitions.Tween;
import mx.transitions.easing.*;
var tween_type = Strong.easeInOut;
var arr1:Array = new Array();//the array that will hold the data of each
var space_x:Number = 10;//the x space between news
var space_y:Number = 10;//the y space between news
var original_x:Number = c_holder.c_mc._x;
var original_y:Number = c_holder.c_mc._y;
var distance_x:Number;//the x distantce between items
var distance_y:Number;//the y distantce between items
var num:Number = 0;//ckeck number for auto play take 0=off 1=on;
var i:Number = 0;
var j:Number = 0;
var k:Number = -1;
var a_no:Number = 0;
var duration:Number = 6000;//time to transfere between items
var xl:XML = new XML();
xl.ignoreWhite = true;
xl.onLoad = function(ok) {
if (ok) {
var xdata:XMLNode = this.firstChild;
for (i=0; i<xdata.childNodes.length; i++) {
arr1.push({path:xdata.childNodes[i].childNodes[0].firstChild, title:xdata.childNodes[i].childNodes[1].firstChild, desc:xdata.childNodes[i].childNodes[2].firstChild, booger:xdata.childNodes[i].childNodes[3].firstChild, date:xdata.childNodes[i].childNodes[4].firstChild});
//distribute items in its position
DisplayNews();
xl.load("newsXML.xml");
function DisplayNews() {
for (i = 0; i<arr1.length; i++) {
mc = _root.c_holder.c_mc.attachMovie("itms","itm"+i,i);
mc.img_holder.img_mc.loadMovie(arr1[i].path);
mc.header = arr1[i].title;
mc.details = arr1[i].desc;
mc.dates = arr1[i].date;
mc.ivar=i;
mc.onRelease = function(){
getURL(arr1[this.ivar].booger, "_blank");
or:
mc.urlS = arr1[i].booger
mc.onRelease=function(){
getURL(this.urlS,"_blank");
distance_x = mc._width + space_x ;
distance_y = mc._height + space_y ;
if (i%3 == 0) {
j = 0;
k++;
mc._x = j * distance_x;
mc._y = k * distance_y;
j++;
slideAnim(0);
//next button
tools.next_btn.onRelease = function(){
slideAnim(next_no);
//previous button
tools.prev_btn.onRelease = function(){
slideAnim(previous_no);
//first button
tools.first_btn.onRelease = function(){
slideAnim(0);
//lask button
tools.last_btn.onRelease = function(){
slideAnim(arr1.length-1);
//animation start
function slideAnim(no)
if( !no && no != 0 && a_no == arr1.length )
no = a_no = 0;
else if( !no && no != 0 )
no = a_no;
else
a_no = no;
a_no++;
tools.record = no+1  + " / " + (arr1.length);
next_no = no + 1;
previous_no = no - 1;
tools.next_btn._visible = true;
tools.prev_btn._visible = true;
if( no == arr1.length - 1 ){
tools.next_btn._visible = false;
}else if( no == 0 ){
tools.prev_btn._visible = false;
j = Math.round(no % 3);
k = Math.floor(no / 3);
old_x = c_holder.c_mc._x;
old_y = c_holder.c_mc._y;
new_x = original_x - j * distance_x;
new_y = original_y - k * distance_y;
var tw1:Tween =new Tween(c_holder.c_mc, "_x", tween_type, old_x, new_x, 1.2, true);
var tw2:Tween =new Tween(c_holder.c_mc, "_y", tween_type, old_y, new_y, 1.2, true);
auto_btn.gotoAndStop(2);
auto_play = setInterval(slideAnim, duration);
auto_btn.onRelease = function()
if( num ==0 ){
this.gotoAndStop(1);
clearInterval(auto_play);
num = 1;
}else if(num ==1){
this.gotoAndStop(2);
auto_play = setInterval(slideAnim, duration);
num = 0
My particular problem is with this section:
mc.onRelease = function(){
getURL(arr1[i].booger, "_blank");
The function itself works, when the SWF is clicked, a new window opens like it should, but the URL comes up as Undefined.  I know that the XML for the URL is loading into the SWF, because if I swap its location in the XML Nodes, it will show up correctly in one of the other fields inside the SWF when it plays.
So I'm throwing this out here for hopefully a fresh set of eyes to look at and point me in the right direction.
Many thanks,
Gary

Similar Messages

  • The old "backup disk cannot be found" conundrum

    i've seen this message a few times before but the resolution has always been as simple as checking the connection. but not this time.
    time machine is not seeing the external drive at all. it shows up in disk utility and these are the messages i received. it is stuck on the last one.
    Verifying volume “Jane's backup”
    Error: This disk needs to be repaired. Click Repair Disk.
    Verify and Repair volume “Jane's backup”
    Volume repair complete.Updating boot support partitions for the volume as required.
    when i open the time machine preferences, TM is switched off. if i switch it on, then click on "select backup disk", it just opens a window which shows no backup disk to select. if i hit cancel, it automatically turns off TM.
    HELP!

    Hello Jane:
    conundrum
    Great word!
    I could not tell from your post. Did you run repair disk from your software install DVD on the external disk? If it did not complete properly, there are third party programs that are more robust (DiskWarrior is the "gold standard," but it is pricey at about $90). In any event, if the disk cannot be repaired, an erase and then new TM backup would seem to be the option. It appears that something is wrong with the disk, not with TM.
    Barry

  • My Bootstrap nav conundrum: Does anyone who has used a bootstrap nav in BC had this issue...

    My Bootstrap nav conundrum: Does anyone who has used a bootstrap nav in BC had this issue or know the fix: If you look at any page on http://www.aerotype.com, the first two clicks on almost any part of the page (like the rotator image left or right arrow) cause the page to jump, and you open the inspector on the top nav area and look at the div with the class="navbar-collapse collapse navbar-right navbar-ex1-collapse" you'll see that an additional class, .in, is added and .collapse is removed on the first click, and a style="height: auto;" is added, then on the second click it's changed to style="height: 0;"... I can't figure our what is causing 'in' to be added to the class (or .collapse removed), what it's for, or how to change it, if that is the issue... the his doesn't happen when the class: navbar-collapse is removed, so I think is has something to do with that but of course the collapse doesn't function without it. If anyone can enlighten me on what is going on I would Greatly appreciate it.

    You have this click function on the top'ish part of your site.js that is causing this issue!
    // collapse navbar in phone mode on click $(document).on('click',function(){ $('.navbar-collapse').collapse('hide'); }) // end collapse navbar in phone mode on click
    Your are better off just deleting it (the click function) as it is not doing what the code comment says it does.

  • MacBook Conundrum

    So I have a MacBook that I acquired with the common problem of not turning on. However it is a conundrum I have not found the specific answer to in the forums. When I got it the power button didn't work, but it would go to sleep and wake up. It would also only run on the power cord. I noticed it kept losing the date so I assumed it was the pram battery. Bought one, replace it and....wouldn't turn on at all. When I looked at the battery I removed, I noticed that one of the wires was disconnected. So here is where I am at:
    Situation #1.
    Pram battery disconnected.
    System will start with power cord and no battery. Put battery in and system shuts down.
    Power button does not work
    Situation #2
    pram battery disconnected with battery in.
    System will not start.
    Power button does not work
    Situation #3
    pram battery connected with no battery or battery in.
    system will not start.
    Power button does not work
    When the pram is connected I can't reset the pram because the system won't start.
    I live no where near an apple store. Any suggestions, thoughts? Is this the logic board? If so, why will the system function in situation #1?
    Thanks.

    Network 23 wrote:
    Then get the 13" and put 16GB RAM in it.
    The trick is to not buy the RAM upgrade from Apple. Order the MacBook Pro with the minimum amount of RAM, then buy a 16GB kit from OWC or Crucial. These are very reputable companies that often research and then make available reliable kits that can go beyond the RAM limit Apple goes by.
    OWC/MacSales 16GB kit
    Cruclal 16GB kit
    The only reason Apple RAM configurations may be less than others is because Apple does not test newer, larger RAM modules with existing machines. Apple only tests modules available at the time the machines were first shipped and that was last year.
    The newest 13" has 8GB on board memory and no slots. It is not upgradable.

  • Zen Micro Music Download Conundrum - Really Frustrated Help Nee

    <SPAN class=posttext>Man am I frustrated - really frustrated. Here is my conundrum:
    I have a Zen Micro. I want to purchase music online. It is a frikin' maze of problem solving. I download from iTunes, they have some sort of proprietary format that my Zen won't play. Okay - no problem. I go to Yahoo music. You have to pay to subscribe and then download. They are wma anyway. Napster is wma as well. Walmart music is wma too. I would try Rhapsody, but I think you have to pay to subscribe and download as well. It just occurred to me - Sony has a music download site as well? I will check them next. I tried converting the Napster wma into an MP3 but I got a message the Creative software cannot convert the file. Arghhhhh.
    So - what is the easy way? Is there a site I can pay and download mp3 music files and transfer them to my Zen Micro? Or is there a freeware converter to convert wma files into mp3 files - that is if the downloaded files do not have a voodoo whammy curse on them that prevents them from being converted.
    Might "Play for Sure" fix this? As far as I can tell this is for subcription services, not for single downloads.
    Thanks for any help.

    I'm no expert, but I think Etomi would work for you. I've been downloading music from them for a while now, and while I haven't had an MP3 player to try and download the music to, I know that at the very least, music I got from Etomi is on my hard dri've, and I can burn CDs with those songs.
    I also know there is some type of way to convert MP3 to WMA and vice versa although I've never done it.
    just google "WMA to MP3" and you should find some sites...

  • We have a wireless internet conundrum (who doesn't).

    We have a wireless internet conundrum (who doesn't).
    I have a new Airport Extreme Base-station (n-standard) in our basement. I bought this after frustrations with linksys and belkin routers as far as distance from router connection is concerned. My issue is not speed. Specifically, I have the router in the finished basement with my "precious" iMac Intel which is ethernet hardwired to the base-station. The PROBLEM is getting a wireless connection with my daughter's iMac G4 on the 2nd floor.
    This makes the problem interesting (from system profiler):
    iMac Power PC G4 (3.3)
    CPU 1 GHz\Mem 768 MB
    iBook G4 Power PC (1.5)
    CPU 1.42 GHz\Mem 1.5 GB
    Both of the above computers have the following wireless specs:
    Airport Extreme Card
    Firmware 405.1(3.90.34.0.p18)
    Channel 1
    The iBook shown above picks up the connection perfectly well in my daughter's room with a full signal level indicator but the iMac does not connect- the signal indicator is almost zero. The iMac when moved to the first floor is fine.
    The way I see it one solution might be to move the router to the first floor and take my "precious" off of hardwire connection and go wireless and experience a speed drop.
    If I have no other choice, I would prefer to throw a "few bucks" at the problem and keep my "precious" blazing. Does anyone have any other ideas? Can I buy something to extend the Airport signal further? An antenna for the Power PC iMac? Could the iMac's Airport Extreme Card be bad? Is there such a thing as an wireless n-card that plugs into a UBS port?
    Thanks for any suggestions.
    iMac Intel 2MB Ram   Mac OS X (10.4.10)  

    The iBook shown above picks up the connection perfectly well in my daughter's room with a full signal level indicator but the iMac does not connect- the signal indicator is almost zero. The iMac when moved to the first floor is fine.
    It is very possible that you may have some form of Wi-Fi interference in the basement area that is preventing you from getting a good clean signal when the iMac is located there.
    I suggest you perform a simple site survey, using utilities like KisMAC, MacStumbler, iStumbler, or IPNetMonitorX to determine potential areas of interference...and then, try to either eliminate or significantly reduce them.
    Can I buy something to extend the Airport signal further? An antenna for the Power PC iMac?
    Check out QuickerTek transceivers.
    Could the iMac's Airport Extreme Card be bad?
    Since you mentioned that you got good performance on the 1st floor with the iMac, I would doubt there is something wrong with the AirPort Extreme Card in your iMac.
    Is there such a thing as an wireless n-card that plugs into a UBS port?
    Same outfit, QuickerTek now offers 802.11n upgrades for Macs. However, the model for the iMac is internal and does not plug into a USB port.

  • Casting conundrum

    Howdy. I am caught in a conundrum:
    Why is it that you can:
    MyObject[] = (MyObject[])request.getAttribute("myOb")
    (provided that "myobj" was originally an array of type MyObject)
    But you cannot:
    MyObject[] = (MyObject[])vector.toArray();
    It is precisely b/c I constntly (successfully) cast request.getAttribute() values to a narrower type that I wound up getting confused about the casting from an object array to a narrow type (e.g. when usingVector.toArray())
    Can someone help clear the fog?
    Much appreciated!

    I appreciate all of your help, and I do indeed use the vector.toArray(MyObj[]) method when converting. I am wondering however about the other half of the question...Namely, when using the HttpServletRequest method request.setAttribute(String name, Object attr)
    How is it that the request.getAttribute() method be cast to a narrower object type upon retrieval, when the vector.toArray cannot:
    MyObject[] = (MyObject[])request.getAttribute("myobj")
    but not
    MyObject[] = (MyObject[])vector.toArray()
    Sorry about the confusion...
    Melissa

  • Has anyone got a clue how to solve this conundrum?

    Just bought ipad air. Entered ID details. Received email on my PC. Checked 'Verify Now' box. Link failed. Repeated over 50 times. All failed. Has anyone got a clue how to solve this conundrum? The wife is tearing her hair out and ranting on about litigation.

    Thanks for reply Demo. What I mean by 'failed' is nothing happened when I hit the 'Verify Now' box on the email from Apple in my Inbox  I expected to move to another page to enter further details but that didn't happen and there was no message saying 'verification accepted' or similar. I spoke to Apple Support and after about an hour she advised me to speak to a friend. If my friend can solve this, Apple needs to give her a job. Thanks again.

  • Ethernet printer conundrum

    Ethernet printer conundrum.
    ===========================
    My "network" is minimal and simple:
    The DSL connection comes from the street to a Siemens/SpeedStream DSL "modem"/hub supplied by the phone company (my ISP). My desktop Mac is connected by Ethernet wire to one of the five ports on said "modem"/hub.
    A Netgear RangeMax Next wireless router Gigabit Edition is also connected to one of the five ports of said modem/hub.
    So far so good.
    I can connect to the Internet through the wire and my wife's Macbook connects to the Internet wirelessly through the Netgear.
    Then, I connect a Samsung ML-2850ND monochrome laser printer that replaces my recently, finally deceased LaserWriter IIg, to another port on the DSL modem/hub. Great, I can print from my desktop machine.
    But the wirelessly connected Macbook cannot print.
    Then I unplug the Samsung printer from the DSL modem/hub and connect it directly to the Netgear router. Now the Macbook can print, but it cannot connect to the Internet.
    Will a network SWITCH to split the printer connection between the two routers help? Or am I dreaming?
    Any other suggestions will be greatly appreciated.
    Message was edited by: Ramón G Castañeda

    I think you should arrange a completely different configuration than the currently used in your setup.
    I'll tell you how I'd conect it if it were my home network (and I have set several DSL modem and wireless routers this way).
    First, connect the desktop computer to a LAN port on the Netgear router using an Ethernet cable, enter the configuration page and run the Setup Wizard, as described in this Netgear k.b. article.
    You will need to enter the username and password provided by your ISP. You can get them thru the DSL modem configuration page, or by calling your ISP Support desk.
    Basically, when you set PPPoE on your wireless router, it is the router the one that obtains the external ip address from your ISP, instead of the modem, which is put into "Bridged mode".
    Then, the router will assign an internal ip address to every device you connect to it. Also, check the router has a lease time set to "forever".
    If the Netgear router Setup Wizard fails to set to PPPoE mode, then you'll need to manually enter the modem into bridging or "bridge mode" and configure the Netgear router manually to PPPoE.
    The reason I suggest you to implement this setup is that, not only the network printer and the computers will get to work they way they do, but also, in the future, if you want to add any other device to your network, you'll only need to plug it into a LAN port on the Netgear router, or join the wireless signal provided by it. It's a robust configuration.
    The tricky part may be to get the modem into bridge mode...

  • Conundrum - PXE boot fails vs. "reinstall OS from software center" succeeds

    Hi All.
    I am facing a bit of a conundrum..
    In our offices I am seeing some strange behaviour when trying to PXE boot into a TS to reinstall or install OS. 
    If I use F12/PXE boot then the deployment fails during OSD.
    If I take a client (the same client as I tried pxe booting with) that is fully installed and reinstall OS via software center then the deployment completes. 
    Any ideas what could be wrong?
    Kindest regards, Martin

    Daniel:
    Clients are both laptops & desktops.
    I "feels" like it's the network that's acting up but I really can't see where. 
    PXE boot works.. it's not until it tries to apply the OS... 
    whether it's a timeout or what it is I cannot say.. 
    Gerry: After all will you be likely to rebuild your entire estate in-situ any time soon?
    You know... we are actually On the verge" of upgrading & Streamlining our entire network infrastructure..
    But I'd still love to solve the problem.. 
    We never had this issue when we only had MDT as deployment tool. 
    it's not until sccm came into the picture that this issue has arisen.
    Kindest regards, Martin

  • Java design conundrum

    I have a design conundrum that I have been wrestling with for a while and have not been able to come up with a viable solution. So I decided to post it here in hopes someone can recommend a solution. Here it goes;
    I have an applet with many packages that make it up. I have a status window that is always displayed as part of the applet. I use this window for Objects to write their status to. Currently I am using a static method to write to this window. This works great in that any object in any package that wants to write to the window merely has to invoke the static method to write it's status. The problem arises if I then spawn another applet. The new applet's status window displays the text that was in the previous applets status window. I looked at event/listener, observer/observable et al. The problem is that a object in another package does not have access to the window to add itself as a listener. If I try and arrange it so the object that contains the status window gets passed around the code will get very ugly and very tightly coupled, something I want to avoid. I am trying to do this without using static's or singletons. Any ideas?

    This works great in that any object in any packagethat wants to write to
    the window merely has to invoke the static methodto
    write it's status. Any object in any package that wants to write to
    object ABC merely has to invoke the method to write
    its status. Sure, it has to obtain a reference to
    this object first, but a well-designed program can do
    this without compromising anything. What's your
    point?
    I am trying to come up with a way to rewrite the classes so that static's are not used. However the behavior is such that I need away to write to a single point from any class that wants to. Example the applets window has a split pane with the bottom half displaying status(text) from other classes. During the prototype I just used a static to write the text. I want to eliminate the static's so multiple invocations of the applet are separate, even though they are running in the same JVM. I have not had much luck comeing up with a design and/or way to implement it. That's why I hoping someone here can point me in the right direction or slap me upside the head so I see the really simple solution.
    The problem arises if I then spawn
    another applet. The new applet's status window
    displays the text that was in the previous applets
    status window. Definition of static variables. Use instance
    variables, which belong to an object rather than a
    class.
    Yep, I trying to come up with that.
    >
    I looked at event/listener, observer/observable etal. The problem is that a
    object in another package does not have access tothe window to add
    itself as a listener. If I try and arrange it sothe object that contains the
    status window gets passed around the code will getvery ugly and very
    tightly coupled, something I want to avoid. I amtrying to do this without
    using static's or singletons. Any ideas?Your code is already tightly coupled. Static calls
    are the worst possible dependency for the client
    class -- there is no way to abstract it. So if you
    are going to make a client class coupled with a
    static class, that static class should be pretty
    reusable and project non-specific.
    Yes, I am trying to un-couple it. I agree static's are bad but they are soooo easy. At least initially then of course, yuck.
    Instead of using the status window class staticly,
    the objects in your model layer should be passed an
    abstraction of the status window view -- be it an
    interface (preferred), abstract class, high-level
    concrete class, etc. In order to do this you will
    have to make objects out of your status window rather
    than utilizing it staticly, since you cannot abstract
    static-based classes.That is what I hope to be able to come up with but so far no luck.

  • Apple ID and Email Verification Conundrum

    Email Verification Conundrum
    After updating to iOS 5 yesterday on both my iPad and iPhone, I was forced to create a new Apple ID because iOS 5 only permits email addresses as Apple IDs. My previous Apple ID was NOT an email address.
    Anyway, I created a new ID, and subsequently went through an email address verification process which was messy and confusing.
    Problem is, I now have two Apple IDs: one that I used everywhere until yesterday (and that I used to register as an Apple Developer), and the new one created yesterday for my iPad and iPhone in-store purchases. But I can't purchase or download anything - because it tells me I haven't verified my Apple ID. But I HAVE. If I click the OK button to review instructions on how to verify my Apple ID, I am informed that my email address is already verified for another Apple ID (presumably my original ID - the one I used to register as a developer).
    I only use the one email address. How can I resolve this conundrum?
    If I change the Apple ID I use on the iOS Developer Center, will that screw up any of my existing certificates or provisioning profiles?
    And even if I do change my Apple ID on the iOS Developer Center, will that solve this email verification dilemma?
    Any help appreciated.

    Thanks for your response but still no joy:(
    Yes I had already read the FAQs, but hadn't found that first link you suggested.
    I followed that, logged in with my old (non-email address) Apple ID and things looked promising. The instructions looked straightforward and I'm presented with a panel inviting me to "Make your Apple ID and primary email address one and the same"
    So I click "Submit"...
    I then sign out and try to sign back in using my email address ID but it fails with the message...
    "Your Apple ID or password was entered incorrectly"
    Perhaps I have to allow time for Apple to process my request?
    Perhaps the fact that I am attempting to modify an old Apple ID to a name that matches an existing newer one is just not possible?
    Perhaps I have to dump my other new ID first - before attempting to change the other one?
    Anyway...
    The conundrum continues

  • Caught in a conundrum while trying to upgrade a Mac Mini (mid 2010) from Snow Leopard to Mountain Lion

    Hi gang,
    I am in a very frustrating position as I try to upgrade my Mac Mini (mid 2010) from OS X 10.6.8 Snow Leopard to whatever the latest version of Mountain lion is. The reason I am doing this is because the original hard drive died and the Mini sat there for 6 months before we decided to get a new hard drive and revive it.
    I installed a new 500GB 7200rpm SATA drive and the problems began.
    First I couldn't get Mountain Lion installed as a fresh OS installation (using both a USB drive and a DVD to no avail). It just wouldn't go. The grey Apple logo/loading screen would come up and just sit there doing nothing while the loading icon spun.
    I then tried installing Snow Leopard (the OS that the Mini came with when it was new). After some messing around, that got done.
    However, a peculiar thing happens when the Mini boots. Everything loads up into Snow Leopard, but although the mouse curser moves, I cannot click on anything or use the keyboard for 4-5 minutes. Then it just work (I am typing this on the Mini). This happens every time.
    Now, when I updated to 10.6.8, I was able to load up the App Store and download the Mountain Lion install app. I clicked it and went through the initial copying of files and then the restart, but after the reboot, the grey loading screen would not progress. I rebooted again and held down the Option key to check out the available boot volumes, and all I saw was the installation DVD I had in there for Snow Leopard and a hard disk volume called "Mac OS X Installer."
    So I booted into the Snow Leopard install DVD and opened Disk Utility to check things out. I did a verify disk and a permissions repair. Interestingly, the first repair I did gave me the message that the ACL was missing from Volumes and that is was fixed. I read something somewhere which talked about the Access Control List and mouse/keyboard issues. But who knows. When I boot back into the Mini as normal I am returned to the fully-functioning Snow Leopard installation, like nothing happened.
    And now here is the kicker: it appears that the Firewire bus is hooped. In the Profiler, when I view the FireWire settings I get the message, "Warning: Unable to list FireWire devices." So I am pretty sure the one thing I cannot do is boot the Mini into target disk mode attached to my Mac Pro and installed Mountain Lion that way.
    So to recap: I can't finish the Mountain Lion installation because the install won't continue after rebooting because there is something wrong with the underlying base system, which might be hardware (FW bus) related. I think.
    Some things I have tried:
    Resetting the SMC
    Resetting the PRAM
    Reparing permissions
    Booting into Safe Mode (doesn't work)
    Booting into Verbose Mode to observe what happens (I get the "Can't load the Bootcache.playlist" error, which I suspect is related to the screwed up FW bus)
    Trying to boot using Internet Recovery (doesn't work)
    Booting into Single User Mode and attempting the "fsck -y" etc. sequence to try and repair the ACL that way
    So I am stuck.
    I guess the question is, should I get an external HD enclosure and install Mountain Lion onto the hard drive that way and hope it works when I put it back into the Mini?
    Any other ideas? I have spent a couple days ******* around with this is am running out of ideas...
    Any advice would be appreciated!

    Addendum: I read on a post here (http://forums.macrumors.com/showthread.php?t=420169) about removing some kext files in order to trick OSX into thinking that there were no FireWire ports.
    I followed the instructions and removed from /System/Library/Extensions/ the following files:
    IOFireWireSerialBusProtocolTransport.kext
    IOFireWireAVC.kext
    IOFireWireFamily.kext
    IOFireWireIP.kext
    IOFireWireSBP2.kext
    I restarted and BAM...Snow Leopard booted crazy fast and the mouse and keyboard worked instantly.
    The System Profiler says "No FireWire ports were found."
    So this tells me that the FW port is probably the culprit and is messing up the installation.
    So how do I hack the Mountain Lion installer and tell it to ignore the FW port, which is obviously quite dead? Or is there something I can do to the Base system that is similar?

  • Game center conundrum

    Here's a curly one for you...
    My two sons and I want to play Clash of Clans on 3 separate devices. I have an iPhone 5 running the latest IOS. My eldest has an iPod touch 2nd gen on IOS6.1.5 and my youngest has an iPod touch 2nd gen currently updating to IOS6.1.5
    We have one apple ID and one game center amongst all apple devices and yet my eldest and I have separate clans (I have read that this isn't possible... But we do, we have different clans on the same game center account). My youngest wanted to join the game so we downloaded the app onto his iPod but my eldest son's game appeared which caused arguments as the eldest wasn't happy with the youngest making changes to his game.
    I read online that he needed a separate game center account (despite as above, my eldest and I are on the same game center and have different games working simultaneously). So I created a new apple ID/Game Center account on his iPod, deleted and reinstalled the app and still my eldest son's game appeared again.
    So just to reiterate...
    3 separate devices wanting to play COC
    2 devices have the same game center account and are running 2 different clans
    third device has a different game center account but is piggy backing in off the clan on the other iPod
    What the???

    Hello christinacoco77,
    After reviewing your post, it sounds like a games progress is not being updated in Game Center. I would recommend that you read this article, it may be able to help the issue.
    Using Game Center on your Mac or iOS device - Apple Support
    If you have an issue with a Game Center game, follow these steps:
    Make sure that you have the latest version of the game. To check for updates, go to App Store > Updates.
    Test your connection using a different game. If you can't connect with a specific friend or player in multiple games, they might need to check their Wi-Fi connection and router settings.
    On iOS, try opening the game from the Home screen, rather than from within Game Center.
    If you can't solve the issue, follow the steps in the next section to report the problem to the developer.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • Restore Conundrum, Time machine & migration assistant

    Hi All
    I have got myself in a bit of a pickle and would really appreciate some advice.
    My HD crashed and after trying to repair it I got an "Invalid Node Structure" message. Disk Warrior wasn't able to repair it but at least allowed me to copy the drive folders to my external firewire drive. I wasn't able to do an 'Archive & Restore' as the disk wasn't accessible and the only option was to erase the disk. I then re-installed from my Leopard startup disk and currently have 10.5.2 on my machine.
    when my machine crashed I was running 10.5.7
    My last Time Machine backup was 2 months ago and is 10.5.6 (and the partition map scheme was unfortunately MBR on the external drive!!!)
    What I would like to do is to restore my system from the TM backup and then update my data from the copied folders on my external FW drive that I copied with Disk Warrior. The problem is that migration assistant doesn't recognise the copied folders as the disk is not a start up disk. I am therefore in the process of using disk utility to create an image of the folders on the FW drive on another partition on that drive that has a GUID partition map scheme.
    Am I doing the right thing? what else should I do or to get back up and running with the most up to date data and system settings?
    This is my proposed sequence of activities:
    1. Restore system using my time machine back-up
    2. Use migration assistant to update data from the copied files disk image
    Many thanks

    I'm not sure how well the current version of Spotlight works with external drives, but you might try a Spotlight search of your backups, using the "Last Modified Date" criterion to help find files & folders you want to copy over to the startup drive. However, I think you will have to copy the files from the mounted disk image back onto some drive to do this because I don't think Spotlight works with disk images.
    For Mail, iCal, & some other apps, you can probably just replace the appropriate folders (like your ~/Library/Mail/ folder) on your startup drive with the corresponding backup ones. To be safe, I would use the backup options provided with these apps (like those mentioned in How to back up and restore your important Mac OS X 10.4 files) and/or make copies of the startup drive versions in case something goes wrong or you find that there are items in one folder that aren't in the other.
    Other possibly useful links:
    iCal, Mac OS X 10.5: Empty "Home" and "Work" calendars may appear after installing Leopard
    Mac OS X 10.5 Help: About application data and preferences
    I'm fairly sure some other user will have a more detailed answer for you....

  • 24" iMac positioning conundrum

    Hello all... I ordered the 24' iMac yesterday which should be with me by October 31st ( too long!!!! lol )
    I have quite a large desk but above it is a shelf which, going by the dimensions of the iMac, will be just above the top of the computer. Do you think this may cause any problems... heat-wise etc ? I think air is drawn in from the bottom and expelled at the top, so I don't think there'll be a problem.... but one can never be too safe.
    Any help/suggestions would be great
    Lee

    I'm pretty sure it'll be alright, my computer is in a pretty tight space next to my TV, and I never have heat problems, and plus, if you did start to have heat problems you'd begin to hear the fan run louder, so that would be the time to find a more open space, but for now you're cool :-P
    Below is a picture of my setup, it's in a pretty tight space, but I never have any problems at all....
    Hope this helps a bit
    -Josh
    My iMac's Special Space
    iMac Intel Core Duo   Mac OS X (10.4.8)   2.0 GHz - 250GB HDD - 512MB RAM (Stock) - 128MB VRAM

Maybe you are looking for