PostCard Viewer - how to, for complete dummies!

I've found this HTML snippet at http://web.me.com/toad.hall/Demo_3/Postcard.html which would look great on a website I'm making. However, it's the first HTML snippet I've put in so far, so I'm a bit confused!
I know how to put the provided snippet into iWeb, but I don't understand the "URL to the index.html file that's created inside the slideshow folder on the hosting server" bit... Do I need to create a folder/index file on my FTP? And how to I then add the photos to the album in iWeb?
Please, treat me as a complete idiot & newcomer - I think I need the basics first!
Thanks,
greg

Do I need to create a folder/index file on my FTP
Yes.
Read this very very carefully :
If your postcard slideshow is in a folder titled PostcardViewer and you place it in your iDisk/Web/Sites folder the URL you would use in the code above would be http://web.me.com/MMeaccountname/SimpleViewerSS/PostcardViewer/index.html. The height and width on this example is 700 x 800.
but I don't understand the "URL to the index.html file that's created inside the slideshow folder on the hosting server" bit.
This is the URL to the index.html files that's created inside the slideshow folder on the hosting server :
http://web.me.com/MMeaccountname/SimpleViewerSS/PostcardViewer/index.html
Use you OWN URL to the server where you host your slideshow.
Instead of this part of the URL : web.me.com/MMeaccountname
Use this : www.yourowndomain.com/
<edited by host>

