Programmatic controls appearing at different times

Here's a weird one. I'm playing around with programmatic controls (as opposed to those created and connected in IB), and in my viewDidLoad function, I create a textbox and button as below.
I animate into this view using a spin motion, based on the sample utility template, that all works great.
The weird part is that the text box is visible during the spin, and the button doesn't appear until just after the spin is complete.
Is there something different about those controls, or am I forgetting an important property of the button that affects when it becomes visible?
Thanks in advance for any thoughts...
-(void)viewDidLoad
[super viewDidLoad];
CGRect frame = CGRectMake(20.0, 68.0, 280.0, 31.0);
UITextField *aTextField = [[UITextField alloc] initWithFrame:frame];
aTextField.textAlignment = UITextAlignmentCenter;
aTextField.borderStyle = UITextBorderStyleRoundedRect;
aTextField.autocapitalizationType = UITextAutocapitalizationTypeWords;
aTextField.keyboardType = UIKeyboardTypeNamePhonePad;
aTextField.returnKeyType = UIReturnKeyDone;
[self.view addSubview:aTextField];
CGRect frame2 = CGRectMake(20.0, 100.0, 100.0, 31.0);
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = frame2;
[self.view addSubview:btn];

I pasted your code into FlipsideViewController.m and it seems to work fine. I can't reproduce the delayed visibility you reported. Are you seeing this behavior on both the Simulator and the Device? Is your code in that same file? What changes have you made to the template, especially RootViewController.m?

