Drag-drop video into iphone not working

All my music and video all of a sudden disappeared off my iphone (the video podcast still were there though). I was updating and poking around, but I really don't think I delete them accidentally. I've always just dragged and dropped videos from the finder directly onto the iPhone via iTunes and never had problems before. Now after the mysterious missing music and video, I can't drag and drop any more. These are h.264 video files that have worked in the past. If I re-compress the videos in QT pro using Export>Movie to iPhone I can drag and drop. If I choose Export>movie to Quicktime Movie I can't (even though it's worked before and the settings fall within spec... h.264, etc ). ARRRG!
The only thing I haven't done yet is restore the iPhone. I was worried that my camera roll would disappear. Any thoughts? Help!

Copied from my previous post.
Photos in your iPhone's Camera Roll are included with your iPhone's backup, which is updated if needed as the first step during the sync process - if any of the data on your iPhone that is included with the backup has changed since the last sync. But you shouldn't depend on your iPhone's backup alone for these photos. These photos should be imported by an app on your computer as with any other digital camera.
If you use iPhoto on your Mac for photo storage, you can use iPhoto for the import. If not, you can use the Image Capture app located in your Applications folder.
Assuming you are syncing your iPhone with iTunes for other content, your iPhone's backup should be updated as the first step during the sync process if any of the data included with your iPhone's backup has changed since the last sync - which is usually 100% of the time.
If you restore your iPhone from your iPhone's backup, any photos that were in your iPhone's Camera Roll should be restored with your iPhone's backup, but as already provided, you shouldn't depend on your iPhone's backup alone for these photos. Photos in your iPhone's Camera Roll should be imported by an application on your computer as with any other digital camera. If you use iPhoto for photo storage on your Mac, you can use iPhoto for this. If you don't use iPhoto, you can use the Image Capture application for this.
I do download the photos to iTunes, so there is that backup as well.
You don't download any photos to iTunes - not from your iPhone or from anywhere else for that matter. iTunes does not handle the import of photos from the iPhone's Camera Roll or from any digital camera. This must be done with a separate application such as with iPhoto or the Image Capture application on a Mac.
You can transfer photos from your computer to your iPhone via the iTunes sync process - selected under the Photos tab for your iPhone sync preferences, but iTunes does not have anything to do with photos in your iPhone's Camera Roll except for including these photos along with other data for your iPhone's backup.

Similar Messages

  • Drag & Drop of a file not working in Ubuntu & other linux

    Hi All,
    I am working on a project,in which it has the requirement of dragging the files
    from a JList present inside a JFrame to the desktop.
    First I tried to get a solution using dnd API but could not. Then i googled and i got an application which is
    working perfectly in both Windows and MAC Operating systems, after I made few minor changes to suit my requirements.
    Below is the URL of that application:
    http://stackoverflow.com/questions/1204580/swing-application-drag-drop-to-the-desktop-folder
    The problem is the same application when I executed on Ubuntu, its not working at all. I tried all available options but could not trace out the exact reason.
    Can anybody help me to overcome this issue?
    Thanks in advance

    Hi,
    With the information you provided and through some information found on google i coded an application. This application is able to do the drag and drop of an item from the Desktop to Java application on Linux Platform, but i am unble to do the viceversa by this application.
    I am including the application and the URL of the information i got.
    [URL Of Information Found|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4899516]
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.Transferable;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import java.awt.dnd.DropTarget;
    import java.awt.dnd.DropTargetDragEvent;
    import java.awt.dnd.DropTargetDropEvent;
    import java.awt.dnd.DropTargetEvent;
    import java.awt.dnd.DropTargetListener;
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.DefaultListModel;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.JScrollPane;
    import javax.swing.SwingUtilities;
    import javax.swing.TransferHandler;
    import javax.swing.WindowConstants;
    public class DnDFrame extends JFrame implements DropTargetListener {
         private DefaultListModel listModel = new DefaultListModel();
         private DropTarget dropTarget;
         private JLabel jLabel1;
         private JScrollPane jScrollPane1;
         private JList list;
         List<File> files;
         /** Creates new form DnDFrame */
         public DnDFrame() {
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              initComponents();
              dropTarget = new DropTarget(list, this);
              list.setModel(listModel);
              list.setDragEnabled(true);
              list.setTransferHandler(new FileTransferHandler());
         @SuppressWarnings("unchecked")
         private void initComponents() {
              GridBagConstraints gridBagConstraints;
              jLabel1 = new JLabel();
              jScrollPane1 = new JScrollPane();
              list = new JList();
              setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
              getContentPane().setLayout(new GridBagLayout());
              jLabel1.setText("Files:");
              gridBagConstraints = new GridBagConstraints();
              gridBagConstraints.gridwidth = GridBagConstraints.REMAINDER;
              gridBagConstraints.anchor = GridBagConstraints.WEST;
              getContentPane().add(jLabel1, gridBagConstraints);
              jScrollPane1.setViewportView(list);
              gridBagConstraints = new GridBagConstraints();
              gridBagConstraints.gridwidth = GridBagConstraints.REMAINDER;
              gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;
              getContentPane().add(jScrollPane1, gridBagConstraints);
              pack();
         public void dragEnter(DropTargetDragEvent arg0) {
         public void dragOver(DropTargetDragEvent arg0) {
         public void dropActionChanged(DropTargetDragEvent arg0) {
         public void dragExit(DropTargetEvent arg0) {
         public void drop(DropTargetDropEvent evt) {
              System.out.println(evt);
              int action = evt.getDropAction();
              evt.acceptDrop(action);
              try {
                   Transferable data = evt.getTransferable();
                   DataFlavor uriListFlavor = null;
                   try {
                        uriListFlavor = new DataFlavor("text/uri-list;class=java.lang.String");
                   } catch (ClassNotFoundException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                   System.out.println("data.isDataFlavorSupported(DataFlavor.javaFileListFlavor: " +
                             data.isDataFlavorSupported(DataFlavor.javaFileListFlavor) );
                   if (data.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) {
                        files = (List<File>) data.getTransferData(DataFlavor.javaFileListFlavor);
                        for (File file : files) {
                             listModel.addElement(file);
                   }else if (data.isDataFlavorSupported(uriListFlavor)) {
                        String data1 = (String)data.getTransferData(uriListFlavor);
                        files = (List<File>) textURIListToFileList(data1);
                        for (File file : files) {
                             listModel.addElement(file);
                        System.out.println(textURIListToFileList(data1));
              } catch (UnsupportedFlavorException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              } finally {
                   evt.dropComplete(true);
         private static java.util.List textURIListToFileList(String data) {
              java.util.List list = new java.util.ArrayList(1);
              for (java.util.StringTokenizer st = new java.util.StringTokenizer(data,"\r\n");
              st.hasMoreTokens();) {
                   String s = st.nextToken();
                   if (s.startsWith("#")) {
                        continue;
                   try {
                        java.net.URI uri = new java.net.URI(s);
                        java.io.File file = new java.io.File(uri);
                        list.add(file);
                   } catch (java.net.URISyntaxException e) {
                   } catch (IllegalArgumentException e) {
              return list;
         private class FileTransferHandler extends TransferHandler {
              @Override
              protected Transferable createTransferable(JComponent c) {
                   JList list = (JList) c;
                   List<File> files = new ArrayList<File>();
                   for (Object obj: list.getSelectedValues()) {
                        files.add((File)obj);
                   return new FileTransferable(files);
              @Override
              public int getSourceActions(JComponent c) {
                   return COPY;
         static {
              try {
                   uriListFlavor = new
                   DataFlavor("text/uri-list;class=java.lang.String");
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
         private class FileTransferable implements Transferable {
              private List<File> files;
              public FileTransferable(List<File> files) {
                   this.files = files;
              public DataFlavor[] getTransferDataFlavors() {
                   return new DataFlavor[]{DataFlavor.javaFileListFlavor,uriListFlavor};
              public boolean isDataFlavorSupported(DataFlavor flavor) {
                   if(flavor.equals(DataFlavor.javaFileListFlavor) || flavor.equals(uriListFlavor))
                        return true;
                   else
                        return false;
              public Object getTransferData(DataFlavor flavor) throws
              UnsupportedFlavorException, java.io.IOException {
                      if (isDataFlavorSupported(flavor) && flavor.equals(DataFlavor.javaFileListFlavor)) {
                        return files;
                   }else if (isDataFlavorSupported(flavor) && flavor.equals(uriListFlavor)) {
                        java.io.File file = new java.io.File("file.txt");
                        String data = file.toURI() + "\r\n";
                        return data;
                   }else {
                        throw new UnsupportedFlavorException(flavor);
         private static DataFlavor uriListFlavor;
         static {
              try {
                   uriListFlavor = new
                   DataFlavor("text/uri-list;class=java.lang.String");
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
         public static void dumpProperty(String name) {
              System.out.println(name + " \t" + System.getProperty(name) );
         public static void main(String[] args) {
              String[] props = {
                        "java.version",
                        "java.vm.version",
                        "java.vendor",
                        "os.name",
              "os.version"};
              for (String prop : props) {
                   dumpProperty(prop);
              Runnable r = new Runnable() {
                   public void run() {
                        DnDFrame f = new DnDFrame();
                        f.setVisible(true);
              SwingUtilities.invokeLater(r);
    }Please Suggest me in this.

  • Drag & drop item within Tree not working

    Hi,
    I want to be able to drag & drop items within a tree but
    items cannot move accross branches
    It can only be moved within its branch.
    For this I have a condition in dragDrop(event) handler.
    When i drag item it does not move accross branches which is
    intended but when i drop within its branch
    on a different location,
    the item does
    not get dropped
    Though i have dragMoveEnabled set to true.
    my code looks like this:
    private function onDragDrop(event:DragEvent):void {
    var dropTarget:Tree = Tree(event.currentTarget);
    var node:XML = myTree.selectedItem as XML;
    var p:*;
    p = node.parent();
    if(node.parent().@label != "sameBranch") {
    return;
    } else {
    // drop target.
    Do i need to do anything else...
    Please advice.
    Thanks
    Lucky

    topping up, still did not find a way to do...
    but i have handled all tree events like dragEnter and
    dragDrop as described in the flex doc.
    Has anyone faced a similar issue...

  • Importing home video into iMovie not working

    When I load my home video dvds they play with DVD Player but I want to import it into iMovie. When opening iMovie I select File/Import/Movie, select the DVD on the desktop and click on import. I then get this message: Nothing to Import... no importable movies were found...
    These home videos were burned on a PC with Roxio over the last several years. Unfortunately our home was broken into, computers stolen and these dvds are my only back up. Now trying to figure out how to save them to my new iMac and do some more work with them. Do I need to purchase Quick Time Pro to import to iMovie?

    Hi there, I have a question that maybe you can point me in the right direction. I was reading this post and you say to convert over to a DV. Is this done in imovie? I too am trying to import home movies into imovie so I can edit them. Any suggestions?
    Thanks,

  • Video on iphone not working

    When I try to use the video it won't record.  I switch from camera (which works) to video and the red button comes up.  When i touch it the screen freezes and I have to go right out of camera to get it to do anything.  Its a new camera so maybe there is something I did that messed it up?  It was working.

    Scott - I posted the same issue a moment ago - in regard to watched TV episodes. I think this is a video only issue - as I am not seeing the same issue on Audio podcasts. Is that your experience too - i.e. only Video podcasts are affected not audio podcasts?

  • Used to convert all my videos into iPhone mp4 format using Any Video Converter - then add it to my iPhone 3GS. But last few days, I cant add video files to iTunes. and the iTunes doesnt even specify the reason except for that "files are not supported"

    Everyting was perfect earlier. Used to convert all my videos into iPhone mp4 format using Any Video Converter - then add it to my iPhone 3GS. But last few days, I cant add video files to iTunes. and the iTunes doesnt even specify the reason except for that "files are not supported"
    Everything is fine.
    -They are the right format
    -Quicktime is updated
    -I have tried simply dragging them into the 'movie' library
    -I have tried going to file<add file to library
    Nothing works, has anyone else had this problem and found a way around it?
    Any and all help appreciated.

    In addition to Mike's suggestions,  you only have 4GB of RAM and Mavericks does use more RAM than other versions. You may also want to look at the apps that startup on login and the possiblity of upgrading RAM.

  • I recently attempted to save my Notes in Macmail by dragging and dropping them into the Notes folder. On my most recent sync all Notes were deleted. Is there a way to undo this?

    I recently attempted to save my Notes in Macmail by dragging and dropping them into the Notes folder. On my most recent sync all Notes were deleted. Is there a way to undo this?

    Garret,
    is your movie in your backup folder a Quicktime movie? Then probably only have the Quicktime wrapper in your backup folder, but not the referenced media in the file fork of the movie. If you see the full quality movie in iPhoto in QuickTime player, don't drag it from the browser to the Desktop, but use "File > Reveal in Finder > Original File" to show the movie in your iPhoto Library. Select the Movie when it is revealed and ctrl-click it to open it in Quicktime Player.
    Export it from Quicktime Player with "Export to" and share it to iTunes. This way it will be converted to a .mp4 movie that embeds the missing resources.
    You can drag the converted movie from iTunes to the Desktop or share it using to Media Browser to other applications.
    Regards
    Léonie

  • Installed Premiere Pro CS4 but video display does not work?

    I just got my copy of CS$. After installing Premiere I found two things that seem very wrong:
    1) video display does not work, not even the little playback viewer next to improted film clips located on the project / sequence window. Audio works fine.
    2) the UI is way too slow for my big beefy system.
    My pc is a dual boot Vista-32 and XP system with 4GB of memory installed and nvidia geforce 280 graphics board with plenty of GPU power. The CS4 is installed on the Vista-32 partition. My windows XP partition on the same PC with Premiere CS2 works great and real fast.
    Any ideas how to solve this CS4 install issue?
    Ron

    I would like to thank Dan, Hunt, and Haram:
    The problem is now very clear to me. The problem only shows up with video footage imported into PP CS4 encoded with "MS Video 1" codec. So this seems to be a bug. The codec is very clearly called out and supported within various menues but video with this codec just will not play in any monitor or preview window. In addition the entire product looks horrible with respect to performance while PP CS4 trys its best to play the video. Audio will start playing after about 30 seconds. And once in awhile part of video shows up at the wrong magnification before blanking out again.
    My suggestion to the Adobe team: fix the bug and add some sample footage to the next release so new installations can test their systems with known footage.
    My PC is brand new with the following "beefy" components:
    Motherboard
    nForce 790i SLI FTW
    Features:
    3x PCI Express x16 graphics support
    PCI Express 2.0
    NVIDIA SLI-Ready (requires multiple NVIDIA GeForce GPUs)
    DDR3-2000 SLI-Ready memory w/ ERP 2.0 (requires select third party system memory)
    Overclocking tools
    NVIDIA MediaSheild w/ 9 SATA 3 Gb/sec ports
    ESA Certified
    NVIDIA DualNet and FirstPacket Ethernet technology
    Registered
    CPU: Intel Core 2 Quad Q9550
    S-Spec: SLAWQ
    Ver: E36105-001
    Product Code: BX80569Q9550
    Made in Malaysia
    Pack Date: 09/04/08
    Features:
    Freq.: 2.83 GHz
    L2 Cache: 12 MHz Cache
    FSB: 1333 MHz (MT/s)
    Core: 45nm
    Code named: Yorkfield
    Power:95W
    Socket: LGA775
    Cooling: Liquid Cooled
    NVIDIAGeForce GTX 280 SC graphics card
    Features:
    1 GB of onboard memory
    Full Microsoft DirectX 10
    NVIDIA 2-way and 3-way SLI Ready
    NVIDIA PureVideo HD technology
    NVIDIA PhysX Ready
    NVIDI CUDA technology
    PCI Express 2.0 support
    Dual-link HDCP
    OpenGL 2.1 Capaple
    Output: DVI (2 dual-link), HDTV
    Western Digital
    2 WD VelociRaptor 300 GB SATA Hard Drives configured as Raid 0
    Features:
    10,000 RPM, 3 Gb/sec transfer rate
    RAM Memory , Corsair 4 GB (2 x 2 GB) 1333 MHz DDR3
    p/n: TW3X4G1333C9DHX G
    product: CM3X2048-1333C9DHX
    Features:
    XMS3 DHX Dual-Path 'heat xchange'
    2048 x 2 MB
    1333 MHz
    Latency 9-9-9-24-2T
    1.6V ver3.2

  • 2nd video card does not work

    I have a spare Mac Pro here so I decided to remove the video card and put it in the one I'm using. Both machines were purchased in '09 and use the same video card (ATI Radeon HD 2600). The two monitors I have hooked into the original video card work fine but the monitors I hooked into the newly placed video card are not working. Under the About This Mac specs >> PCI cards it shows up and says driver is installed. Is there anything special you need to do to get a second video card to work?
    Thanks.

    I tried the SMC reset. I removed the card and reseated it. I'm seating it in slot 2 because that's the only other one that is x16. The other slots 3-4 are x4. Still nothing is showing up. When I go to System Preferences >> Displays >> Detect Dispalys nothing happens. The two displays plugged into the original video card work fine but the newly installed on does not show up. Here is what the Mac Info is detecting. Maybe this makes sense to someone. Not sure what MSI is referring to and the second video card is reading as "display" instead of "ATI Radeon HD 2600". Link speed on the second card is half that of the original.
    About This Mac >> More Info >> PCI Cards >> Slot-1
    ATI Radeon HD 2600:
      Name:    ATY,Lamna
      Type:    Display Controller
      Driver Installed:    Yes
      MSI:    Yes
      Bus:    PCI
      Slot:    Slot-1
      Vendor ID:    0x1002
      Device ID:    0x9588
      Subsystem Vendor ID:    0x106b
      Subsystem ID:    0x00a6
      Revision ID:    0x0000
      Link Width:    x16
      Link Speed:    5.0 GT/s
    About This Mac >> More Info >> PCI Cards >> Slot-2
    display:
      Type:    VGA-Compatible Controller
      Driver Installed:    Yes
      MSI:    No
      Bus:    PCI
      Slot:    Slot-2
      Vendor ID:    0x10de
      Device ID:    0x0393
      Subsystem Vendor ID:    0x0000
      Subsystem ID:    0x0400
      Revision ID:    0x00a1
      Link Width:    x16
      Link Speed:    2.5 GT/s

  • My video recording sounds not working but other sounds are working fine, I've tried clearing the little mic thing near my earphone hole and had no success can someone please help me out?

    hhi guys
    my video recording sounds not working at all but it's working for other things such as music. I've tried to clear my sound thing near the earphone hole but had no success can someone please help me out?

    Had an Iphone 4 for about 3 months now. This happened to the first one I had and they ended up having to replace it at the apple store just a couple weeks ago 6/2. It happened again last night to my new one. This time i was able to correct it by going to itunes, backing up the phone to icloud, and then restoring the software. Mine did not work with voice memo, but did work with headphones plugged in, and would also work on speaker. I could hear callers but they couldn't hear me. I had purchased a new case (lifeproof case at $79.99) because it comes with plugs that cover the headphone jack, and the charging port, and is also waterproof. I heard that the root cause is due to lint, dirt, etc getting inside the headphone jack. Well, must be something else. It's a 10 days old phone, and has been in this overpriced case the whole time, and I have not used the headphones. I hope this doesn't keep happening.

  • My Video chat is not working with messages.

    When someone tries to send me an invite for a video chat the green light shows up but I do not receive and invitation window to accept it.
    I am using an aim account on messages and my server settings are api.oscar.aol.com, port 443, and use SSL is checked.
    In connection doctor is says my router type is port restricted and that "This computer's network setup includes one or more devices that are not fully compatible with audio and video chatting. I am not sure if this is the reason my video chat is not working.
    If anyone can help me please let me know.

    Hi,
    Most routers can be accessed via  Web Browser.
    The IP shown in System Preferences > Network > Advanced Button > TCP/IP tab in the "Router IP" box is generally the one to use.
    You also tend to need a User ID and Password.
    Apple Base Stations are different in that they have an App in the Utilities folder that accesses the set up screens.
    Your router can have different methods of opening the ports.
    Port Forwarding
    This tends to be the oldest of the methods.
    Essentially you point a port to an IP (computer) to allow it.
    A collection of ports may need to be entered one by one.
    Once set up, only that computer can use those ports.
    Port Triggering
    This cuts down the number of ports set to be Open as it involves "listening" ports that then open further ports
    iChat/Messages needs some ports to be open all the time and you set these a bit like Port Forwarding but with listing the IP to send the data to.
    The A/V side can have a listening port (port 5678 for the Visible part of the Invite)
    The advantage is that multiple computers can use the same ports.
    DMZ (Demilitarised Zone)
    This is an ON or Off setting (Enable/Disable)
    It opens all the port (65535 of them) to one IP (i.e only one computer can use this.)
    It is sort of like Port Forwarding Extreme
    UPnP (Universal Plug 'n' Play)
    A setting that allows the App to tell the router which ports to open.
    This means the router can carry on doing DHCP and multiple computer can use the ports involved.
    Where these setting are varies at least as much as there are manufacturers.
    This is  Linksys Port Forwarding (the arrows above the pic show the Others  (it does not show DMZ)
    7:47 PM      Thursday; September 27, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and and iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Drag & Drop Text into place holder while Matching  style. Possible?

    Is it possible to drag text into a placeholder text box and have the dragged text assume the style of the placeholder text? I know that I can "paste and match style" which I use constantly but I am trying to build a template for other people to use and would love for them to simply be able to drag & drop text into a template. It seems like this would be the default behavior for a template but it does not seem to be.
    Am I missing something obvious?
    -joey
    G5 Quad   Mac OS X (10.4.8)  

    Eric Brooks wrote:
    I either have to select, copy, and then paste matching formatting, or drag, drop and then reformat the text from the styles. Is there any way I can drag and drop so that the text being dropped picks up the formatting of the place holder I'm dropping it into? It seems to me that this is what a placeholder should be for.
    Am I missing something?
    Perhaps the fact that the definition of placeholder is not the same for you and for the Pages designers
    Seriously, I think that you hit a design flaw. Here we are end users trying to help end users. We are unable to change the program behavior.
    _Go to "Provide Pages Feedback" in the "Pages" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'09
    Yvan KOENIG (from FRANCE jeudi 19 juin 2008 21:23:23)

  • HT203075 im unable to sync music apps videos into iphone 6 whereas im able sync into my ipod touch 4G.When im trying to sync into my iphone 6 im getting a dialogue box asking me to authorize....Im unable to sync even after authorizing.

    im unable to sync music apps videos into iphone 6 whereas im able sync into my ipod touch 4G.When im trying to sync into my iphone 6 im getting a dialogue box asking me to authorize....Im unable to sync even after authorizing it.Dialogue box appears again and again...

    I read your entire message, and my mom's iPhone 5 does this exact same thing. When the idiot at the AT&T store transferred her data (well, most of it) to her new phone, he DID NOT use her latest iCloud backup like he should have, but used some features in "Bump" to move things across. So, in my opinion, it's not worth the hassle of restoring it as a new device as Tim suggests. That's just the easy answer. Here's something odd about hers. It seems to do this, when she's using her bluetooth earpiece (a Jawbone Icon), but not when she's got bluetooth disabled on the iPhone 5 and holding down the "Home" button to activate Siri. If she uses her Jawbone bluetooth earpiece to activate Siri, the answer that Siri presents on the phone's screen will only stay on for about five seconds, then dim, then go blank -- and she has to "swipe to unlock" and, of course, the Siri information is gone. Not so if she uses the Home key to activate Siri.

  • Unable to Drag & Drop email into Smart Mail Folders

    With Tiger, one could create "Mail Folders" and Drag & Drop emails into them. How is this possible with Leopard? I create the Folders and Sub-sets of Folders but I cannot archive my emails by dragging and Dropping. Anyone have a solution?
    Thanks
    charlie

    The title of your question mentions "Smart Mail" folders.
    The text of the question mentions "Mail Folders".
    Drag and drop only works with the regular "Mail Folders". If you try to drag a message into a Smart Mailbox it will refuse to go there because the message doesn't qualify.
    "Smart Mail Folders" are supposed to be set up to automatically alias an email in your inbox that has specific qualities, like, The sender is a member of a group in your addressbook, the subject contains a certain word, or other trigger (That's what makes them smart).
    Depending on what you are trying to do, you may do better with creating regular "Mail Folders" so that you can manually sort important emails as you wish without having to build the Smart rule.

  • I am possessing apple iphone4. In my phone while watching video, audio is not working. Volume level is fuul

    I Am holding iphone 4.7.1.2. though my volume is full, while on video audio is not working.

    Hi klgksharma,
    Welcome to the Apple Support Communities!
    I understand that you are not hearing sound from the speaker of your iPhone while watching video. In this situation, I would recommend working through the steps in the attached article to troubleshoot. 
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker - Apple Support
    Best regards,
    Joe

Maybe you are looking for

  • Recently upgraded to 7.0.1 and twice now have had warning that Firefox using excess memory.

    Windows XP with 2Gb Ram

  • Commissions

    Dear experts, we have a legal requirement to process the payment of Intra-company commissions with a debiting process instead of a crediting process (as we are using up to now). Currently we are collecting the commission values on Rebate Agreements w

  • Use of field - Transaction Type in F.01

    Dear All, Can anyone explain the use of field Transaction Type in Dynamic Selection in transaction code F.01. If I have understood correctly, these are related to fixed assets. If I select any transaction type, say for instance 120, which is related

  • HR Smartform with logo

    Dear friends. I am having a one problem with HR smartform application. client using standard HR Paysleep aplication developed in PE51, and use this (pc00_m40_clstr) transaction to run 1. now client demands to have logo in the application. it is not p

  • Can't find the download for Isync

    I am unable to find the download for Isync. I found Isync lite. Does anyone have the link they could send me? It would be greatly appreciated.