Can anyone help get me started on making a simple custom web gallery template?

I have tried using the documentation and a freeware template as an example, but I am getting confused, and I think the template is over-complicating things.
I have a web-template that requires the following to get images to automatically work in a gallery:
Full size images in a specific folder
Thumbnails or each full size image in another specific folder
Simple HTML code for each image which allows for image title and description information
The script takes care of the rest.  So what I want to do is have Lightroom genereate the images in their specific folders, and the HTML code on the fly for each gallery I wish to publish to my website.  I'm posotive this can be done, but I'm having trouble customizing the code.  I've tried looking for tutorials and help, but the documentation on this is limited, and I'm not a programmer.  I do however have enough experience with basic web design to be able to work with existing templates with relative ease but this is seemingly difficult as I'm not sure what each file in the plugin structure is actually doing.  Any suggestions on how I can make a simple gallery output like this?  Or a link for a good, solid, easy, step-by-step tutorial?
Many thanks in advance!
-Zach

Chipster1960 wrote:
I have a Samsung Convoy flip phone. I am trying to transfer my pictures of my dog and nephews to Verizon online so I can show them off on Facebook to friends. 
You don't need the intermediate step of uploading to Verizon; you can upload directly to Facebook from your phone.  You need to go to your Facebook account, and set up your mobile number; then you will get a personalized email address and you can send a text message with the picture and any caption you want to that email address and it will show up as a mobile upload on your timeline.
You *used* to be able to text a status update or a pic to 32665 (FBOOK) but that didn't always work.