Similar Messages

  • How long for complete erase on TC?

    Selling my TC and I've got to erase everything, how long would that take? I'm using the "longest" and most secure option.

    The "Zero Out" option should be fine for most secure erase needs and will take 5-6 hours on average for a 1 TB drive. This replaces everything on the drive with zeros.
    "7 Pass" is a "Zero Out" option that makes 7 erase passes on the drive.  Allow 36-48 hours for this, on average
    As you might imagine, the next option "35 Pass" is going to take about 5+ times longer.

  • How to set View for Completed items inside Tasks?

    How to set button for 'View' and see Completed items or not completed inside Tasks?

    Hi,
    You want to set custom views for Tasks folder so that when we click a view button, it will show all Completed or incomplete tasks, am I correct?
    Which version of Outlook are you using? There are existing views for completed/incomplete tasks in Outlook. In Outlook 2010 and Outlook 2013, we can find the buttons under View tab > Change View. Click Completed button to view all completed
    tasks; Click Active button to view incomplete tasks.
    In Outlook 2007, just click View > Current View to switch between different views.
    If I've misunderstood something, please feel free to let me know.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How do I apply programmatic skins for completely custom drawn components of a Flex library project?

    Hello folks,
    I am looking for best practices advice when (1) creating
    custom components and (2) styling and skinning.
    I already know how to skin a component part of the Flex
    framework. I can make a class extending ProgrammaticSkin and have
    my component skinned using CSS to link the component with the
    reference to my custom class.
    However what about those cases when you are completely
    creating a component from scratch?
    Imagine a "Freehand Drawing Canvas" component that allows the
    user to draw on it and has some buttons to set color styles, line
    styles, etc., or imagine a "Screen Flow Gallery" component that
    displays visual objects in a fashion similar to Cover Flow in the
    Mac.
    In many components I am aware you may reuse other components
    part of the Flex framework but I am trying to picture an scenario
    where you would need to draw everything yourself because there just
    isn't something to base it upon so you will end up drawing it from
    scratch.
    To learn how instead of building one of those components I
    mentioned previously I decided to start with something simple that
    would illustrate this like a LiteButton component that will behave
    just like the Flex mx.controls.Button but will extend UIComponent
    and be completely custom drawn.
    The component will have a default look and will also be
    style-able and skin-able. I will provide styles for users of the
    component to modify and regarding skinning anyone can create a
    custom ProgrammaticSkin adding its own drawing logic and link it to
    the component via CSS with the ClassReference applied to the skin
    selector.
    So far so good and it's clear what I want to achieve. I
    actually know how to do most of the stuff here but I have one
    single problem.
    Here is my question, where should I put my custom drawing
    logic? If I do it in the updateDisplayList inside the class
    extending UIComponent it works, however I thought that it would be
    a better practice to do it using programmatic skins, that way I
    could provide different skin themes for my component set.
    The problem is that I can't make the programmatic work in
    this scenario. I tried instantiating the custom programmatic skin
    during the updateDisplayList of the LiteButton component and adding
    it to my display object via addChild but that didn't do anything. I
    also tried creating a "default.css" stylesheet and tried to use
    ClassReference as I would normally do to skin an already existing
    component (or composite component as well) but that didn't do
    anything either.
    So how do I apply programmatic skins for completely custom
    drawn components of my Flex library project?
    I could do it inside the updateDisplayList of the LiteButton
    class extending UIComponent but again I would like to provide
    different theme sets for my components so it makes sense using
    programmatic skins.

    "jbucaran" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello folks,
    >
    > I am looking for best practices advice when (1) creating
    custom components
    > and
    > (2) styling and skinning.
    >
    > I already know how to skin a component part of the Flex
    framework. I can
    > make
    > a class extending ProgrammaticSkin and have my component
    skinned using CSS
    > to
    > link the component with the reference to my custom
    class.
    >
    > However what about those cases when you are completely
    creating a
    > component
    > from scratch?
    >
    > Imagine a "Freehand Drawing Canvas" component that
    allows the user to draw
    > on
    > it and has some buttons to set color styles, line
    styles, etc., or imagine
    > a
    > "Screen Flow Gallery" component that displays visual
    objects in a fashion
    > similar to Cover Flow in the Mac.
    >
    > In many components I am aware you may reuse other
    components part of the
    > Flex
    > framework but I am trying to picture an scenario where
    you would need to
    > draw
    > everything yourself because there just isn't something
    to base it upon so
    > you
    > will end up drawing it from scratch.
    This may help with that
    http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_3.html
    > To learn how instead of building one of those components
    I mentioned
    > previously I decided to start with something simple that
    would illustrate
    > this
    > like a LiteButton component that will behave just like
    the Flex
    > mx.controls.Button but will extend UIComponent and be
    completely custom
    > drawn.
    >
    > The component will have a default look and will also be
    style-able and
    > skin-able. I will provide styles for users of the
    component to modify and
    > regarding skinning anyone can create a custom
    ProgrammaticSkin adding its
    > own
    > drawing logic and link it to the component via CSS with
    the ClassReference
    > applied to the skin selector.
    >
    > So far so good and it's clear what I want to achieve.
    Actually after
    > playing
    > with the weekend and today I know how to do most of the
    stuff but I have
    > one
    > single problem. So here is my question, where should I
    provide my custom
    > drawing logic? If I do it in the updateDisplayList
    inside the class
    > extending
    > UIComponent it works, however I thought that it would be
    a better practice
    > to
    > do it using programmatic skins, that way I could provide
    different skin
    > themes
    > for my component set.
    These aren't mutually exclusive. When you provide a skin with
    a
    TypeSelector, you have to add it to the display list
    somewhere, and this is
    typically done in updateDisplayList or addChildren. I prefer
    to do it in
    updateDisplayList, because you can then change it if the
    style changes.
    > The problem is that I can't make the programmatic work
    in this scenario. I
    > tried instantiating the custom programmatic skin during
    the
    > updateDisplayList
    > of the LiteButton component and adding it to my display
    object via
    > addChild but
    > that didn't do anything.
    Exactly what did you do?
    > I also tried creating a "default.css" stylesheet and
    > tried to use ClassReference as I would normally do to
    skin an already
    > existing
    > component (or composite component as well) but that
    didn't do anything
    > either.
    I've never had any problem using an approach similar to
    this...but I will
    say that I couldn't see any advantage in creating a
    default.css style sheet,
    since it's not really default in the way that the one that
    comes with Flex
    is. It's much more obvious to anyone using your component
    what's going on
    there if you create a style sheet where they're likely to
    spot it.
    > So how do I apply programmatic skins with the default
    look for custom
    > drawn
    > components?
    It seems like your approach is fine, but maybe you've made a
    mistake in your
    implementation.
    > I could do it inside the updateDisplayList of the
    LiteButton class
    > extending
    > UIComponent but again I would like to provide different
    theme sets for my
    > components so it makes sense using programmatic skins.
    You might want to consider also adding an instance of
    HaloBorder to your
    component. That brings a lot of functionality with it.
    HTH;
    Amy

  • How can I view my pictures that were backed up to iTunes? I no longer have an apple product but need to view the pictures for very important reasons.

    How can I view my pictures that were backed up to iTunes? I no longer have an apple product but need to view the pictures for very important reasons.

    If you mean backed up as part of an iPhone backup in iTunes?  If so, you would have to use 3rd party software to extract them from the backup, such as iPhone Backup Extractor.

  • HT1311 For some unknown reason I have two Apple ID/Accounts in operation which is causing an issue. How do I completely delete one of these Accounts?

    For some unknown reason I have two Apple ITunes/ID Accounts in operation.
    How do I completely delete one of these Accounts?

    I have a similar situation.. in my case, I started using an Apple ID a while back, then when MobileMe was introduced, I got an account there, and somehow that is the account that is mostly used when making updates or purchases.
    Sometimes when making updates, it prompts me for the PW for one account, and sometimes for the other.
    This is a real pain - is there anyway both these accounts can be consolidated into one?  When I asked an Apple rep, I was told 'no', but they have been known to make mistakes when giving advice.  So, is there a way?  Technically, I don't see this as a problem.. but Apple seems to be of the opinion that this would lead to having apps 'shared' amoung users. I think all that would be necessary if for me to provide the necessary proof that both accounts are indeed mine, and not belonging to someone else.
    If not, what about deleting the apps registered to one account, and then re-purchasing them with the other account?  To do this, I would need to identify which apps are registered to which accouts - is this possible? Most of my apps are free, but there are a few I paid for.. not many, so this possible solution might work and not cost too much.  Ideas?

  • How to activate completion for PHP in TextMate or  BBEDIT?

    Hi, I plan to use TEXTMATE or BBEDIT to program with PHP but I don't know how to install the Bundle or the plug-in for PHP Completion. I downloaded the plug-in PHPCodecompletion.tmbu and zipped it into user/library/application support/textMate/Bundles. I don't know how it works for BBedit.
    The question is: how to activate completion for PHP in TextMate or BBEDIT?
    Thanks for help.
    Kind regards
    Mac Book Pro Core Duo   Mac OS X (10.4.9)  

    I think you can make use of the Badi BADI_EXTEND_IDENTITY, Because this BAdi can be used based on filters and it has the methods which can let us know the before and after values of the  User Indentity from the method
    BADI_IDM_HR_COMMUNICATION       BADI_IDM_HR_COMMUNICATION     Implementation: Enhancement for Identity Management Functions
    And in this implementation try top check the method IF_BADI_EXTEND_IDENTITY~PRE_MODIFY_CHECK_IDENTITY

  • How to view Script Source for  Execution Method type = "Spawned" ?

    I finded Concurrent Program Executable of "Actual Cost Worker"
    Concurrent Program Executable Information
    Executable :CMCTCM
    Sort Name : CMCTCM
    Apllication : Oracle Bills of Mateial
    Description Unified : Cost Manager
    Execution Method : Spawned
    Excution File Name CMCTCM
    Subroutine Name :cmltcm
    I want to view script source for CMCTCM.
    But. Before I have not view "Spawned' script source.
    I only have tech PL/SQL, Form, Report source.
    How to confirm script source of Spawned type ?
    Message was edited by:
    roseok77
    Message was edited by:
    roseok77

    Try raising metalink TAR asking for the PRO*C source code.

  • V$parameter view - How do I get these values for both instances on the db?

    I have a procedure that dumps the contents of all the parameters from the system view v$parameter for auditing purposes, so that we know if a parameter changed from month to month, but we have 2 instances running. How do I make sure and log the parameters for both the instances? So far the procedure will log the parameters for the instance it happened to run on (it is random).
    However, when I use TOAD, I can access parameters for both instances by going to Database/Administer/Oracle Parameters.
    Thanks!

    Instead of V$PARAMETER use GV$PARAMETER so you can obtain the the instance id
    SQL> describe gv$parameter
    Name                                      Null?    Type
    INST_ID                                            NUMBER
    NUM                                                NUMBER
    NAME                                               VARCHAR2(80)
    TYPE                                               NUMBER
    VALUE                                              VARCHAR2(4000)
    DISPLAY_VALUE                                      VARCHAR2(4000)
    ISDEFAULT                                          VARCHAR2(9)
    ISSES_MODIFIABLE                                   VARCHAR2(5)
    ISSYS_MODIFIABLE                                   VARCHAR2(9)
    ISINSTANCE_MODIFIABLE                              VARCHAR2(5)
    ISMODIFIED                                         VARCHAR2(10)
    ISADJUSTED                                         VARCHAR2(5)
    ISDEPRECATED                                       VARCHAR2(5)
    ISBASIC                                            VARCHAR2(5)
    DESCRIPTION                                        VARCHAR2(255)
    UPDATE_COMMENT                                     VARCHAR2(255)
    HASH                                               NUMBER
    SQL>

  • How to find buyer in org structure for completion workflow

    Hi Experts,
    I have a doubt in org structure.As our client is saying that they implemented completion workflow to determine buyer and then approval workflow to determine the approvers.
    During completion workflow they are identifying the buyer using the org structure itself.
    How to identify immediate manager by looking at the org structure.(of course here it is Buyer for requestor ).
    Is there any attribute which gives the information

    Hi ,
    Well, are you working with PC or AC WFL? Anyway, usually for completion customer takes for example the users assigned to a concerning purchase group as to be the completioner. How to identy this in the org. level? You can con directly at PPOMA_BBP and check for this purchase organization  which users are assigned to it.
    In case of managers from  requestor, you can also see in the org. level. They are the users that uses a cap and are always assigned oe level above. There is the FM  which can be used to find the line manager assigned to the employee: RH_GET_LEADING_POSITION.
    I hope the above information helps you.
    Cheers,
    Melina

  • How to for dummies: sync itunes with pc to import pics from apple iphone 5 to pc???

    1)   How to for dummies: sync itunes with pc to import pics from apple iphone, 5c, 7.1.2., to pc?
    2)   How to delete photos from iphone (when I pick a pic there's no option to delete from trash icon)?
    3)   How do I get the app (VS) VarageSale back on my phone screen? It is only listed in settings > notifications.
    4) Or how do I delete the VS from settings, so I can reinstall?
    NOTE:  I have been to Verizon and they could not help me and it is too far to go to an apple store.  I have downloaded the apple manual and it is toooooo technical for me.

    If you don't have a backup of your pc, you will have to use a third party solution to get your music back. Wiki has a [comparison of ipod managers|http://en.wikipedia.org/wiki/Comparisonof_iPodManagers] here which you can look through to see if any meet your needs. I have used [CopyTrans|http://www.copytrans.net/copytrans.php] successfully but I did purchase it so I don't know what the free version supports.
    You can [download purchased Apps for free|http://support.apple.com/kb/HT2519] but that won't work for music, movies, etc.
    Hope that answers your question. Sorry about your lack of backup. Better luck next time.

  • How do I complete and update for photoshop 64 bit and photoshop which resulted in error 49; Four other other updates went through smoothly

    How do I complete a photoshop 64 bit and potoshop update that resulted in error 49. four other concurrent updates went thruogh smoothly (ie Muse, Illustrator, etc)

    Try manually downloading update and install the update.
    Adobe - Photoshop : For Windows
    Adobe - Photoshop : For Macintosh
    All Adobe CC 2014 Updates: The Direct Download Links for Windows | ProDesignTools
    All Adobe CC 2014 Updates: The Direct Download Links for Mac OS | ProDesignTools
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • HT4972 I have an IPAD 2 ios verison 4.3.3.  I am trying to update my ios to current version.  I dont get the option from Settings General for a software update.  How do i complete process?

    I have an IPAD 2 ios verison 4.3.3.  I am trying to update my ios to current version.  I dont get the option from Settings>General for a software update.  How do i complete process?

    If you are using iOS 4 (or earlier) there is no Software Update in Settings. That feature was first added in iOS 5.
    To update you will have to connect your iPad to iTunes on a computer (preferably the one you sync with and backup to).
    See here: http://support.apple.com/kb/HT4972

  • How to view execution history for any date in oracle SQL developer tool ?

    hi, i want to view some executed queries(2 months before) in oracle SQL Developer. if i press F8 it shows execution history for only last 30 days. is there any option(query) or something to view execution history for specific date ? i want to see some queries, which is executed before 2 months in my oracle SQL developer tool. Pls help me out.

    sb92075 wrote:
    943838 wrote:
    hi, i want to view some executed queries(2 months before) in oracle SQL Developer. if i press F8 it shows execution history for only last 30 days. is there any option(query) or something to view execution history for specific date ? i want to see some queries, which is executed before 2 months in my oracle SQL developer tool. Pls help me out.it will never occurWhy not? Are you a member of the product team that develops SQL Developer?
    To the OP, there is a forum for SQL Developer
    SQL Developer
    And there's also a sticky on the forum for product enhancement requests
    "Feature Requests, Extensions and General Collateral "
    Cheers,

  • HT1918 how can i completely remove a credit card from my account?

    how can i completely remove a credit card from my apple id?

    Hi Craig,
    Thanks for visiting Apple Support Communities.
    Using the steps from the article above (iTunes Store: Changing your payment information), you should be able to select "None" as your payment method. This will remove your credit card from your iTunes Store account (Apple ID).
    Changing your payment information using an iOS device
    Tap Settings on the Home screen.
    Tap iTunes & App Stores.
    Tap your Apple ID. (If you aren't signed in, enter your Apple ID and password and tap Sign In.)
    Tap View Apple ID.
    Enter your Apple ID password.
    In the Edit section, tap Payment Information.
    Update the information that you want to change.
    Note: You can find the payment methods that the iTunes Store accepts in the Payment Type section. If you don't want a payment method on your account, select None in the Payment Type section.
    Best Regards,
    Jeremy

Maybe you are looking for

  • Best practice for storing price of an item in database ?

    In the UK we call sales tax, VAT, which is currently 17.5% I store the ex-VAT price in the database I store the current VAT rate for the UK as an application variable (VAT rate is set to change here in the UK in January) Whenever the website display

  • BW AFS in Productive State

    Greetings, I am interested in anyone to share their experiences in a live BW AFS environment.  Specifically, we understand that clients do convey different levels of customizations, making some of them unique.  But, from a more general Industry Speci

  • How to put rows of spaces in questions

    I have a question about indents and tabs in Pages. To explain my question in detail, I need to start a line with a tab or a row of spaces, or even include a row of spaces in the middle of a line in my question. This forum helpfully edits all these ou

  • For all entries in itab.....

    Hi experts.. i hv select query which looks like this... <b>select field1 field2 into (itab-field1, itab-field2) from dbtab1                                                                             where field1 in s_field1.</b> The problem is i hv

  • How to center chars inside of cells of the comb field (text field)?

    Hello gurus, [Intro] I'm working on preparation of the legal form for tax return.  Due to sophisticated form structure and customer's demand to prepare return of enourmous size (more than thusand pages) I decided to remake obsolete form using "comb o