I can't get photos sorted in order, please help

Hi,
As the title says when I sync my photos to my iphone (and ipad) they are not in the same order as on my Mac. I've done a bit of research and I've found out that the iDevices sort photos by date rather than by name if you sync from a folder. However, I've also seen that the iDevices should mirror the way they appear in iphoto if you sync from this. Well I created all new folders in iphoto on my mac and synced with that but the photos are still out of order. Is there any way I can get them in order?
Cheers.

Try removing the Adobe DLM from your extensions in firefox. It will ask you to restart firefox. After restarting the pdf files should show in your browser as usual. This worked for me.

Similar Messages

  • I down loaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you

    I downloaded about 100 cds to my library and I can no longer view the downloaded artwork it's shows a black picture or blank. How can I get the artwork back? Please help! Thank you.

    Hi- apparently I also had a similar moment of madness and thought that 'freeride games' would be fun. Well, so much for that! It added a ton of things to my tool bar, I would like to uninstall it, any suggestions for this one?
    thanks :)

  • After resetting my Airport Extreme, I can't get it to work! Please help!

    Hey everyone!
    I have an airport extreme base station (wireless n-gigabit ethernet) and awhile ago it stopped working on me. I simply reset my aebs and whenever I open airport utility and try and configure my aebs, it tells me I have an error and can't connect to the aebs. I have comcast internet service and my aebs is connected to my router. It's been working successfully for about a couple months and now it's stopped working. : (
    I've tried this both in manual setup and the regular setup. I've gone through the trouble of doing a hard reset (pressing the reset button until it flashes amber), I've unplugged the power while holding the reset button, connecting my laptop with the aebs via ethernet, making sure everything is updated (and it is), resetting the router, and even reinstalled my airport utility disk.
    Please help! Any suggestions would be greatly appreciated!

    I also tried setting up my aebs on my neighbor's internet and it worked like a charm! Setting up aebs was as easy as when it first worked. Now if only I can get it to work on my internet...

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Can't get on internet.. PLEASE HELP!!

     I thought I was computer savvy and told a friend at work that has an issue with her internet that I could fix it. I am having more trouble than I thought. She told me it was a Windows 7 and it is a Dell Windows XP Professional service pack 3. I am not
    very familiar with them. 
    She told me that she had uninstalled some programs she felt were slowing her computer down and now her wireless is not working the light is not on, the switch is on but when I go into network adapters all there is, is a 1394 Net Adapter and a Broadcom NetXtreme
    and it acts like it needs a cable plugged in to get online when she has never had to use a cable before. I can not find anywhere where there is wireless settings or anything.
    Someone please help, this lady is super nice and I would hate to let her down. I have the computer here with me now and if anyone could help I would appreciate is so much

    I think you are confusing the connection to your AirPort as being the same thing as a connection to the internet. The fact that you are connecting to the AirPort is great, but you can get a legitimate DHCP address and full signal strength even if the AirPort is completely disconnected from your cable/DSL modem.
    1) Crack open AirPort Admin Utility and click the "Internet" tab. What address does the AirPort have? Hopefully not one that starts with 169. Tell us what you have for IP addrss, subnet, router and DNS (even if the DNS are any greyed out).
    2) In the Utility folder crack open Network Utility and ping this: 64.142.120.111 the address for just-ping.com. They won't mind! Do you get dropped packets or does the ping return? If the packets are dropped, then your AirPort has no connection to the net. If the packets successfully return, then your IP connection is good, but you have no DNS service.
    3) Open Safari, enter 64.142.120.111 into the address field. Does it resolve to just-ping.com? Again, if it does, then your connection is good, but you have no DNS service. If it times out, then the internet connection is NFG.
    Let us know!

  • Can't get passed this install problem - Please help Adobe.

    I've downloaded the TRIAL version of PRODUCTION PREMIUM CS6. Once running / installed and tested it I will purchase it.
    But cannot get past this ERROR problem.
    Here is my install ERROR log ADOBE..  Please help.
    URGENT.
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DF027, DW063 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 0 warning(s)
    ----------- Payload: {9124DF4E-617D-486B-A970-8FA632244F24} Adobe Photoshop CS6 Core 13.0.0.0 -----------
    ERROR: DF027: Unable to copy file from "/private/tmp/.tempdir6Qpuljrb/Assets1/Application/Adobe Photoshop CS6.app/Contents/Resources/PS_LevelsIcon.icns" to "/Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Resources/PS_LevelsIcon.icns" (Seq 1205)
    ERROR: DW063: Command ARKCopyFileCommand failed.(Seq 1205)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Photoshop CS6 English Language Pack_AdobePhotoshop13-en_US: Install failed
    ERROR: DW050:  - Adobe Photoshop CS6 Core: Failed due to Language Pack installation failure

    You can try resolving your issue using following document :
    http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html
    and
    http://helpx.adobe.com/creative-suite/kb/error-unable-copy-file-tmp.html
    Regards,
    Sharath Holla.

  • I can not get my iTunes to work, please help

    ok when i click to open itunes, i get the window asking me whether or not I agree to the Itunes software license agreement. I click agree and then i get an error message stating that "The itunes application could not be opened. An unknown error occured [-48].
    Can somebody please help me or if anyone even knows a number i could call for support regarding itunes, i would greatly appriciate that.
    Thank you

    Do you have a valid payment method entered in your account? If yes then contact iTunes.
    Contact iTunes

  • BlackBerry z10 can't get access to mobile network, please help!

    Hi, i got my unlocked z10 a few days ago and still i can't get access to mobile network. Only wifi have worked for me till now.. i used the same sim card as my old phone (where i i got access fine). I've tried rebooting and switched every setting on and off etc. Could any one please help me with this..

    Since you are using the same sim I suggest you contact your service provider to check your provisioning.
    Let me know if this help.

  • I have a new MacBook Air and I set my password the other night and forget what I selected. Now I can't start using the computer because I can't get through password gates! Please help!!

    I have a new MacBook Air. I set my password the other night when I was half asleep and can't remember it. Im still working on my old MacBook Air and can't get through the password gate on my new one. How can I reset it on that computer? I can't even get to the internet.
    Thanks!

    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Select Terminal from the Utilities menu. At the Terminal prompt enter:
    resetpassword
    Press RETURN. You will get a GUI in which you can reset your password.

  • Can not get my iphone to work please help

    i done every thing to get my iphone to work with straight talk please help me i need a phone i have bad health famiy members

    https://discussions.apple.com/message/23872549#23872549

  • Can't get back my Apple ID, please help.

    Hello,
    Yesterday, like everyone else, I wanted to sync my account to iCloud, the thing is my Apple ID wasn't verified, and whatever I did, I couldn't send a "Verify mail" via the https://appleid.apple.com/ site. So after searching here and there, I read that what you needed to enter a new apple ID, verify it, and then change it back to the prior Apple ID, The first part worked (of course...) but now for some reason I cannot go back to my original Apple ID, when I try to save it, the screen just load, refreshes like nothing changed...
    Could someone please help me?
    Thank you.
    Jharryone

    Click here, explain to them that you can't call, and see what they say.
    (120676)

  • Can't synch photos error (-69).  Please HELP!

    I don't know if anyone out there will be able to help, but I am becoming desperate. I am having a terrible time synching my ipod photos. For the last several times that I have synched it, I get (-69) errors. I have sought answers on this board and followed their advice and painstakingly was able to synch my ipod after clearing 20+songs from it. However, it now will not synch my photos. Actually, in synched them earlier tonight, and then I added a few more, and it gave me the (-69) message again. I tried removing the most recently added photos, and still nothing. I restored the entire ipod, and still I get the same error message.
    I have had the ipod for about a year and just started having this trouble about two weeks ago. I actually tried the solution you gave, but I can't even get my ipod to go into disk mode. I have tried several times and after resetting it always just opens at the normal screen.
    I am about at my wits end here and ready to toss the entire thing. I don't know if anyone can help, but I would appreciate any assistance. Thank you in advance, if for nothing else than for taking the time to read this novel of an e-mail.

    Thanks both, really helpful!
    I renamed all assets, making sure they we shorter and added underscores instead of spaces just in case, and created the project again. It then worked fine.
    Thanks again.
    Ross

  • Can't move Photos out of Newstand - please help!

    My 2-year old dragged Photos icon into Newstand. I finally found it there, with a sigh of relieve; however, now I can't for the life of me drag it anywhere at all, be it home pages or the taskbar on the bottom. What am I to do? Thanks.

    Frankly, I don't even know if that would work. It is the only way that I can think of to try without restoring the iPad to factory settings.
    As you now know, the Newsstand folder was not meant to be used for apps other than those that are designed to work with Newsstand. Getting the photos app out of there should be problematic because it is not meant to be placed into it.
    Now having said all that stuff that you already know anyway - Have you tried creating another folder right next to Newsstand and then open Newsstand and try as fast as you can to move the photos app into that new folder?

  • Can't get email notifications to stop - please help!

    I'm posting this message per instructions for "How do I stop receiving email notifications from Adobe Forums?" at  http://forums.adobe.com/thread/416458?tstart=0
    I have followed the instructions dated June 30, 2010, gone to "MyStuff  and followed all the steps in both  Email Notifications and Preferences. I'm supposed to attach a screenshot of the Email Notifications tab after step five, which would prove to you that I have indeed checked the radio buttons to "NO", but I can't do that because you have disable attachments. Please be assured that I have done as you say though - they both say NO!
    As for the second request - the reply-to address from one of the email notifications, it's this:
    [email protected]
    Can you PLEASE PLEASE PLEASE stop the notifications from coming? You may disable my Adobe account if necessary.

    I'm aware that I had two sign-ons, but the trouble is, or was, that the first one (ebmeyer1) stopped working.
    It is in the midst of the recent Acrobat 8.2.4 update fiasco, and I needed HELP. I was able to post in the relevant thread, but thereafter, whenever I tried to sign on again I got caught in an endless redirect loop after entering my password. I was desperate, so I created a second sign on in order to participate. That worked for awhile, then it too gave the same result - and endless redirect upon password entry.
    I was able to participate in THIS thread by pasting in the URL from one of the Acrobat issue email notifications, sent to the second account, into Safari. Only in Safari would the password go through, and only for the second account - not the first.
    Now tonight - for a split second - the first account started working again - this time in Firefox. NOW I was able to get to the settings for ebmeyer1 and make the necessary changes. (Thanks for the article!)
    I hope to gawd this works. The "Contact Adobe" help page gives no hint of where to write for a situation like this - where accounts suddenly seem to crap out on you. All they do is tell you to sign on. What the hell do you do when you CAN'T??????
    Thanks to all of you for your responses.  Once I close this browser window I may never be able to sign on again  :-(

  • Airport connected but can't get internet....PLEASE HELP!!!

    I am a college student who went to college and used an apple airport base station for my mbp and everything worked fine, and before i went to school i used my parents linksys wireless router and it all worked fine. i came home from college today and used the internet (over the linksys router) for about 5 minutes, then came back a few hours later. after i came back my computer said i was connected via airport to the linksys router but i cant load any page at all with any internet browser, also aim and msn messenger wont work. when i get on the internet i get this message "safari can’t open the page “http://www.yahoo.com/”. The error was: “lost network connection” (NSURLErrorDomain:-1005) Please choose Report Bug to Apple from the Safari menu, note the error number, and describe what you did before you saw this message." i can connect if i plug my mbp in and i have tried the network diagnostics for airport several times, and it comes back saying that i am connected and it is all working fine, but its not. any help would be great. thanks.

    I have the same problem...New MacBook Pro connects fine to Airport at home. Shows connected to WPA network at work but no Internet connectivity - or it takes a VERY long time to pull anything up. Have run the Network Diagnostics successfully and Mac thinks it is connected, but still not able to reach web sites.
    Have followed instructions here: Article ID: 106799 Mac OS: Long Delay Before Web Pages Start to Load, Then Load Suddenly at Normal Speed without success. Can hardwire my MacBook Pro and use the network in this way.
    I am a network admin and I set-up the wireless so I am familiar with the details, but am truly baffled why my Mac will not connect to the Internet.

Maybe you are looking for

  • Problem in Creating basemaps

    Hi All Am new to Map concepts, I followed the steps below to create maps : 1. I downloaded Mapbuilder Application and MVDemo Schema. 2. Now I created User MVDemo in database and loaded all the data that containd in MVDemo. 3. I created connection for

  • White line on horizon

    I have a Sony Alpha a200 camera. Often times when I use the color fetue to desaturate blue in order to darken the sky a white line apears at the horizon or agaist another object that intersects the sky. Does anyone know why or how to fix it? Is this

  • Problem with mp3 Player in Safari

    Here's my page again. http://charlesnewmanpubl.com/catalog.html So it looks like I have this page just as I want it. But I'm seeing an odd issue. When you click on any of the tracks in the cd, it calls a function which changes the album art, plays th

  • Macbook pro 4gb 2.3Ghz core i5, os X 10.6.8 blocked plug ins/have checked safari settings

    using macbook pro Snow Leopard 10.6.8.  blocked plug ins mean I cannot access needed info./have checked settings on Safari.  Where check next?

  • ADS : FP_TEST_00 Exception getting currently running XMLForm Module version

    Hi, We have installed ADS and Currently configuring it. The Reports FP_PDF_TEST_00 is working fine. But the reports FP_TEST_00 is hanging when i specify the Printer name and click on Print preview. The Following error message i got in the default tra