Multiple seats for event booking

Hi everyone,
My event bookings form is currently set up to only take 1 booking at a time. I found the information at the following url to extend the form for multiple bookings:
https://forums.adobe.com/docs/DOC-1774
It said to add the following input field to the form:
<input class="cat_textbox" id=BookingAllocation name=BookingAllocation>
I just have two questions about this. Firstly, if I go into my form and add in a custom field, I get the following code:
            <tr>
                <td><label for="CAT_Custom_330508">How many seats would you like to book? <span class="req">*</span></label><br />
                <input type="text" maxlength="4000" name="CAT_Custom_330508" id="CAT_Custom_330508" class="cat_textbox" /></td>
            </tr>
Each of the "name", "id" and "for" attributes in the above code, all have a custom field number, ie. Custom_330508. From what I have read, apparently I'm not supposed to change these as this is what BC uses to insert the data into the correct field within the CRM. The "id" and "name" values from the input field that I got from the abovementoned url are:
id=BookingAllocation name=BookingAllocation
So the problem is how can I get it to work if I'm not supposed to change the custom field number from my BC form. Also, once a person has entered a number into that field how can I get that field to update the amount field lower down on the form, ie. to multiply the number by the event cost?
I'd really appreciate any help.

Hi,
In iChat 2 it was possible to have one name and Chat to it (Text only) in two locations (Chatting to your self as it were)
In iChat from iChat 3 you can set each Mac at one location to allow Multiple Logins with the same Screen Name.
This on the whole means that all computers will "Answer" an IM and show at least one side (incoming) of the Chat.
Now in addition to this you can also set iChat to Not accept Off Line IMs (either by answering the questioning IM from AIM or on the AIM web site - you can login with your @mac.com name)
as well as that iChat can be set in the General Preferences to "When iChat is Quit, Set My Status to Off Line"
this effects not only Off Line IMS but also the fact iChat will start Up if the computer is On and someone IMs you.
My experience is that it does not seem to be consistent and that the above settings seem to have something to do with it.
There does not seem to be a limit to the number of Multiple Logins that you can have. (seats as you put it)
Jabber accounts do not allow Multiple logins so the issue does not arise as you cannot essentially login on multiple computers.
Summary.
The best thing I can suggest is tweaking the General settings and see if things change
9:36 PM Thursday; January 21, 2010
Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