Similar Messages

  • Some, but not all, podcasts existing on the iPod no longer appear in iTunes. Different podcasts have been affected at different times, after changes in the state of the iPod. Only podcasts are affected.

    I have not seen this precise issue addressed anywhere. I don’t know if it’s an iTunes or an iPod problem:
    - Some, but not all, podcasts existing on the iPod no longer appear in iTunes;
      this, after normal behavior for more than a year since purchase of the iPod.
    - Different podcasts have been affected at different times, after changes in the state of the iPod.
    - Only podcasts are affected.
    - This concerns an iPod nano 6th gen. and iTunes 11.0.2 (26) on System 10.6.8
    - The only change to iTunes, the Mac, or the iPod is that just before this condition began
      I’d begun syncing an iPhone via iTunes.
    I sync manually (“manually manage music and videos”). The first time this happened, I wanted to delete seventeen podcast episodes (all belonging to one podcast) existing on the iPod — but they didn’t show up in iTunes. I tried re-downloading them and re-syncing, to see if the new versions would somehow “re-link” to iTunes. They didn’t. Only one — new — episode appeared in iTunes.
    I ultimately reset the iPod and manually resynced all the podcasts I currently had on iTunes. That worked, though I had to painstakingly add in all the other content deleted by the reset.
    So: after that reset and manual sync, all podcasts and episodes on the iPod were visible to iTunes and I was able to delete the podcast and its — now 18 — episodes I’d wanted to get rid of to begin with. But the next time I connected the iPod, only 8 podcast episodes out of 21 episodes total existing on the iPod were visible to iTunes. These are different podcasts; I’d deleted the original “invisible” ones.
    By “visible,” I mean in the “Podcasts” list view under “[name]’s iPod” in the iTunes sidebar. If I select “[name]’s” iPod in the iTunes sidebar and the “Podcasts” tab, all podcasts and episodes are visible, though greyed out because I’m set to sync manually. It’s unclear to me if these are the podcasts on the iPod or those currently in iTunes, as they are currently the same. If I switch to syncing automatically, all content on the iPod will be lost again, so I’m not up to trying it at the moment.
    As I said,  this involves only podcasts. All other content on the iPod does appear in iTunes.

    I have the same problem- i see my movies in the ipod section in itunes and they even show as mpeg4 in the 'kind' section but they dont have that small TV icon next to them. if i play these in itunes, they play fine- but try playing them on the ipod and all you hear is the sound and no picture. All videos that i manually transfer work fine in the beginning- its when i hook up the ipod to the comp again and start itunes- they start showing up without the 'tv' icon!! i have to again transfer them from the itunes library to activate them as videos.
    Need Help!!!

  • I would like to do a program that have one string control and one string indicator, any character that I type in the string control in the same time it will be appear in another string (indicator). How can help me?

    I would like to do a program that have one string control and one string indicator, any character that I type in the string control in the same time it will be appear in another string (indicator). How can help me?

    Why not use an event
    Add a While Loop, inside the loop add the Event Sructure.
    Now in the event structure selecd the String Controls.value change event to
    react
    and the new value inside the event that you get,( connect to the String
    indicator box.
    On Sun, 10 Aug 2003 15:58:47 -0500 (CDT), WiltonFilho wrote:
    > I would like to do a program that have one string control and one
    > string indicator, any character that I type in the string control in
    > the same time it will be appear in another string (indicator). How can
    > help me?
    >
    > I would like to do a program that have one string control and one
    > string indicator, any character that I type in the string control in
    > the same time it will be appear in another string (indicator). How can
    > help me?
    >
    Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/

  • Image display (Image don't appear the first time?)

    Applet at: http://saladinsite.tripod.com/Project/MiniProject.htm
    Code at and Bottom: http://saladinsite.tripod.com/Project/MiniProject.java
    Hi,
    I just created my very first applet. It's a simple quiz. I'll agree it's very unefficient.. but heh.. good for first try.
    There is a lil problem I am having. Sometimes when I load the applet, the background image don't show up. Sometimes, the happy/cry images (corresponding to right/wrong answer) don't show up (check the applet to see what I am talkin about) It only happens once tho. It's strange. Take a look at the applet, you will see. Btw: It's not the downloadin of image that cuzes the bug. Same problem happens in appletviewer. If it doesn't appear the first time, the next time you go back to it, it will appear.
    My teacher has also struggled with this problem but failed. Hope you guys can help me out.
    Thanks,
    Gant
    LONG Code again:
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
         public class MiniProject extends Applet implements Runnable {
              boolean flag=true;
              Image happy,cry,cartoon,test,buffer;
              Graphics bufferg;
              Thread main;
                   int x = 50;
                   int y = 50;
                   int a,b,c;
                   String str;
                   double score =0;
                   double correct = 0.0;
                   TextField txt, percent, invis;
                   String boxName[] = {"Addition (+)", "Substraction (-)","Multiplication (x)","Division (�)"};
                   CheckboxGroup checkGr = new CheckboxGroup();
                   AudioClip RedMove, Applause, BadMove, NewGame, sad;
              public void init() {
                   URL codeBase = getCodeBase();
                   happy = getImage(getCodeBase(),"happy.gif");
                   cry = getImage(getCodeBase(),"cry.gif");
                   cartoon = getImage(getCodeBase(),"cartoon.gif");
                   test = getImage(getCodeBase(),"test.gif");
                   RedMove = getAudioClip(codeBase, "RedMove.au");
                   Applause = getAudioClip(codeBase, "Applause.au");
                   BadMove = getAudioClip(codeBase, "BadMove.au");
                   NewGame = getAudioClip(codeBase, "NewGame.au");
                   sad = getAudioClip(codeBase, "sad.au");
                   invis = new TextField("",1) ;
                   invis.setVisible(false);
                   setBackground(Color.white);
                   setLayout(new BorderLayout() );
                   Panel p1 = new Panel();
                   add("South",p1);
                   p1.setBackground(Color.gray);
                   p1.add(new Button("Start") );
                   p1.add(new Button("Exit") );
                   p1.add(new Button("Help") );
                   p1.add(new Button("Credits") );
                             p1.add(new Label(" Score in (%):") );
                             percent = new TextField("",3);
                             percent.setEditable(false);
                             percent.setBackground(Color.gray);
                             p1.add(percent);
                   Panel p2 = new Panel();
                   p2.setBackground(Color.gray);
                   add("North",p2);
                   p2.add(new Label("Quiz with: ") );
              Panel p3 = new Panel();
              p3.setLayout(new FlowLayout(FlowLayout.CENTER, 25, 75));
                   txt = new TextField("", 3);
                   txt.setText("");
    txt.setEditable(false);
                   Font f = new Font("Helvetica", Font.BOLD, 36);
                   txt.setFont(f);
              p3.add(txt);
              add("East",p3);
              p3.setBackground(Color.white);
              for (int i=0; i<boxName.length; i++)
                   p2.add(new Checkbox(boxName, checkGr, false) );
              buffer=createImage(size().width,size().height);
              bufferg=buffer.getGraphics();
              startM();
         } //end init
              public void run(){
              while(main!=null){
                   try {
                   main.sleep(50);
                   catch(Exception e){}
         public void stop(){
              if(main!=null){main.stop();}
         public void startM() {
                        bufferg.setColor(Color.white);
                        bufferg.fillRect(0,0,400,400);
                        bufferg.setColor(Color.black);
                             Font f = new Font("Helvetica", Font.PLAIN, 14);
                             bufferg.setFont(f);
                             bufferg.drawImage(cartoon,0,50,this);
                        bufferg.drawString("^ Click on a Quiz above to begin!", 25,47);
                        txt.setEditable(false);
                        txt.setBackground(Color.white);
                        txt.setText("");
                        percent.setText("");
                             Font f4 = new Font("Helvetica", Font.BOLD, 28);
                             bufferg.setFont(f4);
                             bufferg.setColor(Color.red);
                             bufferg.drawString("WELCOME!",15,90);
                             bufferg.setColor(Color.black);
                             bufferg.drawString("to the Interactive",55, 155);
                             bufferg.drawString("Grade 9 Math Quiz",85, 200);
                             Font f5 = new Font("Helvetica", Font.PLAIN, 18);
                             bufferg.setFont(f5);
                             bufferg.drawString("Designed by: Wasay R.",175,360);
         public void clearM() {
              bufferg.fillRect(0,0,450,400);
         public boolean action(Event evt, Object obj) {
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Credits") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"credits.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Help") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"help.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Exit") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"end.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Checkbox && flag) {
                   flag=false;
                   NewGame.play();
                   txt.setEditable(true);
                   Color c = new Color(204,204,204);
                   txt.setBackground(c);
                   bufferg.setColor(Color.white);
                   clearM();
                   handleCheckbox(evt);
                   if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Start") ) {
                             flag=true;
                             y=50;
                             x=50;
                             score=0;
                             correct=0;
                             startM();
              if (evt.target==txt && score<10) {
                   String find = (invis.getText() ).substring(0,1) ;
                   if (find.equals("+")) {
                             handle2();
                             paint( Create(0) );
                             txt.setText("");
                             score++;
                   else if (find.equals("-") ) {
                        handle2();
                        paint( Create(1) );
                        txt.setText("");
                        score++;
                   else if (find.equals("x") ) {
                        handle2();
                        paint( Create(2) );
                        txt.setText("");
                        score++;
                   else if (find.equals("/") ) {
                        handle2();
                        paint( Create(3) );
                        txt.setText("");
                        score++;
              if (score==10) {
                   if (correct>=5 && !(evt.target instanceof Checkbox) )
                        Applause.play();
                   else if (correct<5 && !(evt.target instanceof Checkbox) )
                        sad.play();
                   txt.setText("");
                   txt.setBackground(Color.white);
                   txt.setEditable(false);
                        bufferg.setColor(Color.white);
                        bufferg.fillRect(100,100,350,75);
                        bufferg.setColor(Color.black);
                        bufferg.drawRect(65,110,225,75);
                             Font f = new Font("Helvetica", Font.BOLD, 28);
                             bufferg.setFont(f);
                             bufferg.setColor(Color.red);
                             bufferg.drawString("Quiz Complete!", 75,143);
                             Font f2 = new Font("Helvetica", Font.PLAIN, 18);
                             bufferg.setFont(f2);
                             bufferg.setColor(Color.black);
                             bufferg.drawString( ("Your Score: " + String.valueOf( Math.round( (correct/score*100)/0.01 )*0.01 )+"%"),101,170);
                             Font f3 = new Font("Helvetica", Font.PLAIN, 14);
                             bufferg.setFont(f3);
                             bufferg.drawString("Click Start and select a Quiz at the Top to begin",19,240);
                             bufferg.drawRect(10,227,326,0);
                             bufferg.drawRect(336,38,0,189);
                             bufferg.drawRect(10,243,326,0);
                             bufferg.drawRect(10,243,0,85);
              percent.setText( String.valueOf( Math.round( (correct/score*100)/0.01 )*0.01 ) );
              repaint();
              return true;
                   private void handle2() {
                        str = invis.getText();
                             Font f = new Font("Helvetica", Font.BOLD, 14);
                             bufferg.setFont(f);
                             bufferg.drawString("Correct:",15,70);
                             bufferg.drawString("Incorrect:",4,345);
                        if ( (str.substring(0,1) ).equals("+") )
                             if (Integer.parseInt(txt.getText() )==(a+b) ) {
                                       invis.setText("+correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++;
                                       RedMove.play();}
                             else {
                                       invis.setText("+wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("-") )
                             if (Integer.parseInt(txt.getText() )==(a-b) ) {
                                       invis.setText("-correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("-wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("x") )
                             if (Integer.parseInt(txt.getText() )==(a*c) ) {
                                       invis.setText("xcorrect");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("xwrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("/") )
                             if (Integer.parseInt(txt.getText() )==(a/c) ) {
                                       invis.setText("/correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("/wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
              public String Multi() {
                        a = ( (int) (Math.random()*100) )+10;
                        c = ( (int) (Math.random()*10) );
                   while(c==0 || c==1)
                        c = ( (int) (Math.random()*10) );
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(c);     
                   return (a1+" x "+a2+" = ");
                   public String Divi() {
                        a = 2*( (int) (100*Math.random() ) )+2;
                        c = 2*( (int) (10*Math.random() ) )+2;
                        while (a%c!=0)
                             c = 2*( (int) (10*Math.random() ) )+2;
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(c);     
                   return (a1+" � "+a2+" = ");
              public Graphics Create(int i) {
              repaint();
              Dimension d=size();
              bufferg.setColor(getBackground());
              bufferg.fillRect(100,100,350,75);
              bufferg.setColor(Color.yellow);
                   a = ( (int) (Math.random()*100) );
                   b = ( (int) (Math.random()*100) );
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(b);
                   Font f = new Font("Helvetica", Font.BOLD, 36);
                   bufferg.setFont(f);
                   bufferg.setColor(Color.black);
                   if (i==0)
                        bufferg.drawString(a1+" + "+a2+" = ", 145,150);
                   else if (i==1)
                        bufferg.drawString(a1+" - "+a2+" = ", 145,150);
                   else if (i==2)
                        bufferg.drawString( Multi() , 145,150);                    
                   else if (i==3)
                        bufferg.drawString( Divi() , 145,150);
                        return bufferg;
         private void handleCheckbox(Event evt) {
              Checkbox cb = (Checkbox)evt.target;
                   String str = cb.getLabel();
                   bufferg.drawImage(test,0,50,this);
                   if (str==boxName[0]) {
                        paint( Create(0) );
                        invis.setText("+");
                   else if (str==boxName[1]) {
                        paint( Create(1) );
                        invis.setText("-");
                   else if (str==boxName[2]) {
                        paint( Create(2) );
                        invis.setText("x");
                   else if (str==boxName[3]) {
                        paint( Create(3) );     
                        invis.setText("/");
         } //end handleCheckBox
         public void update(Graphics g){
              paint(g);
         public void paint(Graphics g) {
              g.drawImage(buffer,0,0,this);
    }//end class

    Its not easy to follow your code without the [ code] +[ /code] tags and your link may as well not be there, the code one. I would resolve this by reducing the overhead ie: stripping down the code as much as I could and then adding them back one by one. DIVIDE and CONQUER!!!
    1. Take out the audio data (I suspect this may be the key problem)
    2. Take out the Thread 'main' and have an actionListener attached to your answer field to handle the changes
    3. Take out java.net and your URLs
    4. use a MediaTracker and WaitForAll()
    5. Strip it down further - AS MUCH AS YOU CAN (you can easily reassemble it quickly again) and then look at the program flow
    6. Add more boolean logic to give you control over all your elements ie
    if(myAnswer==answer) smiley=true;
    else smiley = false;
    // or whatever, as I said I could only scan through your code as it is difficult to read in its present format.
    Finally: this is good work I like the smileys and the instant %'s, the general layout, good /intelligent use of random() to generate different Q's each time. It's a good application, just remember that applets can be unreliable and I think your basic problem is that you have too much data here.
    Strip it right down, focus on your logical flow and then put back the elements one-by-one

  • Can I programmatically control an xbox 360 console from a PC using a USB cable?

    I have an application that may require LabVIEW, some software normally associated with LabVIEW or both...
    I would like to be able to programmatically control an Xbox 360, via a PC, and through the use of a USB cable connecting both. I have setup a separate Xbox 360 console as a "dedicated server" for my gaming clan. I would like to be able to have the PC issue scripted commands according to a schedule, that will cause the console to power up, start the specific game (disk in the machine already), and then proceed through a number of Xbox 360 controller button actuations to cause the game to essentially be ready to play.
    If possible, I would like to find software that I could install on my PC (currently run with a Windows XP SP2 OS, but I have access to many versions of Windows and also Linux and soon, Solaris Unix).
    I have tried using various Infrared devices that connect to and are controlled by my PC, but none so far have allowed the infrared signals to work once the game is launched (apparently, only controller signals generated through a USB cable or through RF from a wireless Xbox 360 remote work once the game is launched - and that probably because the IR signals are meant to control the console as a media device).
    I would appreciate any direction that you 'all could offer. Thanks in advance!

    Thanks for your replies everyone, and thanks to NI for this great forum!
    The last solution appears to be pretty close to what I'd like to do. If I understand you Robert, I would attach a DAQ to my PC via USB and would control that device via software, then the DAQ connects to a digital output controlled relay (looks multiple wires, and screw-on connections) and then there would be separate wires connecting 'channels' (my term) from the relay to individual button wires inside of the gaming controller? The signals coming from the controller following this would therefore appear as normal.
    If this is correct, could you suggest any specific devices for this? I see that NI makes several USB DAQ's includng the USB-6501, 6008, and 6009. I also have seen many digital output controlled relays available from different vendors. I could use some assistance with the finer points for choosing the correct ones to purchase.
    In case it makes any difference although the controller has analog functions my requirements are for only the digital buttons only as I would simply be proceeding through the Console's menu (left, right, up, down, enter/select, etc.), launching the game, and then within the game continuing to choose among the game's menu items, ultimately according to a script. So, I don't see any need to be able to actuate either of the 'sticks' which are analog in nature.
    Thanks!

  • Fading in multiple images at different times

    Hi everyone, I'm pretty new to video editing and just picked up PE 7.  I'm creating a video for my friends and am trying to figure out if something is possible in PE 7.  Basically I have 4 images, one is a picture of myself by a lake (we'll call this image A), the other 3 are 'cut-out' images of friends (backgrounds of friend images are all white so videomerge is easy).  What I want is to take each of the 3 images of my friends and have them fade in next to me in image A.  I would like for them to fade in one-by-one until all 4 of us are on the screen at the same time.
    What I've done so far is dragged image A to create a new scene, then I dragged the first of my friends over image A and hit 'Yes' on the videomerge so that my friend appears over image A.  Then I went to go edit that first friend image and set it to fade in.  When I preview it works fine, that first friend fades into the picture.  Then I added the second friend over image A and set him to fade in as well.  When I preview it both friends fade in at the same time, which is not what I want.  My question is...how can I get the images of my friends to fade in over image A at different times (one after the other)?  Is there some kind of 'fade-in' time setting?  I can't seem to figure it out.  Appreciate any help!

    It sounds like you're on the right track, kaner.
    If you're not working in timeline mode, switch over from sceneline mode and this should be a cinch.
    Each piece you're laying down is going on another video track. If you scroll up on the timeline, you'll see each one.
    Controlling when they fade in is as simple as positioning the clips (and trimming their lenghts if necessary).

  • After backing up my phone to the new iphone 4S, voice control comes on every time I try to use siri?

    After backing up my phone to the new iphone 4S, voice control comes on every time I try to use siri? I have to newest itunes so what should I do? I completley can not use Siri

    Some advice from various locations on the web (use google).  Each works for some users, not all.  Give these a try.
    Try to deauthorize the computer then authorize it.
    select song or app. that's not authorized, itunes will ask for your password, enter password, click ok, and ok again. Done.
    I had the same problem when I switched from my laptop to a macbook. What I figured out was that I had purchased applications under two different email addresses. You can click on one of the applications that is not syncing and go to "File" then "Get Info" to find out what email address you used to purchase those applications. Hopefully this helps.
    Sometimes a reboot of either the computer or the iPhone or both fixes this, if you’ve authorized already.

  • When duplicating a field, even when the original field is locked, the duplicated fields appear at different positions on pages that are the same size. How do I make them uniform?

    I'm trying to put a hidden time stamp field on the bottom of all pages of a thousand page document, yet when I duplicate the field, the reproduced fields appear at different positions on different pages. Is there a way to make them all appear uniformly on each page. I've tried using the Lock function in the Properties menu before duplicating but to no avail. Please help.

    I go to Tools>Forms> Edit...Do you want to detect...No. Add New Field>Text Field. I lay out my field at the bottom of the page, adjust the Properties (Hidden but printable, read only, font, alignment), Lock the Properties. Then I right-click and hit Duplicate.

  • My iphone 4S doesn't show the volume controls when playing videos and the speakers don't sound. But if I plug in the earphones then I can hear fine and the volume controls appear on screen. Please someone help.

    After a week or so of installing IOS 7 now I having this problem, the speakers don't work for videos, music or apps sounds, but they work fine for using the speaker phone. It's definitely some software issue as the volume control appears when i plug in the earphones, but disappears when unplugging them, same happens with the volume buttons on the side, they don't work when trying to use the speakers, but the work when using the earphones. Please help if you have a workaround for this. I don't want to carry my earphones all the time to listen to videos and music.

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    Try the following to rule out a software problem
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack or other hardware problem.
    Apple Retail Store - Genius Bar
    If not under warranty Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price                  
    A third-party place like the following will replace the jack for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the jack yourself
    iPod Touch Repair – iFixit

  • Different time zones in the same calendar subscription

    Dear kind helpers,
    To state my problem as clear as possible, I need to be a bit long. Sorry for that.
    I registered to a calendar displaying the rugby schedule for the VI nations tournament:
    -> http://www.rbs6nations.com/tools/calendars/sixnations-fixtures-6n-all.ics
    from the official web site:
    -> http://www.rbs6nations.com/en/matchcentre/downloadable_fixture_list.php
    The only thing you need to know about this tournament is that it involves 6 teams (hence the name):
    - 2 on the continent, then at GMT+1 (France and Italy),
    - 4 on the British Isles (Englands, Walles, Scotland and Ireland), then at GMT+0
    I think all of these nations have the same summer / winter shifts.
    I'm on the continent, Central European Time for the time zone support feature on iCal (OS 10.9.1).
    I guess it's GMT+1 plus winter shift at the moment.
    I notice the same following problem on my iPod (iOs 5.1.1), sync through iCloud
    Here the problem : it seems all the games are in local times !
    For instance, a game in the Islands (Scotland, England, ...) appears at 5pm whereas I would like it to appear at 6pm (so the time is correctly displayed for British Isles, not for the continent) / a game on the continent (France or Italy) will appear at 5pm and I'm fine because it's right the correct time in my time zone. I've no idea how a game which takes place on the continent appears in the British Isles :-(
    So a few questions :
    - am I clear about the problem ?
    - is it a problem from iCal or from the subscription itself ?
    - in case it's iCal, is there a way to fix the trouble ?
    PS : I experienced the same problem with an other subscription a few years ago ; it was also for a european championship schedule across different time zones displayed in the same calendar. This one was discontinued.
    Thanks in advance.

    Hi,
    This is an issue with the subscription itself. The times for the events are set in 'floating' time and whatever time zone you use it iCal will show the event as being at that time local time (which obviously won't be right unless you are in the correct time zone).
    I could post a more technical explanation if you like.
    Best wishes
    John M

  • May i write data to a spreadsheet file at different times

    I'd like to write two sets of data at different times(not simutaniuosly)into the same spreadsheet file. I tried to re-open the spreadsheet file which i created when i wrote in the first set of data, to write in the second set of data. But it didn't work. I don't know what's wrong with my program. I have selected APPEND when I tried to write the second set of data in the old file.

    not nay errors appear.
    the following is a similar easy copy of the program. I don't want to post my original program because too many subroutines.
    Tanks a lot to Mikeporter
    Attachments:
    easier_copy_of_my_program.vi ‏28 KB
    gen3.txt ‏78 KB
    P4SG-1Z(MOB-FRE) ‏14 KB

  • Objects to show at different times on a slide not showing up

    Hi  Everyone,
    I hope this problem is minor and that I’m just missing a small step but here it goes…
    I’m using Captivate 4 and I’ve only been using it on one particular computer. I updated a captivate project that I’ve been working on since September and I’ve finished all the edits (added a picture, changed a few words) as requested by colleauges when all of a sudden, some objects that were suppose to show at different times on the slide were not showing up at all. The frustrating part is I actually finished the project! When I do a preview within the edit view, the objects appear as it should, however, when I publish it or do a preview on wepage, the objects are not appearing at all (ie a word at 10 sec, another at 20 sec). Anway, there were only 3 slides acting like this, all with objects are suppose to show up at different times on the slide (these were not the slides that I recently edited). My video works fine, my quiz works fine, and I’ve uploaded an initial version of my work on a Pathlore LMS with no problems (publish specs: flash 8, AS2).
    I have several other projects that are less complicated (ie no video, no objects showing at different times within the slide) and they are OK. I’ve checked on other computers and same problem.
    I tried deleting the slides, and redoing it again within the same project but still wont work I tried copying everthing on a new project with the same size with no luck.
    I tried making a 2 slide project with objects showing up at different times and it works.
    Is my project corrupted in some way? What are the possible culprits for this problem?
    I really hope I don’t have to start from scratch…
    Thanks in advance!

    Hi there
    While it's certainly possible that the project has somehow become corrupt, you might find that simply closing and restarting Captivate changes things.
    Have you tried that? I've seen it where bits and pieces are suddenly missing. After I restarted, things were just fine again.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • My Hotmail watcher has stopped working for the past week or so. I've uninstalled and reinstalled it several different times, but it did not help

    My Hotmail watcher has stopped working for the past week or so. I've uninstalled and reinstalled it several different times, but it did not help

    Hi,
    It appears that the developer has released a newer version of Hotmail Watcher. Version 2.13 located at https://sites.google.com/site/sonthakit/hotmailwatcher. You should try updating it to see if it works then.
    From https://addons.mozilla.org/en-us/firefox/addon/hotmail-watcher/<br>
    '''IMPORTANT -- I had changed my add-on to self-host. New version had been released at my site. Please install new version'''

  • Clock UI control and daylight saving time.

    Hi,
    We have a customer that has several sites around the world.
    In a VC-model I like to use the Clock UI control to display the times of the different sites.
    This can be done by setting the ‘time zone’ in the control properties.
    A long ago we have introduced ‘daylight saving time’.
    It seems that the clock control does not do anything with this ?
    How can I change the time zone when the model is running ?
    Can it be done by an expression and how ?
    There is also a problem of the country, some have DST, others don’t.
    See http://en.wikipedia.org/wiki/Daylight_saving_time_around_the_world
    Example:
    I have 2 clocks and the end-user lives in Amsterdam:
    Amsterdam, time zone = GMT + 1
    Santiago, time zone = GMT – 4
    During the winter in Amsterdam it is summer in Santiago and has ‘daylight saving’ so the time in Santiago should be GMT – 3 in stead of GMT -4.

    With the current version of VC / flash, it is not possible to display the correct time all the year 'round.
    If you only want to show the (user) current time then you can use this VC clock object.
    If you need to show clocks from different cities around the world, than its better NOT to use the VC clock.
    Because you can not define the country and city in the clock properties, that determine the use of DST, it will not always show the correct (default / DST) time.
    Solution:
    Add a HTLM-view to your model with a links to a web clock.
    Nice (free !) clocks can be found (and customized) on <a href="http://www.worldtimeserver.com/clocks/wtsclock001.aspx">worldtimeserver.com</a> or <a href="http://www.timeanddate.com/clocks/free.html">timeanddate.com</a> .
    Example:
    For the city Santiago (Chile) the URL =
    http://free.timeanddate.com/clock/ielrw91/n232/tluk/fn13/fs16/fc009/tt0/tw1/td2/th1/ts1/tb4

  • Can the central system and the sender system at different time zone?

    We have a control(i.e. central) system which is 6 hours ahead of the sender system.
    When processing step "analyse tables in sender system", we get short dumps immediately at  control , sender and receiver.
    On the sender, the short dump reads:
    Runtime Errors         CALL_FUNCTION_SEND_ERROR                       
    Date and Time          01/15/2011 16:09:05                                                                               
    Short text                                                           
         " " (I/Oerror)                                                                               
    What happened?                                                       
         "CPIC-CALL: 'ThCMSEND' : cmRc=18 thRc=0#Statistics not active "                                                                               
    An error occurred when executing a Remote Function Call.
    On  the central system the short dump reads:
    Runtime Errors         CALL_FUNCTION_REMOTE_ERROR
    Date and Time          15.01.2011 22:09:00
    Short text
         "Field symbol has not yet been assigned."
    On the receiver the short dump reads:
    Runtime Errors         GETWA_NOT_ASSIGNED                                         
    Date and Time          01/15/2011 22:09:00                                                                               
    Short text                                                                       
         Field symbol has not yet been assigned.                                                                               
    What happened?                                                                   
         Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLCNVTDMS_BW_FUNCTIONS_REM" had to be terminated  .
    We never get this error before on this step.  The only thing I can think of is that the sender and the central system
    are at different time zone.
    Please share your experience.
    Thanks!

    Hi,
    By looking at the runtime error , the reason of the dump should not be the timestamp diff .
    You can create an OSS ticket with SAP for further analysis.
    Also, there can be data consistency issues due to time diff .
    Cheers
    Sandeep

Maybe you are looking for

  • How to find a regular expression in a statement

    I have to find regex in a statement and return boolean true if it matches . regexpression : AR%SUPERUSER How to write in code? I have tried this String EXAMPLE_TEST = "This is my AR SUPERUSER string which I'm going to use for pattern matching."; Syst

  • Trackpad acting weird after using mouse.

    After an extended time using the mouse, my trackpad becomes, in a way, unresponsive. If I hover the cursor above links, edge of windows or applications in the dock, my cursor stays as the same arrow and the link won't underline and applications on th

  • .jar installer fails in console mode over missing X / variable DISPLAY

    Hi all, I tried to install the WebLogic Server in console mode according to the Installation Guide for Oracle WebLogic Server 12c Release 1, but couldn't get past an error. My system is a CentOS 6.4 with kernel 2.6.32-358.el6.i686 in a VMWare virtual

  • Excel files to n79

    Hi, When i want to copy excel files from my laptop to my phone via the nokia phone browser (copy, paste) I get the message "access denied" when pasting to one of the folders on my memory card. How can i solve this?

  • Drag and drop text to Pages doc without formatting

    Pages '06 allowed me to 'drag and drop' text from another application into a cell in a Pages table, without disturbing cell formatting. i.e. the text would lose all its own styles, and take on those set for the cell. This is just the same as using th