Lost event and changed button functionality

Iphoto crashed while I was writing comments about photos in an event. This was the second last event imported. On relaunching the event has been duplicated but both events are empty.
The next strange thing happened when I reloaded the photos again. I now find that the buttons of the top, next to the line "1 photo selected" do not move from photo to photo as they used to but takes me to an adjacent event.
Iphoto 9.4.1, OS x 10.7.5
Any thoughts?
Mike

my mouse has 3 buttons and 2 axis mouse wheel, but i use the evdev driver anyway, because it has lower latency. I may probably switch to evdev for the keyboard too. evdev is a driver for usb devices.
http://wiki.archlinux.org/index.php/Get … ns_Working
Using evdev the wheel seems to work better.

Similar Messages

  • I upgrated Firefox to version 4 and lost up- and down- scroll functionality on my laptop.

    I upgraded Firefox to version 4 and lost up- and down- scroll functionality on my laptop.
    Please advice how to restore scroll functionality

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to make next and previous button function

    Hello
    Can anybody help me with how to achieve next and previous button function such as the one at www.bestbuy.com?
    I would appreciate any help or suggestion.
    Thank you!

    if you're not familiar with flash it might be easiest to place your initial "page" in frame 1, the 2nd (or next) page in frame 2, the 3rd/next page in frame 3 etc.
    place your previous and next buttons in their own layer that spans the main timeline (which will have as many frames as you have "pages").  give them instance names (say prevBtn and nextBtn).
    you can then use the following code placed in frame 1:
    var tl:MovieClip=this
    prevBtn.onRelease=function(){
    tl.prevFrame();
    nextBtn.onRelease=function(){
    tl.nextFrame();

  • Needed() and changed() region function

    Hello,
    I'm studying the basicBoxBlur code that comes as sample in
    PBToolkit. As I'm a beginner in code writing, I have some troubles
    understanding properly the use of needed() and changed() region
    function: are they supposed to simplify the PB calculations, since
    the filter runs even commenting those lines?
    Could you gently provide some more info about their role
    specifically in the basicBoxBlur code?
    I'm sorry if this appears as dummy question, but the my
    personal learning curve is quite steep... (my actual goal is to be
    able to rewrite some sort of Gaussian Blur, Maximum, Minimum and
    Median Photoshop filters, so this is only a initial step toward
    them - I'll be fighting with sorting algorithms later on :)
    TIA,
    Davide Barranca

    Hi Davide,
    I'm really glad you've asked this question. It's a very good
    question. Region functions would be considered one of the more
    confusing, topics with respect to Pixel Bender. Unfortunately, this
    makes it difficult to explain in words, but we'll try anyway.
    The region functions are the mechanism by which you indicate
    to the product your running in (whether it's the toolkit,
    Photoshop, or After Effects) how your filter affects the size of
    the image. Currently, Flash does not support these functions in the
    Pixel Bender source, but you do need to implement the same thing in
    the supporting ActionScript code.
    If you think about a blur or any other convolution type
    filter, you end up sampling a certain window around the pixel in
    order to get the output color. For instance, if you have a blur on
    the X axis that's one pixel in radius, you end up sampling 3 pixels
    for every output: one to the left, the pixel that's at the same
    coordinate as the output pixel, and one to the right of that.
    Simple. If you consider what happens at the edge of the image,
    though, things get more complicated. If you processing the result
    for the very left edge of the output image, say at coordinate
    (0,0), you'll need to sample three pixels, (-1, 0), (0, 0), (1, 0).
    You need to account for the negative values when sampling. There is
    a similar problem on the other edge where you will be sampling at a
    location greater than the output window on the right. This means
    that to produce an output of size 512, you actually need an input
    of size 514 (one extra pixel for the left, and one extra pixel for
    the right). This is what the needed function is calculating. The
    function answers the question: "For an output of size X, what size
    input do I need?" In most cases this will be exactly the same as
    the output, but in some examples, like BoxBlur, this is not the
    case.
    The same thing happens on the output as well. Consider the
    one dimensional box blur with a radius of 1 again. In this case,
    you provide it an input of size X. If we were interested in
    displaying any pixels that had any color at all, we would get an
    output of size X + 2. This is because the edge pixel contribute to
    the coloring of pixels outside of the input dimensions. In other
    words, we would get a non-black pixel at location (-1, 0) because
    the pixel at (0, 0) would be within the radius. This is what gives
    you a smearing of the image outside of its boundaries when you
    apply a blur to it. This is what the changed function is
    calculating. In other words, it asks the question: "If I give the
    filter an input of size X, what sized output would it produce?"
    Again, for most cases, this would be the same as the input
    size. Filters that fall into this category are color corrections.
    Additionally, for convolutions and blurs, the needed function would
    be the same as the changed function. For warps and other
    transformations, this is not the case. The best example of this is
    scaling the image by two.
    When you commented out the region functions, the output image
    became smaller by the blur radius. This was probably not very
    noticeable, but if you made the radius large, you would see the
    difference. Additionally, you are probably asking why we need this
    level of detail in the filter. In most simple examples, no one
    would ever notice this since we often have a single input image and
    execute a single filter on it. However, because these filters can
    be used as a small part of the workflow for professional graphics
    and effects applications, getting these details right is very
    important for the filter to render the correct results in all
    cases.
    Since you asked specifically about the basicBoxBlur sample,
    here's a breakdown. Note that the functions are exactly the same
    code because it's a convolution.
    float2 singlePixel = pixelSize(src);
    This is getting the pixel aspect ratio. One thing I didn't
    mention is the notion of the pixel aspect ratio and the need to
    account for this when calculating the regions (this is the subject
    of another post entirely).
    return outset(outputRegion, float2(singlePixel.x *
    ceil(blurRadius), singlePixel.y * ceil(blurRadius)));
    The next line is increasing the requested region by the size
    of the blur window radius (conceptually expand the single radius
    out to a radius of size blurRadius). We take the ceiling of the
    blur radius in case the radius is a non-integral value.
    I hope that helps clear up any confusion. Please let me know
    if you have any questions or need clarification on any points. By
    the way, I'm very impressed with your list of filters, and I wish
    you the best of luck with the sorting ones.
    Thanks,
    Brian Ronan

  • How do i make the back and forward buttons function? they are visible but not functional.

    I have firefox 8.0.1 and my back and forward button are not working. They are visible but not functioning. I have tried starting in safemode and without any add-ons and the back and forward buttons are still not functioning. What do I need to do to make the buttons functional?

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.com/kb/Bookmarks+not+saved#w_places-database-file

  • Lost backward and forward buttons

    I recently did a reinstall of my system, and restored my library from timemachine. My previous install (which was the first time i installed iphoto09), when i went into an Event and double clicked a photo, the photo would enlarge, and all the other photos would thumbnail across the top and a backwards/forwards button would be (i think) in the lower right). I have searched every where to make sure this wasnt just turned off by a setting, but now im at a loss. I liked iphoto better with those buttons... can anyone help me out here?

    hello again, i just tried setting up another account, and it looks the same, no left/right navigation buttons. here is what im seeing:
    http://www.dfwlp.org/~jhorne/pics/misc/slides/iphoto.html
    in this pic, i have just double clicked a pic from within an event. previously, there was thumbnails along the top of all the pics in the event, and left/right navigation buttons in the lower right (well i think thats where they were, been a long time since ive seen them now).
    if anyone has any other ideas, id greatly appreciate it. i even trashed iphoto, and reinstalled 09 this morning (as well as updates).

  • WAD refresh and change button caption

    I have a WAD template where I have added a input button to toggle SUPPRESS_REPETITION_TEXTS.
    This worked fine, so I then added a script to toggle the button's caption, this sort of works, in that the caption gets changed when the button is pushed, but then gets reset to it's default value when the screen gets refreshed by the SUPPRESS_REPETITION_TEXTS.
    Does any body know how to toggle the buttons caption and keep the change over a screen refresh?

    To move the Stop and Reload buttons to their position to the left of the location bar you can use these steps:
    * Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    * Drag the Reload and Stop buttons to their previous position to the left of the location bar.
    * Set the order to "Reload - Stop" to get a combined "Reload/Stop" button.
    * Set the order to "Stop - Reload" or separate them otherwise to get two distinct buttons.

  • Lost Events and Calendars

    I was having problems with deleted events that kept reappearing so I went to Home then Library then Preferences and dragged these to desktop:
    com.apple.iCal.helper.plist
    com.apple.iCal.sources.plist
    com.apple.iCal.alarmsCache.plist
    com.apple.iCal.plistcom.apple.iCal.AlarmScheduler.plist
    This didn't help and all my events and extra calendars have disappeared. The Home and Work calendars are listed, but all the events are gone. I moved the above out of the desktop and put them back into the Preferences folder, but that didn't help. Still no events. I tried checking this out in a different user, but the events are still gone. I did a restart and that didn't help either. I'm not syncing. How can I get all my events and calendars back? I'm running OS 10.3.9.

    I've had the exact same issue -- I had calendars last week, now nothing (and I can't add any calendars, even though it's my home computer and I have the admin password, of course.) I thought it might have been caused by Yahoo!, Google, or my 3rd-party software (Missing Sync) but I think you have at least allowed me to narrow it down to Google.
    Did you ever get your issue resolved?

  • How do I get events and changes created on my IOS Calendar to show up on iCal using iCloud?

    Using iCloud I can sync my events from iCal right to my IPod Touch. This is great except for the fact that I rarely create events on iCal. I usually create events using the Calendar app on my IPod Touch because I always have it handy and I feel that has a much more intuitive UI. I was really excited about iCloud being able to sync my events from my IPod to iCal but it doesn't seem to be working. When I create events on iCal they sync to my Calendar right away, but when I create an event on my IPod it doesn't show up on iCal. The same is true for changes made on my IPod to events synced from iCal. the changes don't show up in iCal at all. HELP PLEASE!

    The operating system should read 10.8 - sorry...

  • Capture ALV container event and change data in screen header

    Hi,
    I have a REPORT calling a custom screen with a header section and an ALV container displaying ITEMS.
    <b>Situation:</b>
    If I use the FILTER button on the ALV container, it works fine but I wish to capture the details, so that I can change my header data accordingly.
    <b>Example</b>
    e.g : Suppose the ALV container on the screen displays 4 lines of data.
       So my header area displays '4' as the no of items displayed
    Now when I use FILTER button on the ALV container, it then dispalys only '2' lines of data as per the filter criteria. Now how do I capture this details so that my header now displays 2 instead of 4.
    Basically I want my HEADER data to get refreshed whenever I use the filter button to change the number of data lines dispalyed.
    Hope I make some sense with the example.
    Appreciate if you gurus could help ..
    Thanks and Regards
    RK

    Can you post your code.
    Regards,
    Rich Heilman

  • Resize and change button-tex​t in example-OI

    Hello,
    i´m currently looking at the example Labview operator-interface which is delivered with TestStand and installed at:
    C:\Programme\National Instruments\TestStand 3.5\OperatorInterfaces\NI\Simple\LabVIEW\TestExec.​llb
    It works without problems, but how can i resize and modify the text on the buttons?
    I attached a copy pf the buttons. Two of them are resizable, the rest not. Why?
    And how cani change the text displayed on the buttons?
    Thanks for your help
    Attachments:
    copy.vi ‏9 KB

    Hello,
    You're buttons are ActiveX controls. I don't know why they are not resizable, it appears that somehow the activeX container resize properties are disabled. i've seen this sometimes with items on the block diagram, but they become resizable again after restarting LabVIEW.
    You could make a copy of the resizable "buttons" and replace the not resizable "buttons" with the copies to go around the problem.
    Kind regards,
    André
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

  • Calendar iphone deleting events and changing times

    My iPhone calendar is synced with my google calendar.  I haven't had a problem adding or changing events in either until recently.  Lately events in my calendar have disappeared or changed their times.  (Ex: I know I added an event to my calendar via my phone a week ago for yesterday.  Yesterday I was left in a panic because it had deleted itself from my calendar.  Today my child's parent conference time was changed in my calendar to an hour earlier than I set it for.)
    Any suggestions to fix the issue?

    I had already checked the time zone and it is correct.  The time zone wouldn't delete appointments from the calendar anyway, would it?

  • Move and event and change to-do date?

    I use OmniFocus, so on Monday morning, I'll open iCal to a flood of To Dos for the entire week. These are all just day dates, not specific hours. I then drag/drop those To Dos into my daily schedule so I have a nice daily hour by hour breakdown. For example, I'll take "To Do Tuesday" and drop it Tuesday at 3:00-3:30PM.
    Sometimes I'll notice a day filling up more than I might like, and I'll move "To Do Tuesday" from Tuesday to Thursday.
    Where I'm hitting a hitch is, the To Do that I originally drag/dropped to create that Event for "To Do Tuesday" still has the original To Do date of Tuesday and does not update to Thursday when I move the event.
    Is there an iCal setting I'm missing, a 3rd party app, or an arcane spell I could cast that would make the To Do update in this fashion?

    Just wanted to ask again and see if the weekend crowd had any ideas. Thanks.

  • Change button function?

    I have this movie created from a tutorial, but to start it
    you have to click a button, instead I want it to start
    automatically, how can I do that. Right now, this is the
    actionscript used to start it with a button:
    on (release) {
    call("/subroutines:start");
    is there some kind of on load function for this?

    you can attach that code to the main timeline's frame that
    contains that button.

  • Events and differents buttons

    Hi experts!!
    I've a doubt, I've to make a program with three buttons, when the user's click on one button It must appear down this button another button, the problem is how can I put it visible or invisible that button? The three button has another 2 differents button.... I think I could make this with MODIF ID BTC, but it doesn't work... any idea please?
    Thanks a lot
    Regards,
    Rebeca

    hi,
    use the modify screen statement.
    like:
    if event = '1'.
    loop at screen.
    if screen-name = button_2.
    screen-active = 0.
    endif.
    modify screen.
    endloop.
    regards..

Maybe you are looking for

  • DATE functions - Weekly report

    Please take a look at this loop that sort of plays with dates. The values returned are as follows lv_wreport_end_date = 04-APR-04 lv_wreport_start_date = 03-APR-04 I was expecting to get the first week of April ie, 01APR04 to 04Apr04. IF (To_Char(lv_

  • [SOLVED] BCM43241 wireless card seems to not exist.

    Hey guys, I'm trying to install Arch on a Sony Vaio Duo 13. Unfortunately, it only has a wifi card and no ethernet port. Usually, installing wireless card drivers involves using lspci to detect what card I have, then finding the drivers and firmware

  • Wsrp-requireRewrite for URLs in resource response ?

    I'm using Portal 10.1.4 serving WSRP content from a portlet producer running on 10.1.3.2 (JDev embedded OC4J). I want to use an AJAX resource request to serve a fragment of portlet markup containing further portlet and AJAX URLs. URL rewriting for fu

  • Sony says 2011 Xperia phones might get Android 4.1 Jelly Bean

    Hi! looks like not all is lost! http://www.theinquirer.net/inquirer/news/2195619/sony-says-2011-xperia-phones-might-get-android-41-j...

  • Cannot Update to Reader XI 11.0.05 in Win8.1

    I have tried repeatedly to do the automatic update to Reader XI 11.0.05 in Win 8.1 and it fails each time with a RunScript error.  I have tried the suggested Uninstall and Reinstall 11.0.04 but still get the RunScript error on the update.  If you wou