Similar Messages

  • How to set product Id for event booking order?

    We take paid bookings for a number of events through the year. Since the event booking information is identical for every event (only the event details change), we have implemented this by embedding the HTML from a standardised web form into each event's details section.
    However, when the event booking is submitted by the customer, Business Catalyst creates a product whose name is constructed as {form name}/{event name} to correspond to this event. This product is referenced in the CRM order for this event that is linked to the customer. This means we get a separate product for each event type.
    The problem is that the product code that is assigned to the event booking product is the ID of the web form that was used to process the event (ie. the form embedded in the event detail). Since we use the same web form for multiple events we are now seeing duplicate product codes.
    I would like to create a common product for all event bookings and pass this product ID when posting the form on submit of the event booking. The reason for a single booking product is to simplify the synchronisation to our accounting system - otherwise we need to create a new product in the accounting system every time we add a new event.
    Is there a query parameter I can include on the form's action URL or as an input field to the form that controls the product ID and / or the product name that will be used for the booking order?
    The only other solution I can think of to solve this challenge is to create a unique web form - event combination for every single event. This is not a great solution due to the unnecessary duplication that this will involve - I would rather re-use a common piece of code.
    Thanks for any help and advice.

    Hello
    If I'm not mistaken, the 'text range' in PowerPoint does not have 'language id' property whereas the 'text range' in Word does.
    Check the terminology dictionary of PowerPoint.
    cf.
    http://www.microsoft.com/mac/developers/default.mspx
    Sorry for the bad news...
    H

  • Multiple authors for a Book

    In the below example, the book titled 'Collapse of the Dollar' has multiple authors.
    create table books
    (surrId number(5),
    book_id number(7),
    isbn number (10),
    title varchar2(100) ,
    Author varchar2(100)
    insert into books values (1, 457, 8478, 'Perilous Power' , 'Noam Chomsky');
    insert into books values (2, 458, 2345, 'Macbeth' , 'Shakespeare');
    insert into books values (3, 459, 6789, 'Collapse of the Dollar' , 'James Turk');
    insert into books values (4, 459, 6789, 'Collapse of the Dollar' , 'John Rubino');
    col title format a35
    col author format a15
    col title format a15
    set lines 200
    SQL> select * from books;
        SURRID    BOOK_ID       ISBN TITLE                               AUTHOR
             1        457       8478 Perilous Power                      Noam Chomsky
             2        458       2345 Macbeth                             Shakespeare
             3        459       6789 Collapse of the Dollar              James Turk
             4        459       6789 Collapse of the Dollar              John RubinoI need to write a query whiich returns book details but it should identify records (ie. Titles) with multiple authors and return the record with Authors separated with pipe ('|') like (no need of SURRID column )
    expected output
          -- no need to retrieve surrogate ID
      BOOK_ID       ISBN TITLE                               AUTHOR
          457       8478 Perilous Power                      Noam Chomsky
          458       2345 Macbeth                             Shakespeare
          459       6789 Collapse of the Dollar              James Turk|John Rubino
          Related question on the above Table design (Create table DDL shown above):
    A table storing book details can only be designed like above. Right ? I mean, the duplication of records for one book because of multiple authors cannot be avoided. Right ?
    One wonders how Amazon has desined its books table :)

    Hi,
    Pete_Sg1 wrote:
    I need to write a query whiich returns book details but it should identify records (ie. Titles) with multiple authors and return the record with Authors separated with pipe ('|') like (no need of SURRID column )Get there : {message:id=9360005}
    and scroll down to "string aggregation"
    Pete_Sg1 wrote:
    A table storing book details can only be designed like above. Right ? I mean, the duplication of records for one book because of multiple authors cannot be avoided. Right ? I would have had a table for books, and a separate one for authors, and a 3rd one for their relations :
    create table books
    book_id integer,
    title varchar2(100),
    etc...
    create table authors
    author_id integer,
    name varchar2(100),
    etc...
    create table book_authors
    book_id integer,
    author_id integer
    );You could also have only 2 tables book and authors (with authors table having a fk column to book_id).
    It would depends if the author is supposed to remain unique throught different books.
    - The 3 tables model would allow a single update on author information to be automatically "propagated" to all book he participed in.
    - The 2 tables model would allow to have different information for each participation of the author to different books (but would certainly "duplicate" part of the data about the author)
    One can also have even more tables to totally avoid data "duplication".

  • CUOM 2.3 sends multiple notifications for Event StoppedGSUPerformancePolling with same time stamps

    Hi Alll,
    I have a CUOM Version 2.3 which shows mutiple notifications per Device for Event StoppedGSUPerformancePolling with same time stamps. The message below is generated from the default All_Events for all devices.
    Does anyone have a solution for that.
    Regards Michael
    This message is generated 8 times with the same time stamp in all messages.
    ** This message is generated from Cisco Unified Operations Manager **
    ALERT ID                = 00012OW
    CREATION TIME           = Sat 30-Oct-2010 16:31:57 CEST
    MODIFIED TIME           = Sat 30-Oct-2010 17:00:58 CEST
    STATUS                  = Active
    SEVERITY                = Critical
    MANAGED OBJECT          = 183.201.141.193
    MANAGED OBJECT TYPE     = VoiceGateway
    ASSOCIATED EVENTS       =
        Cleared:183.201.141.193:Unresponsive
        Active:183.201.141.193:StoppedGsuPerformancePolling
    CUSTOMER IDENTIFICATION = Voice Port
    CUSTOMER REVISION       = Voice Port

    if you get SNMP timeout on multiple devices then the fault usually lies in the path that the polling follows to get to these devices and back to the server.
    The problem obviously lies in the part path they have in common.
    It is not unusual to see the highest backbone loads during the night, due to backups being taken.
    Make sure the most important inter-switch links have no errors.
    I would rather fix this then turn off alerting.
    Cheers,
    Michel

  • Multiple sources for address book

    Is there a way to keep different sources for addresses separate and discrete in Address Book? For instance, we have our own addresses from iCloud, but I also have addresses coming from Google Mail. We've worked hard to keep the iCloud ones updated and "clean", whereas the Google Mail ones are a bit messier. Is there a way to keep them distinct when importing/subscribing from Address Book? Or, does all the information end up getting merged?
    Thanks,
    John

    Hi,
    Pete_Sg1 wrote:
    I need to write a query whiich returns book details but it should identify records (ie. Titles) with multiple authors and return the record with Authors separated with pipe ('|') like (no need of SURRID column )Get there : {message:id=9360005}
    and scroll down to "string aggregation"
    Pete_Sg1 wrote:
    A table storing book details can only be designed like above. Right ? I mean, the duplication of records for one book because of multiple authors cannot be avoided. Right ? I would have had a table for books, and a separate one for authors, and a 3rd one for their relations :
    create table books
    book_id integer,
    title varchar2(100),
    etc...
    create table authors
    author_id integer,
    name varchar2(100),
    etc...
    create table book_authors
    book_id integer,
    author_id integer
    );You could also have only 2 tables book and authors (with authors table having a fk column to book_id).
    It would depends if the author is supposed to remain unique throught different books.
    - The 3 tables model would allow a single update on author information to be automatically "propagated" to all book he participed in.
    - The 2 tables model would allow to have different information for each participation of the author to different books (but would certainly "duplicate" part of the data about the author)
    One can also have even more tables to totally avoid data "duplication".

  • Multiple recipients for event notifications/alarms

    Is it possible to send event notifications to mutiple email address.
    We use Convergence with latest patch level and Calendar Server 6.3
    Thanks for any hints or howtos
    Edited by: toni1988 on 30.04.2013 08:52

    I believe Calendar Server 6 supports only one notification address. CS7 supports multiple.

  • Actionscript 3 - Multiple variables for event listener.

    Ok, I have a question (of course that is the reason why I am here).  I have been focusing on PHP a lot lately and just had a client that requires an MP3 player playing multiple songs so I had to whip out my rusty actionscript skills.  I have the player completed and it is working as desired.  The down side is it has multiple songs.  I am using separate functions for each song and separate event listeners.  My main question is there a way to combine these funtions into one and just use the event listener to pass another variable to the functions?  Below is a sample of one of the code for Song1.  I would like to make it so anywhere there is Song1 in the code, I can make it a variable so I can put in for example (Song2, Song3, Song4, etc.)  This way, I can have one or two functions handle all the songs instead of having to copy, paste and then find and replace.
    Thanks for the help!
    // Song 1
    var Song1:Sound = new Sound();
    pbSong1.source = Song1;
    //pbSong1.visible = false;
    var Song1Loaded:Boolean = false;
    pbSong1.addEventListener(Event.COMPLETE, Song1LoadComplete);
    btnSong1Play.addEventListener(MouseEvent.CLICK, Song1Play);
    btnSong1Stop.addEventListener(MouseEvent.CLICK, Stop);
    function Song1Play(event:MouseEvent) {
         if (Song1Loaded == true) {
              sndchnlMain.stop();
              sndchnlMain = Song1.play();
         } else {
              pbSong1.visible = true;
              Song1.load(new URLRequest("media/music/Song1.mp3"));
    function Song1LoadComplete(event:Event) {
         trace("Size of file: " + Song1.bytesTotal);
         Song1.close();
         Song1Loaded = true;
         if(sndchnlMain) {
              sndchnlMain.stop();
         sndchnlMain = Song1.play();
         pbSong1.visible = false;

    But if I reset the bolean to false, if the visitor goes to replay that song, it will try to load the song again.  I did find away around having to the use the boolean value though and accomplish the same thing (I am loving this).  I am using:
    this["Song"+SongNum].bytesTotal
    If there are bytes, then the song is loaded OR loading.  In order to check if the song is completely loaded before it plays, I am using this:
    this["Song"+SongNum].bytesTotal == this["Song"+SongNum].bytesLoaded
    This elimates the need for the Boolean I was using.  Also instead of for each song defining:
    pbSong1.source = Song1;
    I am using the main function to do it for me:
    this["pbSong"+SongNum].source = this["Song"+SongNum];
    The reason why I asked about the Sound variable, I was currious if I could do the same with it as I did with the Progress Bar Source as shown above?  Instead of defining this first:
    var Song1:Sound = new Sound();
    Can I do this in the function:
    var this["Song"+SongNum]:Sound = new Sound();
    I tried it once but I got an error.
    Here is the new FULL updated code:
    import fl.controls.ProgressBar;
    import flash.events.ProgressEvent;
    import flash.events.IOErrorEvent;
    import flash.net.URLRequest;
    import flash.media.SoundChannel;
    import flash.media.Sound;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.display.MovieClip;
    var sndchnlMain:SoundChannel;
    ClearNowPlaying();
      Song 1 Definitions
    var Song1:Sound = new Sound();
    pbSong1.addEventListener(Event.COMPLETE, LoadComplete);
    btnSong1Play.addEventListener(MouseEvent.CLICK, PlaySong);
    btnSong1Stop.addEventListener(MouseEvent.CLICK, Stop);
      Song 2 Definitions
    var Song2:Sound = new Sound();
    pbSong2.addEventListener(Event.COMPLETE, LoadComplete);
    btnSong2Play.addEventListener(MouseEvent.CLICK, PlaySong);
    btnSong2Stop.addEventListener(MouseEvent.CLICK, Stop);
      Song 3 Definitions
    var Song3:Sound = new Sound();
    pbSong3.addEventListener(Event.COMPLETE, LoadComplete);
    btnSong3Play.addEventListener(MouseEvent.CLICK, PlaySong);
    btnSong3Stop.addEventListener(MouseEvent.CLICK, Stop);
      Song 4 Definitions
    var Song4:Sound = new Sound();
    pbSong4.addEventListener(Event.COMPLETE, LoadComplete);
    btnSong4Play.addEventListener(MouseEvent.CLICK, PlaySong);
    btnSong4Stop.addEventListener(MouseEvent.CLICK, Stop);
      Song 5 Definitions
    var Song5:Sound = new Sound();
    pbSong5.addEventListener(Event.COMPLETE, LoadComplete);
    btnSong5Play.addEventListener(MouseEvent.CLICK, PlaySong);
    btnSong5Stop.addEventListener(MouseEvent.CLICK, Stop);
      Universal Functions
    function Stop(event:MouseEvent) {
         sndchnlMain.stop();
         ClearNowPlaying();
    function PlaySong(event:MouseEvent) {
         var SongNum:int = Number(event.currentTarget.name.split("btnSong").join("").split("Play").join(""));
         if (this["Song"+SongNum].bytesTotal) {
              if (this["Song"+SongNum].bytesTotal == this["Song"+SongNum].bytesLoaded) {
                   sndchnlMain.stop();
                   ClearNowPlaying();
                   this["NowPlayingSong"+SongNum].visible = true;
                   sndchnlMain = this["Song"+SongNum].play();
         } else {
              this["pbSong"+SongNum].source = this["Song"+SongNum];
              this["pbSong"+SongNum].visible = true;
              this["Song"+SongNum].load(new URLRequest("media/music/Song"+SongNum+".mp3"));
    function LoadComplete(event:Event) {
         var SongNum:int = Number(event.currentTarget.name.split("pbSong").join(""));
         trace("Size of file: " + this["Song"+SongNum].bytesTotal);
         this["Song"+SongNum].close();
         this["Song"+SongNum+"Loaded"] = true;
         if(sndchnlMain) {
              sndchnlMain.stop();
         ClearNowPlaying();
         this["NowPlayingSong"+SongNum].visible = true;
         sndchnlMain = this["Song"+SongNum].play();
         this["pbSong"+SongNum].visible = false;
    function ClearNowPlaying() {
         NowPlayingSong1.visible = false;
         NowPlayingSong2.visible = false;
         NowPlayingSong3.visible = false;
         NowPlayingSong4.visible = false;
         NowPlayingSong5.visible = false;

  • Adding a filename label to multiple images for a book

    Hi. I have finally convinced my studio to go Mac and we are presently playing with a trial version of Aperture.
    I am presently trying to create a new book using the Stock book theme, to create a book of thumbnails. I have taken out all the text boxes and made a page - creating the thumbnails the right spacing and size, but now I am trying to add labels to each thumbnail. I have successfully created a label linked to the meta data (file name) but I want this to apply to all the images. I have about 400 images so as you can imagine don't want to click new label for each one. I have tried to copy and paste the caption but all it seems to do is repeat the same file name, so I have 30 pages all labeled 001.jpg.
    Can anyone help? I'm sure in true Apple fashion its quite simple, but I still have not worked it out and am running out of time.
    Any help would be greatly appreciated.
    Thanks
    Hannah

    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    However, you can only send 4 pics at a time to an external editor.
    Regards
    TD

  • Shared Storage to handle multiple seats for UHD-4k,8k and larger res-am I dreaming?

    Is this possible?
    In our shop we work in very large canvases in AE and PPro for Live Event Production. Lots of compositing in 4k up to and sometimes beyond 8k. AE for the heavy compositing with mediocre RAM previews. PPro for PreViz playback with realtime performance a must in HD and most times in 4k.
    We have been working thru setting up appropriate workstations to handle the performance and are making progress. We have historically been on all Macs but branching out to PC for the better performance capabilities. And testing render farms for big renders.
    Storage is the next project. We have 10-15 AE artists and 5-8 PPro editors that would benefit form a shared storage solution. Is this possible with current storage technoloigy? Or would it be more efficient to look into local storage like SAS...or?
    Would appreciate any input.
    Oh...and this Adobe Anywhere sounds very interesting in our workflow....any opinions? Again....not talking about hd or lower res....4k and above.
    Thanks,
    -philc

    All that I know is from past discussions (see below) which indicate that you may not edit over a network connection (except Anywhere, which is a different product) so you will be limited to using any kind of shared storage only for "master" files that are copied to local drives for editing and then back when the edit is done
    But, since I don't do that kind of editing anyway, all I have are some saved links... and there may be newer products that will work for shared editing, not just store files
    Any version of Premiere doesn't work properly, if at all, over a network... so if it works at all, expect inconsistent behavior and problems
    -see messages #1 and #3 in http://forums.adobe.com/thread/771151
    -you MUST give all users administrator accounts to use Premiere
    -and especially Encore dual layer http://forums.adobe.com/thread/969395
    -#5 Server 2008 is UNsupported http://forums.adobe.com/thread/851602
    -a work around, of sorts http://forums.adobe.com/thread/957523
    -and not on a "domain" http://forums.adobe.com/thread/858977
    -http://helpx.adobe.com/premiere-pro/kb/networks-removable-media-dva.html

  • Multiple Places for Event Folder?

    I have a Christmas 2008 Event Folder - I went to 2 cities for this christmas - my family in Smithville, GA and my husbands family in Jonesville, GA... All the photos inside the folder are labeled according to each city, but...
    I would like to just have "one" event folder named: Christmas 2008. So when naming the Event Folder - do I have to choose which city I want to put as the place name, or is there a way to add both cities somehow?

    Yon can events and name them as you see fit
    If you adding a place to an event it is assigned to the event (everything in the event)
    YOu can select one or move photos and click on the "i" to turn them over and assign a place to them instead of assigning a lace to the entire event
    LN

  • Using multiple themes for photo book

    Is there a way that one can create a photo book using different "themes" throughout? Say if I want one page to be "Tropical" and another with "Modern"........is such modifications allowed? Thanks in advance.

    The Print to PDF->Save PDF to iPhoto only creates a 200 dpi jpg image of each page. You can edit that Automator workflow and change the dip to 300, what iPhoto uses when it converts the book to pdf for uploading and printing. Or you can download an edited +Save PDF to iPhoto 300 DPI.workflow+ from Toad's Cellar and place it in the HD/Library/PDF Services folder.

  • Can I use the same email address for multiple seats in Creative Cloud for Teams?

    Can I use the same email address for multiple seats in Creative Cloud for Teams?

    No. http://www.adobe.com/products/creativecloud/faq.html
    Can I buy more than one membership to an individual offering of Creative Cloud? 
    No, Adobe has moved to identity-based licensing with a technology that will not support multiple same-product licenses, so you can buy only one membership per Adobe ID. If you need two Creative Cloud memberships, you will need to purchase each with a unique Adobe ID. You can also purchase a Creative Cloud for teams membership, which allows you to purchase and manage multiple seats under one account.

  • Multiple lines of event title and location failed to show for All Day event in SharePoint 2010 Calendar

    I have a calendar with SPD workflow to display multiple lines for Title, Attendees, Location.
    1. Created a custom columne "Breaklines" and set to "Multiple lines of text"
    2. Set Monthly View to display the "Breaklines"
    3. in SPD I created a workflow like this:
    4. On the Calendar page, I used a javascript to remove the <br/>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"
    type="text/javascript"></script><script
    type="text/javascript">
    function updateCalendarWeekday()
       $('.ms-acal-title').each(function(){
        var str = $(this).html();
        str = str.replace(/&lt;/g,
    "<");
        str = str.replace(/&gt;/g,
    ">");
        $(this).html(str);
    _spBodyOnLoadFunctionNames.push('calendarEventLinkIntercept');
    // hook into the existing SharePoint calendar load function
    function calendarEventLinkIntercept()
       var OldCalendarNotify4a
    = SP.UI.ApplicationPages.CalendarNotify.$4a;
       SP.UI.ApplicationPages.CalendarNotify.$4a
    = function ()
          OldCalendarNotify4a();
          updateCalendarWeekday();
    }</script><style>
    .ms-acal-item
                    HEIGHT:
    60px !important
    .ms-acal-summary-itemrow
                    HEIGHT:
    85px !important
    }</style>
    Everything works fine, except that when the All Day event is checked, the display screwed like this:
    I guess that when the event is All Day Event, the Start Time and End Time is not filled by the user (although they show in the form as 12:00 am -11:59PM), so the top line space is now used to display Title and Location. Since the Top Space for
    Start and End Time is a single line, it displays everything on one line. Plus the script does not act on this space.
    Does anyone know a fix for this problem?
    Thanks for any tips!

    Is there a way to modify the javescript so that it also works in the "start-end time" space?

  • Event booking entries created for failed payments

    We accept credit card payments on our event booking forms. In the event that the customer makes an error in entering their payment information, the page correctly detects the error and reports it.
    However, attempt is seen as a "failed payment" and an event booking with a status of Failed is created for this event.
    Is there a way to prevent failed attempts from creating an entry in the event booking list?

    I've inserted the form onto the web app item detail page using the following code which references a .tpl file where the form is located:
    <div id="booking-form">{module_booking,i,{tag_booking id}
    template="/ModuleTemplates/Events/{tag_payment type}.tpl"}</div>
    The form has the auto-responder turned on but as mentioned, when I test the form it doesn't send the contents of the auto-responder from the form, it sends something different as mentioned in the original post.
    I actually saw a tutorial on this at the following site:
    Handle Paid and Unpaid Event Registrations with Business Catalyst
    It didn't mention the auto-responder though.
    Maybe because of the way I've set it up, perhaps it's not possible to send the auto-responder from the original form, do you think?

  • When importing my address book from Outlook why do I have multiple entries for the same contact?

    I have an address book and it contains one list in Outlook. I just downloaded Thunderbird and imported my address book. The address book and one list imported very easily but there are anywhere from 3-5 entries for each person in my contacts. If I delete the extras they are removed from my list as well. Why are there multiple listings for each contact and how can I remove the duplicates without losing my list entries?

    as I was looking thru pictures in my finder I noticed there were several copies of the same pictures I had taken yesterday. I just went thru all Seven copies of the pictures (accidental pics of my hands and the desk etc) and right clicked and moved  them to trash, then I thought I'd look it up when I realized its not just these pics, but very many had een stored in groups of three or four.
    1. Why is that?
    Depends on where you saw them - If they were in the iPhoto library iPHoto has either two or three different versions (no duplicates) or each photos in its library - this is not optional and can not be changed  --  If they were not in the iPhoto library then you can do what you please with them and they have nothing to do with iPhoto - iPhoto is only involved with the photos in its library
    2. Why is it advised to NEVER make changes to the structure or contents of iPhoto in Finder?
    (as quoted Below)
    "I would suggest using one of the proven safe programs - if you are going to manually remove them be sure to remember that you NEVER make any chnages to the structure or contents of the iPhoto library using the finder - only make changes using iPhoto"
    Very simple - if you do you will destroy your iPhoto library and have to start over losing all work you have done in iPhoto - The iPHoto library is a SQLite database and there are NO user servicable parts in the iPhoto library and any changes made using teh finder will corrupt the database and cause dataloss
    Is that a good enopugh reason for you?
    So if these photos were in the iPhoto library when you
    I just went thru all Seven copies of the pictures (accidental pics of my hands and the desk etc) and right clicked and moved  them to trash,
    You destroyed your iPhoto library and will either have to restore your backup from before you did this. put everything back EXACTLY like it was before or start over
    LN

Maybe you are looking for

  • JSP, Tomcat 5, Oracle9i

    Hi everyone, My Tomcat 5 runs OK with JSP files that don't need access to any database. However, I got error message when running any JSP files that need access to Oracle9i. Below is my "test.jsp" that will get error when running http://localhost/tes

  • Photoshop CS5 crashing whilst saving

    Hi, Recently Photoshop CS5 has started crashing at least once per day. It always happens whilst trying to save a document. I've looked up the error in this forum but can't find any solution. Can anyone help? Thanks Process:         Adobe Photoshop CS

  • Has anyone successfully managed to get VZW to raplace Fascinate with a different phone?

    Has anyone successfully managed to get VZW to raplace Fascinate with a different phone? If so, could you share with me on how you convinced VZW to do it?(which department?) I love my Fascinate, but not when it can't get calls.  I would prefer to have

  • I have a new Mac book pro

    help, I have got a new Mac Book Pro and my wife has my old one. I want to compltetly change the details on hers so it does noes not think it is still mine !! I want to change the auto address fill option when filling out forms. I have altered the det

  • Missing message on JOptionPane.showMessageDialog

    Hi, I created two JTrees and drew a line from a node in one tree to a node in another tree. After the mouse was released, I showed a message using JOptionPane.showMessageDialog(null, message). The message was not displayed. But if I show the message