Similar Messages

  • I updated my Iphone4 and had the m.calendar app with all of my daily temperatures saved, since the update after even after synching the iphone to itunes I have lost months of tracking I am devastated!! can anyone help get it back

    I updated my Iphone4 and had the m.calendar app with all of my daily temperatures saved, since the update after even after synching the iphone to itunes I have lost months of tracking I am devastated!! can anyone help get it back

    I don't understand this answer. What do you mean " your contacts should be in whatever program/service you have selected to sync."? The address book is created on the phone not in Itunes or any other program/service. When Itunes says backing up phone I have to assume it backs up everything on the phone. Most of what's on my phone does not come out of itunes. I download apps directly on the phone. When the software updates it does not bring those apps back. I have to go into the appstore and install them all over again. Itunes music library syncs with whatever is on the device your linked up to BUT the phone book just dissappears after you update the phone. There is no way to save it anywhere else.

  • HT1267 I plugged my iPhone 4 into my computer with the USB charger cable, and the screen went blank and came up with a picture of the usb cable with an arrow pointing to iTunes....Can anyone help get this fixed????

    I plugged my iPhone 4 into my computer with the USB charger cable, and the screen went blank and came up with a picture of the usb cable with an arrow pointing to iTunes....Can anyone help get this fixed????

    Connect your iPhone to iTunes and restore or follow the prompts.

  • Can anyone help get rid of a system.argumentoutofrangeexception error

    Can anyone please help me fix this error.  A website that is bookmarked and I use regularly is giving me this error message. 
    Description:  An unhandled exception occurred during the execution of the current web request. 
    Exception Details:  Ayste.ArgumentOutOfRangeException:  Index and count must refer to a location within the string.
    The website is working fine using the desktop computer, just not the iPad. 
    Thanks a ton

    You can try to Clear the Cache.
    * Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    You can check the home page setting.
    *https://support.mozilla.com/kb/How+to+set+the+home+page
    You can also check the Download Manager (Tools > Downloads)
    If that doesn't work then try a new profile.
    See Basic Troubleshooting: Make a new profile:
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Just plugged in my wireless printer and need assistance please - can anyone help me to start printin

    just plugged in my hp deskjet 3070A e-ALL-IN-ONE SERIES and want to do a test print - I'm not sure what I am doing and don't want to make any stupid mistakes - the software was loaded on to my new hp laptop when I bought it from PC world/currys - can anyone "talk me through" the basics that I need please?
    sorry to be such a wuss but am okay once I know what to do - if I get in a jam when first trying, I get a bit worried about what to do so would much rather get it right first time and then I can go on from there
    thanks in anticipation ...

    Since you installed it, just follow what the manual and instructions say and print away....
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • Can anyone help me know the difference b/w application and web server?

    i tried reading about application and web servers. it appears to me to be the same. please do help me to differentiate. Thanks :-)

    An application server hosts business logic components for an application. A web server is an application which accepts HTTP requests.
    An application server may come packaged with a web server.
    A web server is a very simple process. It's HTTP daemon process that listens for incoming requests over HTTP protocol on a specified port usually, 80. For simple, static web pages the web server has the built in logic to serve them but for a complex operation(say read from database and display some records), it routes the URL to a component like the servlet engine....
    An application server is a much broader term. For example the servlet may need to invoke certain business logic components like beans or activex dlls. The server that hosts these components is the application server.
    Hope you are clear now.

  • Can anyone help with changing colors without making a selection

    I've been trying to work the the script below. All the front most paths are black I want to change them all to yellow without having to select them first.
    Any help would be really appreciated. "I am a novice javascripter"
    var myStyles = app.activeDocument.pathItems;
    lastStyle=myStyles[myStyles.length-1]
    lastStyle.remove();
    frontStyle=myStyles[0]
    frontStyle.filled=true;
    // Sets the default fill color in the current document to yellow.
    if ( app.documents.length > 0 ) {
    //added
    frontPath = frontStyle;
    // Define the new color
    var newRGBColor = new RGBColor();
    newRGBColor.red = 255;
    newRGBColor.green = 255;
    newRGBColor.blue = 0;
    // Use the color object in the path item
    frontPath.filled = true;
    frontPath.fillColor = newRGBColor;

    A couple of pointers from one novice to another… With script there is NO need to deal with 'selections' to change the writeable properties of any object you simply need reference them with your code as you have done above… You can select art and you can deal with user selected art should you wish but as a rule for all else just target the object with your syntax… The best thing to do is to get your code working… as you know the current state to be ( a document open with you test objects in it ) once you have this then add to it by wrapping your conditionals around this… For example…
    if ( app.documents.length > 0 ) {
         // All your code goes inside this statement
    There is no point in getting the path items of the active document then checking later if there is a doc… Just a case of putting things in there respective order…
    The property filled… I only use to check the state, giving an object a fill will automatically update this… So here are your lines with a little reshuffle and a loop example…
    // Check there is a doc open
    if ( app.documents.length > 0 ) {
              // set a variable to the front document
              var doc = app.activeDocument;
              //Make your new color
              var rgbYellow = new RGBColor();
              // assign some values
              rgbYellow.red = 255;
              rgbYellow.green = 255;
              rgbYellow.blue = 0;
              // set variable to the collection ( list ) you want
              var paths = doc.pathItems;
              // loop this using a variable 'i'
              for ( var i = 0; i < paths.length; i++ ) {
                        paths[i].fillColor = rgbYellow;
              }; // this is your loop ending
    }; // this is the condition ending

  • Can anyone help with the start up of my new ipad3?

    When i initially switched on my ipad, i only got choosing the language and then a box came up with 'set up incomplete' I wasn't able to get by this and let it run, finally after 6 hours i switched it off as there was no change.  Next day, i plugged ipad into my computer and registered it and was able to sync a few things to the computer through itunes, the ipad then went to 'enabling locations' but again it is stuck on this with the same box 'set up incomplete' coming up and I can't get beyond this.  I've tried the manuals - that just says follow the onscreen instructions- and phoning for support (closed on a sunday).  I am probably missing somethinig obvious, but don't know what else to do, I hope some one can help.

    If you can still use the Settings function
    Settings>General>Accessibility>VoiceOver>Set to off
    After turning off VoiceOver, go back and set up your iPad again.

  • Ive just deleted a thread of SMS on my iPhone, can anyone help get them back ..?

    Guy, anyone know how to restore a deleted thread of SMS, i think there may by imessages in there also.

    hi, I personally lost some valuable messages too on my iPhone 4, but luckily, I got mine back with THIS software. There are also some other recovery software available , but I had some bad experiences with other ones and this one did the job...

  • Can anyone help me with getting the best setting for me system

    can anyone help me with getting the best setting for me system on cpufan it says my temp is 38c but on corecentre it says 42c can anyone help get my system overclocked any more but keeping it stable as well thanx in advance for the help  

    my corecenter temp sometimes says im at 60 cel at idle....and i have the most recent update...i would rely on speedfan for temp control...core center seems to always read 3 degrees higher than speedfan on my pc....
    i wouldnt be too concerned...those temps are pretty low to begin with.

  • I just bought and backed up my computer and time machine with a "Seagate BackUp Plus for Mac". Now my time machine is empty. Panicked. can anyone help?

    I just bought and backed up my computer and time machine with a "Seagate BackUp Plus for Mac". Now my time machine is empty. Panicked. can anyone help?

    Lets start over...
    Please restart the network.. shut down everything..
    Restart in order.. modem.. router.. if different to TC.. or TC.. client devices.. wait 2min between each startup.
    If the TC does not show up on the computer, in finder.. then we need more info.. what OS are you running?
    Does the TC show up in Airport utility? Are you running wireless or ethernet?
    If you still have issues.. plug the TC directly into the computer by ethernet.
    Do a full factory reset of the TC.. and see if it now shows up.
    Please tell us exactly what model TC it is and how old.. the A1xxx model number from the base will help if you don't know.
    You take a screen shot of the TC opened in finder.
    eg..
    My TC is named Tardis4.. click on it.. and then open the data folder.. on this one called Tardisdata.
    Then take a screen shot of it so we can see what the problem is.. screenshot.. with area selection.. control + shift + 4 .. the picture goes into the desktop.. and then you click the picture icon in the posting web page controls and select the picture.

  • My iphone will not switch on, it is only showing the apple logo can anyone help?

    my iphone has frozen, when i turn it on the apple logo comes on and thats all, can anyone help?

    Sure, start here:
    http://www.apple.com/support/iphone/troubleshooting/
    iOS: Not responding or does not turn on
    iOS: Unable to update or restore

  • TS1702 I purchased 2 packages of gems for skylanders and only received 1 package. Got email receipts and tried to report problem on ipad2 and it keeps coming up with to many https redirects. Can anyone help? Just want my gems :).

    I purchased 2 packages of gems for skylanders and only received 1 package. Got email receipts and tried to report problem with link in email on my ipad2 and it keeps coming up with to many https redirects. Can anyone help? Just want my gems :).

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I keep getting the message itunes has stopped working I can't even open itunes I have tried uninstalling and installing, starting in safe mode but nothing seems to work. Please can anyone help me

    I have recently bought a new laptop with windows 7 and when i have tried to install and open itunes i keep getting the message 'itunes has stopped working' itunes then shuts down before i can do anything to fix it. This happens every time I try to open itunes. I have tried uninstalling itunes and reinstalling it, starting itunes in safe mode. Nothing seems to work. Please can anyone help.

    If and when I finally manage to open it, as soon as I click on a movie to watch, the message "itunes has stopped working" comes up.
    Try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • When I start iTunes I get the following message. "A required iTunes component is not installed. Please repair or reinstall iTunes (-42404)" I have installed the latest version of iTunes but still get this message. Can anyone help.

    When I start iTunes I get the following message. "A required iTunes component is not installed. Please repair or reinstall iTunes (-42404)". I have installed the latest version of iTunes but still get this message. Can anyone help?

    Hello mustangcim243,
    iTunes has various components bundled with it that it requires for general usage. I advise that we completely remove iTunes and all of these related components, verify that they have been removed, then reinstall. To do so, please follow the steps in this article:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Note: it is important to remove the 7 components in order. Uninstalling these components in a different order, or only uninstalling some of these components may have unintended affects.
    If the above does not resolve your issue, I recommend we reset the SC Info folder:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/TS1389
    (See Step 4: Remove the SC Info folder)
    Thanks,
    Matt M.

Maybe you are looking for

  • TIme Machine not working after upgrade to snow lep.

    I just updated to snow lep version from lep and now my time machine can't backup. It give an error message of "The backup disk image "/Volumes/Kelly Turner's Time Capsule/Kelly Turner's iMac.sparsebundle" could not be created (error 22)." I try to op

  • BIEE Pivot Table Pie Chart Error

    When we use pivot table and views in BIEE (Measure labels in the Rows), the label of the pie chart will only display the first measure name. There are only color box no text from the second measure name. Does any one know how to fix this issue?

  • Radio Buttons on Selection Screen

    Hi, I have four radio buttons on selection screen in a frame, all belonging to the same group. When the program is called using transaction 1, first two radio buttons are displayed. When the program is called using transaction 2, bottom two radio mus

  • EMac and Mac Mini?

    I have an eMac I recently upgraded to Leopard. I keep getting space warnings in iPhoto, which is what I use the computer most for (I produce a school yearbook on the eMac). Also my CD drive often takes 20 attempts to open. I would like to know if I s

  • Service Ticket onCreate

    Hi guys, I've got a question about the onCreation handling of a Service Ticket. Situation: a new ticket is created either manually oder through a function module. As soon as the ticket is created, it shall automatically run some routines, e.g. callin