Scren saver,

Hi There,
The screen saver pick just 4 photoes for a slide show out of 750 photoes. what to do to enable it to pick the entire photoes in the catalogue

Are you talking about PASE slideshow ?
+ RIpple

Similar Messages

  • Screen closes  error message appears

    I have just purchased a MacBook and have found that i often have the screen close down on me reverting to the scren saver page, then an error message appears...... help

    The easiest way to do that is to erase and reformat the hard drive using Apple's Disk Utility program, found in your Utilities folder. Click on the drive in the left hand column, then choose the "Erase" tab, click the "Security Options..." button, and choose a three-pass erase. That should be more than sufficient.

  • Login Screen

    I'm trying to create a login screen for my forms. I want users to have to login before they can access my forms but I don't want that login info to be stored on the form. I think I need to use an HTTP submit button.. but I'm unsure how to set it up. I have created a separate form for just the login. Then, my main form is behind it on another form. This seems like a fairly simple thing to do but I'm having trouble figuring out where to go from here.
    Yes, I know I can try to use Adobe Document Center or LiveCycle ES to get the 'secure after publishing' functionality but my manager wants me to explore other options first.
    Thanks

    For start up login go to System Preferences, Accounts. Click on the lock at the bottom, enter your password then click on login options. Uncheck the "automatically log in as : (yourname)" checkbox and you'll get the login screen at startup.
    Then go to Security and check the "require password to wake this computer from sleep or scren saver" checkbox, and the "disable automatic login" box if it has not been checked by the previous change in Accounts.

  • PCMCIA-CAN Series 2 hanging

    Hello,
    We are using a PCMCIA-CAN series 2 board on two of our machines to get/send PDO data to CANOpen network of 6 nodes.
    Built in 2007, Labview 2010 application (using CANOpen library 1.1.3 in combination with NI-CAN version 2.7.4) seemed to work OK mainly because we used it on short period of time (under 12h). To run more longer tests, we run now the machine over 24h continuously and this revealed a small bug. We investigated the case first with NI-SPY. It reported a communication lost problem with the board firmware and propose different solutions or checks (windows interrupts, application code, etc...). 
    In our application, we have two loops to send and get PDOs on the network. We use function "Wait for PDO" to wait for a TPDO during a time slot and if not received we switch to wait for another one and so on. The other loop takes care of the RPDOs the same way. We have no more than 14 RPDOs or TPDOs for our network. We checked the code and even slow down the switching but bug is still appearing.  
    We then run the application with other faster computer and made all software updates. Now, NI-TRACE reports (attached with this post) other errors but symptoms are still the same. Application is not able to communicate with board to get/send the PDOs values (or send/recaive SDOs) even the nodes on the CAN network are running OK. It seems that firmware implemented on board stopped functionning or hanged.
    We contacted NI sales representative in order to get version 1.1.4 of the CANOpen library (support for LV 2010) but did not get any proposal at this time. We suppose that there is no firmware update as the product is now obsolete. Of course, recommandation was also to switch to new NI PCI board with new library for industrial communications but which is unforunately a little too large to be installed in our panel PC. Another manufacturer hardware will fit for sure...
    Reading back my posts in 2007-2008, I remembered also that the PCMCIA boards had more limitations than others PCI boards for example. But, before changing hardware and rewriting the code, I want to give these boards (and all the work done in the past) a last chance.
    Does one of you have suggestions or solutions for me ?
    Thanks in advance.
    Attachments:
    20130329SMTSpyCapture.nitrace ‏304 KB
    nicanErr.txt ‏5 KB

    Hello,
    Please find below two snapshots of the code and in particular the TPDO and RPDO loops I have in my main vi.
    The TPDO loop receives an array of clusters containing each with  TPDO elements declared. Array contains 7 elements actually. TPDO time refresh time has been set to 200ms so that loop switches on a waiting time for each TPDO around 28ms. CAN network speed is 1Mbits/s and the 6 CAN nodes has been setup to send their TPDOs every 20 or 30ms. Only the one used are sent.
    The vi "Get TPDO data" is implementing the TPDO wait function. If a new TPDO is available, its value is compared with the stored one (in array element). If new, the TPDO cluster is updated and put in a queue. Then, in this Producer/Consumer queue principle, the second loop dispatches the values in the variables.
    The RPDO loop is based on same principle except that the 2 RPDOs are set every 50 ms. The application then uses SDO to send other commands to the nodes.
    When our problem appears, we notice that values are not refreshed anymore on the front panel, even commands with SDO are no more possible. Spying the CAN network shows normal activity of the nodes.
    First error message we got from NI-SPY was :
    “Overflow in the lower level read queue of the CAN card (frames lost).  NI-CAN reads this queue at Windows interrupt-time. Solutions: Avoid tasks that generate excessive interrupts on your PC (mouse, ethernet, ...); Avoid running other
    applications during your test (screen savers, MAX, ...); use Series 2 Filter Mode to filter incoming traffic; For CAN Objects (Frame API), increase read queue length or call Read more frequently”
    So we checked our configuration and computer (scren saver, network connection, etc...). We also ran the application with another one, made updates... Now NI-TRACE reports the information contained in the files attached to my last post. Hard to find the bug if it occurs only after several hours of running time...
    With these information, any suggestions or comments ?
    Thanks.
    Attachments:
    TPDO Loop.PNG ‏100 KB
    RPDO Loop.PNG ‏68 KB

  • ALV Grid: how to save changes made in an editable Grid

    Hi,
    How to save changes made bu the user in any of the editable cells in a ALV Grid?
    Regards,
    deb.

    Hi,
    If you are using the FM look at the following example code...
    data: LC_GLAY TYPE LVC_S_GLAY.
    LC_GLAY-EDT_CLL_CB = 'X'.<<<<<------
    gt_layout-zebra = 'X'.
    gt_layout-detail_popup = 'X'.
    gt_layout-colwidth_optimize = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = i_repid
    i_callback_user_command = 'USER_COMMAND1'
    it_fieldcat = header
    is_layout = gt_layout
    i_callback_top_of_page = 'TOP-OF-PAGE1'
    i_grid_title = text-h17
    it_sort = gt_sort[]
    i_default = 'X'
    i_save = 'U'
    is_variant = gt_variant
    it_events = gt_events
    I_GRID_SETTINGS = LC_GLAY<<<<<<------
    TABLES
    t_outtab = itab.
    clear itab.
    Form USER_COMMAND1
    FORM USER_COMMAND1 USING u_ucomm LIKE sy-ucomm
    us_selfield TYPE slis_selfield."#EC CALLED
    case u_ucomm.
    when '&DATA_SAVE'.<<<<<<<<----
    This will come after the data was EDITTED and when SAVE was clicked by user in output scren.
    Here now in the final internal table(ITAB) you can find the data changed in EDIT mode.
    After this you can do manipulation what ever you want.
    Thanks.
    If this helps you reward with points.

  • Save data changes in OO ALV

    Hi,
    Can anyone please tell how to save the data which is saved in OO ALV.
    A simple sample code will be much appreciated.
    Points assured.
    Thanks in Advance.

    Hi,
    This is when using FM.............
    If u r using FM look at my example.....
    data: LC_GLAY TYPE LVC_S_GLAY.
    LC_GLAY-EDT_CLL_CB = 'X'.<<<<<------
    gt_layout-zebra = 'X'.
    gt_layout-detail_popup = 'X'.
    gt_layout-colwidth_optimize = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = i_repid
    i_callback_user_command = 'USER_COMMAND1'
    it_fieldcat = header
    is_layout = gt_layout
    i_callback_top_of_page = 'TOP-OF-PAGE1'
    i_grid_title = text-h17
    it_sort = gt_sort[]
    i_default = 'X'
    i_save = 'U'
    is_variant = gt_variant
    it_events = gt_events
    I_GRID_SETTINGS = LC_GLAY<<<<<<------
    TABLES
    t_outtab = itab.
    clear itab.
    Form USER_COMMAND1
    FORM USER_COMMAND1 USING u_ucomm LIKE sy-ucomm
    us_selfield TYPE slis_selfield."#EC CALLED
    case u_ucomm.
    when '&DATA_SAVE'.<<<<<<<<----
    This will come after the data was EDITTED and when SAVE was clicked by user in output scren.
    Here now in the final internal table(ITAB) you can find the data changed in EDIT mode.
    After this you can do manipulation what ever you want.
    Thanks.
    If this helps you reward with points.

  • Feature Request- Save in Background in Full Screen

    I work in full screen with Menu Bars 98% of the time.  I also enjoy the new save in background feature.
    The problem is that when in full screen I can't tell when it's saving and the status of the save.  This is particularly frustrating when I'm trying to close a file.  I think there needs to be an option to have it save in background but pop up a status window, or some way to see the status of the save while in full screen.

    Thanks for the suggestion.  However it still doesn't show the bar with the save status when I have the floating window on a second screen and photoshop in another.  The bottom status bar is attached to the document not the main photoshop window.  So no matter where you have photoshop, if you make a document full screen it hides that bottom bar.
    I don't think of this as having my cake and eating it too either.  Full screen mode with menu bars doesn't exist to minimize distractions (though some may use it for that), but rather to maximize screen real estate.  I'm using it so I can pan and flick my images from spot to spot while I retouch.   Since they already give us the option to have full screen with menu bars, then I just think it would be nice to have the bottom status bar show as well while in full scren mode.  I've always wished I could still see that in full screen to manage efficency while working on large files, but it's never been a bother.  Now that it is also where the save status is showing, I just think it would be great to be able to see it in full screen with menu bars mode.  And if not, then still be able to have the Save dialog status window pop up while having background save enabled.
    ** i totally forgot about turning on timing and efficency in the Info panel . That would be a perfect place for them to put the saving status since they already have the other options there.

  • White screne with a file on it????

    Okay, so my little sister droped my computer down the stairs the other day, i took it to the Apple store in the mall and they told me it had hard drive damage but Mark at the store was able to work his magic and fix it, he told me my homework was to go home and check for any updates, I did. I updated everythign that could be updated, then at the end of the update i had to close programs that were running to make room on my computer. then i restarted my computer and it wont restart.
    I get a white screne with a grey file with a question mark on it flashing. that is it, nothing else happens.
    WHAT DO I DO???????

    From Apple doc:
    * 58042
    If you see a flashing question mark when you start your Mac, it's probably because it can't find the system software it needs to start up. Usually, all you have to do to get your Mac back up and running is remind it where its software is.
    After the flashing question mark appears, one of two things may happen:
    * The computer starts up normally after a brief delay.
    * The computer does not start up.
    If your computer starts up normally after a brief delay, you probably just need to reselect the startup disk in Startup Disk preferences (Mac OS X) or the Startup Disk control panel (Mac OS 9). It's normal to see the flashing question mark when a startup disk has not been selected. In most cases, reselecting the startup disk is all that is required to resolve the issue.
    Tip: If your computer is having a different startup issue, see this document instead.
    Check the mouse and keyboard
    If the mouse button is held down during startup, this issue might occur. Make sure the mouse button isn't pressed.
    If the issue persists, disconnect the mouse and keyboard before starting up as a test. Use your computer's power button to turn it off and on. If the issue persists, reconnect the keyboard and mouse.
    More solutions to try
    If your computer still starts to a flashing question mark, follow the steps for your Mac OS version below.
    Steps for Mac OS X
    The possible causes and solutions for this symptom appear in the order that you should try them. If any step resolves the issue, you don't need to continue to the next one. If at any time in this process you determine that your Mac OS X system software is missing, reinstall Mac OS X. Mac OS X system software is stored in the System and Library folders at the top (root) level of your hard disk. It is also stored in folders that are invisible when started up from Mac OS X but that are visible when started up from Mac OS 9. If you have started up from Mac OS 9 and deleted folders that were unfamiliar to you, you may have accidentally deleted your Mac OS X system software. If you're not sure, save reinstallation for your last option.
    1. Start up from a system software CD or DVD, and repair your disk using Disk Utility:
    1. Insert the Mac OS X Install or Restore disc.
    2. Restart the computer, then hold the C key during startup.
    3. From the Apple menu, choose Disk Utility. Do this in the first screen of the Installer. Don't click Continue. If you click Continue in a Mac OS X Installer version earlier than 10.2, you must restart from CD again.
    4. Click the First Aid tab.
    5. Click Repair Disk.
    6. After repairing the disk, try to start from the Mac OS X hard disk.
    Tip: If your hard disk is not available (mounted) when started up from CD, reset the parameter RAM (PRAM) as described in step 3, then repeat these steps. If your hard disk is still not available after resetting PRAM, contact an Apple Authorized Service Provider or Apple Technical Support.
    2. Try to select your Mac OS X startup disk using either Startup Manager or the X key.
    If this doesn't work, go to step 3.
    3. Reset parameter RAM (PRAM).
    Reset PRAM, then see if the computer starts up. If it doesn't, repeat step 2.
    4. If none of these steps resolved the issue, start up from the Mac OS X Installation CD and reinstall Mac OS X. If your hard disk is not available (mounted) when started up from CD, contact an Apple Authorized Service

  • Filename in Save As dialog when saving PDF file

    I have a web site serving up PDF files. Without going into details, the URLs of the PDFs are not just your basic URL but look simething like this:
    http://www.domain.com/WorkFlowApp/Clients/demo1/secure/Promo%20Cover%20Cool-MedH i.pdf?userId=55b64ad5-28a2-490e-b3d6-4944099a390f#collab=CollabService@http://ww w.domain.com/ICCollab/IC_Service.asmx?WSDL
    In this case the actual filename is "Promo Cover Cool-MedHi.pdf"
    While viewing in Safari (OS X), if the user saves the PDF to their local machine, the Save As dialog comes up and the filename field is automatically populated. The problem is, instead of using just the filename, the field contains this:
    http---www.domain.com-WorkFlowApp-Clients-demo1-secure-Promo%20Cover%20Cool-MedH i.pdf?userId=55b64ad5-28a2-490e-b3d6-4944099a390f#collab=CollabService@http---ww w.domain.com-ICCollab-IC_Service.asmx?WSDL
    I know when performing the same action on Windows using Internet Explorer, the Save As dialog box filename field is populated correctly with just the filename (although it shows up URL encoded as Promo%20Cover%20Cool-MedHi.pdf, which is OK).
    I'd like to be able to force Safari to use just the filename in the Save As dialog box. Has anyone come accross this problem and figured out a solution?

    Hello Ebnul.nao
    I am having this same problemwith trying to work this out.
    Did you succeed in the end?
    I will really appreciate your help if you did
    Kind regards

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • I can't save downloads to documents folder, only to desktop...

    Only desktop saves are allowed.  The message states, "Word cannot save or create this file.  This disk may be full or write protected..." The disk isn't full, so I'm not sure what to do.  I'm having to save everything to the desktop and then move files into document folders in Finder.  Any advice on how to save directly to documents or what may be wrong?   Thanks so much!.

    Back up all data now.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. You can demote it back to standard status when this step has been completed.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Drag or copy — do not type — the following line into the Terminal window, then press return:
    sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:20 ~ $_ ; chmod -R -N ~ $_ 2> /dev/null
    Be sure to select the whole line by triple-clicking anywhere in it. You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning. If you don’t have a login password, you’ll need to set one before you can run the command.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select Utilities ▹ Terminal from the menu bar. A text window opens.
    In the Terminal window, type this:
    resetpassword
    That's one word with no spaces. Then press return. A Reset Password window opens. You’re not going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select  ▹ Restart from the menu bar.

  • Saves to wrong folder

    When I want to save a jpeg file into the same folder I opened I click 'save as' and the wrong folder
    opens but with the correct file number I am working on ready to save.
    I have to search in pictures and re-open the correct folder to save into.
    The photo also appears in the wrong folder and I have to delete it from there.
    I have been using PS3 for years and this has just started happening for no reason.
    Can anyone help please.
    Thanks
    mickeyspillanemikehammer

    Sorry, maybe for your purpose you have to check this option, not uncheck it... Try it

  • Aio remote only allows save to pdf when trying to print picture

    brand new HPm MFP M127 fw.  have web services enabled and all the other stuff noted in the printer installation.  Installed aio remote on galaxy s3 with droid 4.4.2.  went ahead and installed HP print services from GP as well. 
    Browse to a photo in the gallery, select print and the print setting dialog appears, but no option to print.  only save to PDF.  When I try to go ahead and let it save, to see if it will let me print after, it fails.  What am I missing here?

    Hi,
    The HP Laserjet Pro M127 is not supported by the HP All-In-One Remote app, therefore it won't allow printing to the printer, as you may find listed within the HP Consumer LaserJet printers section:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02814760&lc=en&cc=us&dlc=en&product=3204788#N39...
    You may print using the HP ePrint app or Print Solution for Android as listed below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03722645&tmp_task=setupCategory&cc=us&dlc=en&lc...
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Sharepoint Foundation 2013 People field wont save data

    Guys, having an issue with a list column. We have some columns that are Person or Group.  when we enter in a user, it finds it just fine saves it just fine. but if i come back into that list and edit some other field the Person or Group field is totaly
    cleared out. I don't know what is going on. we are using SharePoint foundation 2013.

    If you're using SharePoint 2013 April 2013 CU or higher, this is a known issue where the People data is missing in Edit view. There is a separate issue that is resolved in the September 2014 CU:
    http://support.microsoft.com/kb/2995905
    Consider the following scenario:
    You create a SharePoint 2013 list that contains a Person or Group (people picker) column.
    You create or edit an item, and then you select a person whose name contains a comma in the Person or Group field.
    In this scenario, the value of the Person or Group field is lost when you save the item. 
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • HAVE NEW 13.3 MAC AIR AND when using it to open sites in safari I have no issue until I go to a link page that is a pdf file or I am trying to save the screen info as a pdf. I only get a black screen with no data, cannot find solution in help menu

    HAVE NEW 13.3 MAC AIR (previously, still have 13.3 MCbook pro which works captures what I am looking for an answer to)
    when i open sites in safari the page opens fine if it is not a pdf based page.
    Once i open a site that has a link to another page that is a pdf based page the page comes up as a black screen with no info showing
    If I open a site that gices me an open to save a file to a word, excel type document or a pdf , everything works fine until I try to save the information to a PDF and again the screen goes black
    I have tried the safari help site but to no avail, does anyone have a solution to thid problem. (I do have the abode ofr mac program loaded)

    If you delete all the Adobe Reader stuff it will probably fix this. For almost everything, the Apple pdf handling works better.

Maybe you are looking for

  • Unable to read multiple files in BODS

    hi all, i am unable to read multiple files [with same format of fields] using wild card characters in file name. scenario: i have 2 files: test1.xlsx & test2.xlsx in the excel file format, for the file name column, i have given test*.xlsx. and done t

  • Cant open PS Elements 5.0 or catalog

    This has been an intermittent problem.  I can't open Elements 5.0.  It hangs up when trying to load an old catalog.  Is there a way to work around the issue.  I only use PSE 5.0 for slide shows, all other work is done in the full version of Photoshop

  • Batch Created Trial in Production order

    Hi, The scenario is like this: Two saleable materials, batch activated. Batch activated at material level.  We have done some enhancement to derive the batch number for the materials using alpha- numeric combination.  Now two production orders have b

  • Closing all running programs

    This newbie has a simple question that my "Mac Help" feature, 2 big books, and support "search" features hasn't answered. How do you turn off all running programs? I want to install Verizon DSL, and their installation book says to first close all run

  • How do I achieve this look on my photographs?

    How do I achieve this look on my photographs? Thanks for any tips. http://72.11.142.207/~vladstud3/swh/low/800x600/siberian_wooden_houses_noframe_21_800x600. jpg