Sharing presentations online privately

We created a presentation in keynote for an important client. He's requested that we give him the ability to share the slide show with individuals over the internet. He also wants to be able to make it, not only private, but also only temporarily viewable by the individual. Ideally he would be able to set up temporary accounts to let them in the site to view the presentation, then delete their account after a period of time. Obviously the system would have to be very user friendly for him. We thought to use Slideshare. It gives a private link but that link can be passed around so that won't work. Any methods to accomplish this or workarounds?

sliderocket guys.... sliderocket.

Similar Messages

  • The iWork Public Beta allowed me to share Keynote presentations with anyone via the web. How can I share a Keynote presentation online via iCloud? Must the presentation be downloaded to view?

    The iWork Public Beta allowed me to share Keynote presentations with anyone via the web. Now Apple tells me the Public Beta is being replaced by iCloud. How can I share a Keynote presentation online via iCloud? Must the presentation be downloaded to view?

    iCloud is not designed for sharing data with other people: you will need a third-party alternative such as DropBox or Sugarsync.
    More details here (written for migrators from MobileMe but the basic information may be helpful):
    http://rfwilmut.net/migrate3

  • Sharing iCal online

    Prior to the latest system upgrade and switch from me.com to mac.com we were able to subscribe to iCal across our network. Now, we are not able to subscribe unless we all upgrade to the latest system. This is not going to happen. Does anyone have a solution such as sharing the online Calendar for older Macs and non-Mac users to acess iCal information?
    Thanks

    Which version do you use in windows? See the following note:
    +Microsoft Outlook+
    +Microsoft Outlook also supports iCalendar, though there are some known problems with its support (many of which can be fixed by installing patches) [1]; in particular, Outlook 2000 users cannot process iCalendar files created by Outlook 2002 without patching because Outlook 2000 has an error in its iCalendar implementation [2]. Users of Outlook must configure their mail program to use open Internet standards instead of Microsoft's proprietary specifications. [3] [4] [5] Users of Microsoft Outlook 2003 can install RemoteCalendars in order to subscribe, delete and reload a generic iCalendar through the web.+
    +On import of some iCalendar files, Outlook 2003 will complain "You have attempted to save a recurring Lunar appointment in iCalendar format. To avoid this error, set the appointment option to Gregorian instead of Lunar.". Outlook requires the iCalendar file have lines UID, DTSTAMP, and METHOD:PUBLISH in order to avoid this nonsense error. This error will also be presented if there are other errors in the iCalendar file, such as a DESCRIPTION-tag that spans multiple lines without proper folding.+
    +Outlook 2007 is compatible with the calendaring component of the iCalendar protocol only. Users can add calendars under Account Options and set how often they should be updated. Individual calendars are shown as a list of checkboxes so that they can be viewed or hidden without unsubscribing, and they can be viewed as separate tabs or overlaid into a single calendar. Because Outlook only synchronises calendars, the other components of this protocol such as VTODO, VJOURNAL, etc. are not supported by Outlook 2007, even though equivalent functionality is offered in all cases.+
    +Windows Calendar, found in the newly released Windows Vista, also supports iCalendar. The Microsoft Works Calendar also supports iCalendar.+
    also have you copied the url in the right format in the url box in ical?

  • In a future version of ibook author would be very useful to provide for the creation of shared content online. Teachers can collaborate on the creation of a text. Very useful for teachers to collaborate in the network. sharing sharing sharing

    in a future version of ibook author would be very useful to provide for the creation of shared content online.
    Teachers can collaborate on the creation of a text. Very useful for teachers to collaborate in the network. sharing sharing sharing

    As always, feel free to use the 'Provide iBooks Author Feedback' menu item for features you'd like added in the future, etc. 
    http://www.apple.com/feedback/ibooks-author.html

  • Are PL/SQL Package Body Constants in Shared Area or Private Area

    Based on this it not clear to me if PL/SQL Package Body Constants are stored in shared area or private area.
    http://docs.oracle.com/cd/B28359_01/server.111/b28318/memory.htm
    "PL/SQL Program Units and the Shared Pool
    Oracle Database processes PL/SQL program units (procedures, functions, packages, anonymous blocks, and database triggers) much the same way it processes individual SQL statements. Oracle Database allocates a shared area to hold the parsed, compiled form of a program unit. Oracle Database allocates a private area to hold values specific to the session that runs the program unit, including local, global, and package variables (also known as package instantiation) and buffers for executing SQL. If more than one user runs the same program unit, then a single, shared area is used by all users, while each user maintains a separate copy of his or her private SQL area, holding values specific to his or her session.
    Individual SQL statements contained within a PL/SQL program unit are processed as described in the previous sections. Despite their origins within a PL/SQL program unit, these SQL statements use a shared area to hold their parsed representations and a private area for each session that runs the statement."
    I am also curious what are the fine grained differences from a memory and performance perspective (multi-session) for the two examples below. Is one more efficient?
    Example 1.
    create or replace
    package body
    application_util
    as
    c_create_metadata constant varchar2(6000) := ...
    procedure process_xxx
    as
    begin
    end process_xxx;
    end application_util;
    vs.
    Example 2.
    create or replace
    package body
    application_util
    as
    procedure process_xxx
    as
    c_create_metadata constant varchar2(6000) := ...
    begin
    end process_xxx;
    end application_util;

    >
    What i am asking is fairly granular, so here it is again, let's assume latest version of oracle..
    In a general sense, is the runtime process able to manage memory more effectively in either case, one even slightly more performant, etc
    ie does example 1 have different memory management characteristics than example 2.
    Specifically i am talking about the memory allocation and unallocation for the constant varchar2(6000)
    Ok, a compiler's purpose is basically to create an optimized execution path from source code.
    The constant varchar2(6000) := would exist somewhere in the parse tree/execution path (this is stored in the shared area?).
    I guess among the things i'm after is
    1) does each session use space needed for an additional varchar2(6000) or does runtime processor simply point to the constant string in the parse tree (compiled form which is shared).
    2) if each session requires allocation of space needed for an additional varchar2(6000), then for example 1 and example 2
    at what point does the constant varchar allocation take place and when is the memory unallocated.
    Basically does defining the constant within the procedure have different memory characteristics than defining the constant at the package body level?
    >
    Each 'block' or 'subprogram' has a different scope. So the 'constant' defined in your example1 is 'different' (and has a different scope) than the 'constant' defined in example2.
    Those are two DIFFERENT objects. The value of the 'constant' is NOT assigned until control passes to that block.
    See the PL/SQL Language doc
    http://docs.oracle.com/cd/E14072_01/appdev.112/e10472/fundamentals.htm#BEIJHGDF
    >
    Initial Values of Variables and Constants
    In a variable declaration, the initial value is optional (the default is NULL). In a constant declaration, the initial value is required (and the constant can never have a different value).
    The initial value is assigned to the variable or constant every time control passes to the block or subprogram that contains the declaration. If the declaration is in a package specification, the initial value is assigned to the variable or constant once for each session (whether the variable or constant is public or private).
    >
    Perhaps this example code will show you why, especially for the second example, a 'constant' is not necessarily CONSTANT. ;)
    Here is the package spec and body
    create or replace package pk_test as
      spec_user varchar2(6000);
      spec_constant varchar2(6000) := 'dummy constant';
      spec_constant1 constant varchar2(6000) := 'first constant';
      spec_constant2 constant varchar2(6000) := 'this is the second constant';
      spec_constant3 constant varchar2(6000) := spec_constant;
      procedure process_xxx;
      procedure change_constant;
    end pk_test;
    create or replace package body pk_test as
    procedure process_xxx
    as
      c_create_metadata constant varchar2(6000) := spec_constant;
    begin
      dbms_output.put_line('constant value is [' || c_create_metadata || '].');
    end process_xxx;
    procedure change_constant
    as
    begin
      spec_constant := spec_constant2;
    end change_constant;
    begin
      dbms_output.enable;
      select user into spec_user from dual;
      spec_constant := 'User is ' || spec_user || '.';
    end pk_test;The package init code sets the value of a packge variable (that is NOT a constant) based on the session USER (last code line in package body).
    The 'process_xxx' procedure gets the value of it's 'constant from that 'non constant' package variable.
      c_create_metadata constant varchar2(6000) := spec_constant;The 'change_constant' procedure changes the value of the package variable used as the source of the 'process_xxx' constant.
    Now the fun part.
    execute the 'process_xxx' procedure as user SCOTT.
    SQL> exec pk_test.process_xxx;
    constant value is [User is SCOTT.].Now execute 'process_xxx' as another user
    SQL> exec pk_test.process_xxx;
    constant value is [User is HR.].Now exec the 'change_constant' procedure.
    Now exec the 'process_xxx' procedure as user SCOTT again.
    SQL> exec pk_test.process_xxx;
    constant value is [this is the second constant].That 'constant' defined in the 'process_xxx' procedure IS NOT CONSTANT; it now has a DIFFERENT VALUE.
    If you exec the procedure as user HR it will still show the HR constant value.
    That should convince you that each session has its own set of 'constant' values and so does each block.
    Actually the bigger memory issue is the one you didn't ask about: varchar2(6000)
    Because you declared that using a value of 6,000 (which is 2 ,000 or more) the actual memory allocation not done until RUN TIME and will only use the actual amount of memory needed.
    That is, it WILL NOT pre-allocate 6000 bytes. See the same doc
    http://docs.oracle.com/cd/E14072_01/appdev.112/e10472/datatypes.htm#CJAEDAEA
    >
    Memory Allocation for Character Variables
    For a CHAR variable, or for a VARCHAR2 variable whose maximum size is less than 2,000 bytes, PL/SQL allocates enough memory for the maximum size at compile time. For a VARCHAR2 whose maximum size is 2,000 bytes or more, PL/SQL allocates enough memory to store the actual value at run time. In this way, PL/SQL optimizes smaller VARCHAR2 variables for performance and larger ones for efficient memory use.
    For example, if you assign the same 500-byte value to VARCHAR2(1999 BYTE) and VARCHAR2(2000 BYTE) variables, PL/SQL allocates 1999 bytes for the former variable at compile time and 500 bytes for the latter variable at run time.
    >
    So when you have variables and don't know how much space is really needed do NOT do this:
    myVar1 VARCHAR2(1000);
    myVar2 VARCHAR2(1000);
    myVar3 VARCHAR2(1000);The above WILL allocate 3000 bytes of expensive memory even if it those variables are NEVER used.
    This may look worse but, as the doc states, it won't really allocate anything if those variables are not used. And when they are used it will only use what is needed.
    myVar1 VARCHAR2(2000);
    myVar2 VARCHAR2(2000);
    myVar3 VARCHAR2(2000);

  • Initiating Shared or Online PDF Review & Commenting from ES

    Does anyone know if it is possible to initiate a Shared or Online Review / Commenting process from LiveCycle ES ?
    I have a process where at a mid point the 'doucment' (e.g. a form) needs to be sent to 10-20 different people to get their input before the process is finalised.
    I know how to convert the form to a Flat PDF and ARE it with Commenting Enabled and eMail it etc - but not how to initiate a Shared / Online review.
    It's easy to do from Acrobat 8 manually but I can't see any 'Review/Comment' type facility in ES.
    Thanks - Stuart

    Hi
    We have a component which allows voting.
    See:
    http://avoka.dnsalias.com/confluence/display/Public/Group+Voting+in+LiveCycle
    For more details.
    It supports arbitrary numbers of voters, and has several different ways of "counting the votes".
    You can download a free trial here:
    http://www.avoka.com/apps/checkcookie?qpac=y&qpac_code=avokaESComponents&location=%2Fapps% 2Fqpacdownload
    Howard
    http://www.avoka.com

  • PowerPoint - Present Online - Error starting online presentation - Cannot connect to this service. Check your network connection and try again.

    "Present Online
    Error starting online presentation
    Cannot connect to this service. Check your network connection and try again."
    On March 31, we starting experiencing this issue across our entire domain. We have not made any changes to our network configuration. We are using the same ISP, routing hardware, computer hardware, software versions and group policy settings as we were on March
    30.
    The issue appears to be related to network connectivity. 
    Here is what I have found so far:
    We have three networks in our building and two ISPs.
    Network-A uses ISP-A and is affected by the issue. Network-A is our corporate domain.
    Network-B uses ISP-B and is affected by the issue.
    Network-C uses ISP-B and is not affected by the issue.
    If I take a Network-A domain member and launch PowerPoint while connected to Network-A and ISP-A I am unable to upload PowerPoint presentations. 
    If I connect the same computer to Network-C, the issue persists.
    If I close PowerPoint, connect to Network-C, and reopen PowerPoint while connected to Network-C, I am able to upload presentations.
    A non-domain computer is affected by the issue if PowerPoint is opened while connected to Network-A or Network-B, but unaffected if PowerPoint is launched while connected to Network-C. Again, in this scenario, switching connections while PowerPoint is open
    has no effect.
    The issue appears to be caused during PowerPoint start-up and not while attempting to share a document.
    Microsoft is either unwilling or unable to find a resolution and has finally resorted to simply ignoring my calls, voicemails, emails, and ticket requests regarding this issue. Any suggestions would be greatly appreciated.
    Here is a brief description of our configuration and what I have tried so far.
    Windows Installer Version    5.0.7601.18493
    OS Details                   Microsoft Windows 7 Enterprise , SP 1, Version: 6.1.7601, Codepage: 1252, Country Code: 1, Language: 1033, System Type: x64-based PC
    Microsoft Office 365 ProPlus - en-us 
    ProductVersion 15.0.4701.1002
    License Family: OfficeO365ProPlusR_Subscription1
    License Status: 1 - LICENSED
    Intel Core i3
    4GB DDR
    ISP-A => 100mb fiber
    ISP-B => 30/50mbps down / 3/5mbps up cable
    Clearing the internet cache
    Clearing the OneDrive cache
    Adding all related office.live URLs to trusted sites
    Selecting lowest security settings for trusted sites
    Changing permissions on the .ppt file to allow full permissions to everyone
    Creating a blank PowerPoint presentation
    Changing the location of the .ppt file to the local drive's user folder
    Upgrading Office
    Repairing Office
    Downgrading Office
    Installing Skype (Microsoft recommendation)
    Leaving the domain
    Rebooting the routers and switches on Network-A
    Rebooting the router on Network-B
    Upgrading the firmware for the router on Network-B
    Disabling the firewall on Network-B
    Enabling the firewall on Network-C(in an attempt to induce the problem)

    The problem seems to have fixed itself, the computer may just have needed to be restarted.

  • How can I do an APP presentation online while using my Iphone?

    how can I do an APP presentation online while using my Iphone?

    You cannot use other countries itunes stores.
    Sorry

  • Hi,  I'm looking for a online private tutor for teaching me Adobe Premiere Elements 8 through  remote cessions and Skype.  Willing to pay a good price for good tuition!  Please contact me asap  if you can help.  Thanks,  J Sussholz

    Hi,
    I'm looking for a online private tutor for teaching me Adobe Premiere Elements 8 through  remote cessions and Skype.
    Willing to pay a good price for good tuition!
    Please contact me asap if you can help.
    Thanks,
    J Sussholz

    Jacqui,
    I stongly believe that Steve has given you the best advice. Actually, it's the same advice that I would have given you, if I had seen your post first!
    I can verify that his books will give you more info, and in a more usable form, than tutoring, or even in-class, hands-on schooling will. Almost anything that can be done with the program (he also has a companion book for Photoshop Elements, which is often bundled with PrE) is covered in easy to understand detail.
    After reading through, and working along, his second bit of advice, Muvipix, is also sound. Between this, and Muvipix fora (Community tab), there have been very few questions that could not be answered. Muvipix also is a great resource for additional articles on how things are done, plus tutorials.
    I also recommend that one take an hour and read through both the FAQ and Tips & Tricks articles, found to the right of the PrE forum main page. I would read Steve's book first, so terms, etc. would be most clear.
    There are two on-line training sites, that get great reviews: www.lynda.com and www.ltotaltraining.com. I have not subscribed to either, but have used the materials furnished from them with various Adobe programs. I also have several of the lynda.com books on various programs, and they are well-written. Now, they are NOT one-on-one tutoring, which is what you are looking for. They also probably do not cover PrElements, but that is just my guess. If they do, they would be another good source of training, though it's through tutorials, and not direct instruction.
    This is just my 02¢'s worth of thought.
    Good luck,
    Hunt

  • Sharing Keynote online

    Does anyone know way to export Keynote presentation into online e.g. html5 with transitions etc..?
    Feels very 90's of emailing presentations or using dropbox or yousendit..waiting it to upload and then download. Would be neat to export Keynote into web and share a link where to watch it so people could see it as is with all the cool animations / transitions.

    The numbers I quoted there were from speedtest.net. If you want to know what my ISP says they provide, I'm afraid I don't know.
    So passing those hurdles, what in particular do I need to do in order to allow someone external to my network access a web server, assuming I can host one?
    Enter your router configuration screen and search for Port Forwarding or something similar. You must forward request coming from TCP port 80 towards TCP port 80 of your Mac's local IP address.
    On your Mac, simply enable Web Sharing. If it is the first time you enable Web Sharing, also click on Create Personal Website Folder, which creates the folder Sites inside your home folder.
    Put files you intend to share into
    ~/Sites
    Your personal site is available to the outside world at this address
    http://yourWanIP/~your_username/
    You may want to create one or more subfolders into ~/Sites and give the exact path to your correspondent like this
    http://yourWanIP/~your_username/family
    http://yourWanIP/~your_username/customers
    And here it is what he/she get
    To download the file ctrl+mouse_click on the file name, choose the appropriate option from the pop up menu.

  • Can you change a shared calendar from private to public?

    I created a shared private Calendar for my family. I would like to change it to a public calendar so I can view it in my MS Outlook for work. Is this possible to do without losing all of my current data?

    Thank you for that, however I am not given the option to select public nor private. The calendar is already being shared so when I select the share button next to the calendar, the only items I see are the email addresses of the people I am sharing the calendar with.

  • File sharing using accounts: private shares on main TC drive only

    Is there a way to use "accounts" file sharing mode and allow users to have private sections of USB drive(s)? When I attach USB drives in "accounts" mode, it creates a "shared" folder on the file system, and all files placed there by any users are read/writable by all other users. The only place a user can keep private files is on the onboard drive. This is not good! Any workaround? Did I miss a trick?

    CLARIFICATION:
    Hi!
    I've TC 1 TB, latest model (Early 2009 in Apple terms I suppose).
    Can I have private folders in EXTERNAL USB drive for accounts?
    I've created two user accounts via Airport Utility->Disks->Secure Shared Disks: With accounts.
    User account 1 sees three kind of Sharepoints via Time Capsule's entry under Shared-category in Finder:
    - external USB drive in whole (bad bad)
    - entry for main level so internal disk inside TC
    - dedicated account directory for this user account (let's say: account1) in TC's internal drive
    User account 2 sees:
    - external USB drive in whole (bad bad)
    - entry for main level so internal disk inside TC
    - dedicated account directory for this user account (let's say: account2) in TC's internal drive
    If wanted scenario isn't possible in TC, how about Airport Extreme, can disks be controlled there separately?
    Summa summarum: I'm trying to have poor man's fileserver in my home network. Target is to have common place for users' files (while maintaining privacy), so external USB drive for this purpose. TC's internal drive dedicated for Time Machine backups only.
    BR,
    -- MJo
    Message was edited by: mjoukain
    Message was edited by: mjoukain (clarifications, unable to cancel original message)

  • Question - sharing photos online

    I'm trying to share my photos online using photoshop.com.  (I'm an Elements 7 user).  When I try to share photos after creating an album, it directs me only to photoshop.com. When I try to sign into photoshop.com, using my user ID and password, it says I should try again later or may have a system 414 error.  This hasn't happened in the past.  In addition, I'm not provided with other sharing options (i.e. Shutterfly and others) which used to be available.  Any answers?

    This could be temporary issue can be caused by some server error at that time.  Please try again and see if it works.

  • Sharing files online

    Hi
    I have a simple requirement but all the online tutorials I have found don't seem to offer much help for Lion.
    I just want to use my new MacBook Pro to host a basic fileserver in order to transfer some large files over the internet.
    It seems that in older incarnation, when you activated Web Sharing, you were given an ip address which could be (I preseume?) access from outside the local network.
    If this wasn't the case, is there a way using Lion to host your own webserver. I am aware of the Lion Server which is available as a paid for app, but I do not wish to purchase it for such a simple process. Is there a way to open up a folder to the internet which I can download from when I am not connected to my local network from another computer?
    Sorry if this is a rehash of questions previously answered, but I wasn't able to find an acceptable solution.
    EDIT:
    Forgot to add that on the webpage that is accessable locally when I turn on web sharing, it says this:
    If you’re connected to the Internet, your website can also be available to friends everywhere. Just send them the address shown in Sharing preferences.

    The numbers I quoted there were from speedtest.net. If you want to know what my ISP says they provide, I'm afraid I don't know.
    So passing those hurdles, what in particular do I need to do in order to allow someone external to my network access a web server, assuming I can host one?
    Enter your router configuration screen and search for Port Forwarding or something similar. You must forward request coming from TCP port 80 towards TCP port 80 of your Mac's local IP address.
    On your Mac, simply enable Web Sharing. If it is the first time you enable Web Sharing, also click on Create Personal Website Folder, which creates the folder Sites inside your home folder.
    Put files you intend to share into
    ~/Sites
    Your personal site is available to the outside world at this address
    http://yourWanIP/~your_username/
    You may want to create one or more subfolders into ~/Sites and give the exact path to your correspondent like this
    http://yourWanIP/~your_username/family
    http://yourWanIP/~your_username/customers
    And here it is what he/she get
    To download the file ctrl+mouse_click on the file name, choose the appropriate option from the pop up menu.

  • Shared libraries AND private music folders?

    I have had my iTunes set up using a Shared folder for about three years now with great success being shared across 4 users on one Mac. Each user has their own iTunes folder and their own iTunes library. The iTunes Music folder is an alias (link) back to a folder by the same name in my Shared user account. As content gets added, I periodically run "Add to Library..." from the other accounts to pick up the new content.
    Now enter a maturing high school freshman daughter who needs to add a whole bunch of stuff I don't want access to. Namely, she has Berlitz German and Spanish language CD's that provide THOUSANDS of words - each as a separate audio track and each with a photo of that word stored as Album Artwork. So now, not only do I have thousands of 2 second tracks such as "pero" and "nacht", but my Coverflow has thousand of pictures of these objects. In addition, she has also started using GarageBand to make her own music, which also makes it's way into my previously pristine and well-managed shared Music Library.
    So, the question is, how can I allow a user to have BOTH read/write access to Shared Music Folder, AND have access to private Music folders within their account?
    Thanks for the suggestion

    No, but you can make a second copy of the song file, and have each library only see its own.

Maybe you are looking for

  • All-Day-Events Not affecting Availability

    Hi All, We have iCal server setup on 10.5.4 and I've come across a bug in the iCal client (3.05). If someone has created an event and checked it as All-Day, that event will not affect that users availability if someone else tries to add them as an at

  • Do we need anti virus softwares for Mac book pro?

    do we need antivirus softwares for mac book pro?

  • Problem Reinstalling Max OS 10.6 Server from Macbook....

    Hi, I have a urgent problem. I need to reinstall the Mac OS (10.6) on my newly bought mac mini server. I want to use the dvd-drive of my macbook (1. gen. Alu, 2008) running also Snow Leopard 10.6.6 Both (mac mini server + macbook) are connected via e

  • Event Handling Techniques with MVC

    Hello all, I have a situation where I have a model that can be thought of like a graph with many nodes and edges. I would like to create a view of this model with a customized JLabel that shows a data value for each node and edge in the model. The ev

  • New iMac - won't read Adobe 9 or 9_

    my new imac 27" OSX 10.6.2 won't read any PDF files. I get an error message saying "You can't open the appliation Adobe Reader because it is not supported on this type of Mac. i then went to the adobe web site and downloaded another version of Reader