How to create several fast loading big albums in iWeb using your own templates

hi guys - here comes one for the real cracks.
i am trying to create a nice PICTURES page containing about 100 albums with each of it containing up to 100 individual pictures on my website, where i also have several videos online and (soon) audio files - everything available for download.
my problem is that the main "My album" page in iWeb will always ALL sub albums on just one page, which would in my case lead to endless loading time - i have now 30 albums online and it already takes ages to display all of them.
so i want to create several album pages, each of them displaying only 6 individual sub albums and this way allow a decent page loading time. this is usually done by just adding a new "my album" page using one of apple's templates. and here is my problem: my web site design is made from scratch and is not similar to any of apple's templates. since iWeb does not allow you to save your individual pages as "templates" i had to go a long way around, using iWebsites and merge a newly created picture template page (containing my own duplicated "my album") with ma main site. for some reason this did almost work out but in the end not really - if you are interested have a look at the separate discussion in this forum
https://discussions.apple.com/message/15532580#15532580  (how to save any iWeb page as a template)
so my question here is if any of you know of any other way to achieve my goal of getting several individual main albums containing 6 subalbums (this way it fits on one page and allow NOT having to scroll down at all) and this in a way which will fit the design of my web page. have a look at the now existing pictures page and imagine that i want more or less the same but divided in individual pages containing only 6 albums per page:
http://www.giorgiodellapietra.com/giorgiodellapietra.com/PICTURES/PICTURES.html
here an example of how it should look like in the end:
http://www.giorgiodellapietra.com/giorgiodellapietra.com/PICTURES/Seiten/MIXED.h tml#0
thank you very much for your impact.
cheers
george

hi folks
don't worry, i have given up as it really seems iWeb can not do this.
however, i have identified 2 possible solutions. the one i have chosen is to simply add new albums by choosing one of apple's templates and then modify it until it fits my design. i have created 15 additional main albums this way and it took me (because of the "mass production") only 15 minutes per album to get it done. now i have enough empty albums spare for the next few years...
the other way to accomplish what i wanted would have been to make the main "my album" page invisible for visitors and use it only for administration (so it can contain 100 albums but nobody would ever have to wait until they load). then create a new page which i call picture (copy any of my other pages and modify it) on which i will post some "virtual albums", which means use any picture out of an album and create a direct link to the album. i could use a vary low resolution version of the main pic and this way i would have a "picture" page which loads extremely fast but is actually nothing else than a link to the real album. then just copy this page as many times as i need albums and change the pictures and the links in it. the advantage is that it loads very fast, the disadvantage that i loose the ability to scroll through albums by moving the mouse over it, as what you see is of course only a picture and not the album.
i have chosen the first version because it has the advantage to be able to move albums as one pleases. however, both versions would be fine.
it's already done and eaten.
thanks anyway for reading yourself through this...
cheers
george

Similar Messages

  • How to create a Pre-Loader

    Hi,
    I've watched several tutorials, and read several webpages on
    how to create a pre-loader flash page, but I can't seem to figure
    out how.
    I like the one here:
    http://jonhmchan.com (Yes,
    JonHMChan)
    Thanks so much!
    (P.S. Using Adobe Flash CS4)

    Hi KGlad,
    I'm having exactly the same problem, so I downloaded your preloader.fla file, but unsure where to proceed with it now.  The preloader which I normally use is an extension manager file which I access by dragging onto the stage and then via the components inspector I can add the swf file which needs to be pre-loaded.  Unfortunately it is an asc2 file so from the above I gather it will not work with the swf file created and exported from InDesign.
    Without a preloader, it works fine (as can be seen from the low resolution test file below)
    http://www.carolsteele.co.uk/testing/test_01.html
    The above links to a lower resolution version for testing purposes  only - but I need a preloader as there is a distinct time lag before the  swf file is loaded if I use the full version with a higher resolution  image setting.  If I use my normal preloader, it loads correctly, but  the swf just simply runs through at high speed without stopping as can  be seen in the link below.
    http://www.carolsteele.co.uk/testing/test_02.html
    How do I modify your fla file so as to load the swf file please.
    Thanks in advance
    Carol

  • HOW TO CREATE SEVERAL folder for the generation and READING FILE

    HOW TO CREATE SEVERAL folder for the generation and READING FILE WITH THE COMMAND utl_File.
    please give an example to create 3 folders or directories ...
    I appreciate your attention ...
    Reynel Martinez Salazar

    I hope this link help you.
    [http://www.adp-gmbh.ch/ora/sql/create_directory.html]
    create or replace directory exp_dir as '/tmp';
    grant read, write on directory exp_dir to eygle;
    SQL> create or replace directory UTL_FILE_DIR as '/opt/oracle/utl_file';
    Directory created.
    SQL> declare
      2    fhandle utl_file.file_type;
      3  begin
      4    fhandle := utl_file.fopen('UTL_FILE_DIR', 'example.txt', 'w');
      5    utl_file.put_line(fhandle , 'eygle test write one');
      6    utl_file.put_line(fhandle , 'eygle test write two');
      7    utl_file.fclose(fhandle);
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SQL> !
    [oracle@jumper 9.2.0]$ more /opt/oracle/utl_file/example.txt
    eygle test write one
    eygle test write two
    [oracle@jumper 9.2.0]$
    SQL> declare
      2    fhandle   utl_file.file_type;
      3    fp_buffer varchar2(4000);
      4  begin
      5    fhandle := utl_file.fopen ('UTL_FILE_DIR','example.txt', 'R');
      6 
      7    utl_file.get_line (fhandle , fp_buffer );
      8    dbms_output.put_line(fp_buffer );
      9    utl_file.get_line (fhandle , fp_buffer );
    10    dbms_output.put_line(fp_buffer );
    11    utl_file.fclose(fhandle);
    12  end;
    13  /
    eygle test write one
    eygle test write two
    PL/SQL procedure successfully completed.
    SQL> select * from dba_directories;
    OWNER                          DIRECTORY_NAME                 DIRECTORY_PATH
    SYS                            UTL_FILE_DIR                   /opt/oracle/utl_file
    SYS                            BDUMP_DIR                      /opt/oracle/admin/conner/bdump
    SYS                            EXP_DIR                        /opt/oracle/utl_file
    SQL> drop directory exp_dir;
    Directory dropped
    SQL> select * from dba_directories;
    OWNER                          DIRECTORY_NAME                 DIRECTORY_PATH
    SYS                            UTL_FILE_DIR                   /opt/oracle/utl_file
    SYS                            BDUMP_DIR                      /opt/oracle/admin/conner/bdumpRegards salim.
    Edited by: Salim Chelabi on Apr 4, 2009 4:33 PM

  • How do i search for a photo album when i use the search facility on my iPad or iPhone it will not find photo albums of a given name can anyone help

    how do i search for a photo album when i use the search facility on my iPad or iPhone it will not find photo albums of a given name can anyone help

    Photo albums are not searched by Spotlight Search.  Go to Settings > General > Spotlight Search to see and reorder the available search items.
    For more details, see page 12 of the iPad iOS 5.1 User Guide

  • How to create a Sales order with ref to Contract using Function Module

    How to create a Sales order with ref to Contract using Function Module BAPI_SALESDOCU_CREATEFROMDATA ?

    We have a unique situation where we like change the sold-to customer of the sales order
    once order has been created. These orders have been created using either by function module
    BAPI_SALESDOCUMENT_COPY or using BDC (VA01, Copy with reference).
    These two processes work abosolutely fine except someone might have change the sold-to
    customer of the ship-to customer of the original sales order. If this the case then the new
    sales order will be created with the old sold-to and with not the new sold-to.
    We tried using BAPI_SALESDOCUMENT_CHANGE and commit afterwards. We checked
    the returned parameteres of the BAPIs and they are all successful but sold-to remains the
    same old one.
    Any help would be much more appreciated.

  • How to create apple id for mac app store without using credit card and there is no any option for payment none. please tell how to download free apps from mac app store

    how to create apple id for mac app store without using credit card and there is no any option for payment none. please tell how to download free apps from mac app store

    my problem solve by me
    first create apple id
    fill credit card details
    and complete your account creating  process.
    than go to app store or itune store
    login your acount
    click right side  - account button
    than again login for account setting
    next go to payment information and click edit button
    when u enter payment infomation
    click none button in payment method and click done button.
    than ur credit card has been removed.
    but rs. 60 will deducted in your account when u doing this process.

  • How To Use Your Own Router with Out Loosing Verizon's FIOS Services

    How to use your own router with Verizon’s FIOS Service
    First, you need a basic understanding of how FIOS works but unfortunately there are two types of FIOS systems out there. All of the systems utilize a fiber optic cable to bring TV, phone and internet to your location over one optic cable. In addition these systems provide interactivity including widgets, remote DVR, movies on demand and so forth via an IP (Internet Protocol) signal.  Your STB (Set Tip Box) requires both a video and IP signal. The IP signal is necessary for all of the aforementioned interactivity.  The fiber cable terminates at the Optical Network Terminal or ONT for short.  The ONT converts the optics into a digital signal that can be utilized by ones equipment.  From the ONT your video, phone and internet are provided to the location.  This is where things can differ as the internet signal can be provided via a coaxial (MoCA or Multimedia over Coax Alliance) or RJ45 Cat5 (Ethernet) cable.  It is important to identify and understand the differences of these two setups.  In my case I have my internet entering via Ethernet cable, which in my humble opinion makes things a heck of a lot easier.
    How does one tell the difference? In most cases it’s rather simple; just look at the Verizon’s router WAN (Wide Area Network) Port.  Does it have a RJ45 (Ethernet) or Coax (TV cable Cord) going to it? If the router’s WAN port doesn’t have a coaxial connector then one will need to convert the MoCA signal into a usable Ethernet signal that routers understand. The easiest way is to use Verizon’s router as a bridge. In this method the Verizon’s router simply converts the signal and passes it along to your own router. The challenge is to try to maintain the interactivity that FIOS TV provides. Because of this one needs to supply the IP routed signal back to the FIOS router.  There are multiple methods for doing this and I would recommend investigates which one make the most sense.   
    In my particular case the IP signal was provided by Ethernet.  Again there are various ways of installing one’s own router. The hardest is to utilize Verizon’s router as a bridge.  This setup requires configuring Verizon’s router as a bridge and also creating a VLAN (Virtual Local Area Networks). In addition one needs to set up their own router so it will work with the various routing tables and networks. For me this is too complex for the average person and it can be difficult to trouble shoot if something goes wrong. Please consider that Verizon will not support utilizing third party routers.   
    The easier method is to request an Ethernet signal (if you don’t already have one) from their ONT.  I would highly recommend getting your hands on a NIM or Network Interface Module. This device is used to convert Ethernet to Coaxial so it can be fed back to your STBs.  These can be purchased online and Verizon technicians can be a valuable resource with these sorts of acquisition.  At the very least they can point you to the right direction.  Once you have a NIM the rest is rather simple.
    Log into the current Verizon Router.
    Located the router’s MAC address and copy it down.
    Go to the port forwarding section and copy down the Applied Rules. 
    Example:  
    Network Computer/Device: 192.168.1.100:63145
    Application & Ports Forward:  Application UDP Any -> 6347  
    Note: There may be up to three entries for each one of your Set Top Boxes.
    Look at your current device list, typically found on the home screen. Copy down your STB MAC and IP address.
    Example:
    IP-STB1
    Connection Type: Ethernet
    * IP Address: 192.168.1.100
    IP Address Allocation: DHCP
    *MAC Address:                07:73:fFe:ad:8b:3f
    * Things you will need to write down
    Go to the network section and look for the main Ethernet connection.  Select this and then select more setting, typically found at the bottom. Release the current lease.
    Remove the Verizon router
    Install your router
    Connect the NIM by plugging in an Ethernet from one of the routers LAN (Local Area Network) ports to your NIM. Then connect the coax cable, the same cable that was used by Verizon router.
    Set you DHCP routing IP pool to accommodate Verizon’s STB IP’s  (note their IP’s start at 192.168.1.100)
    Go to DHCP section and reserve the STB IP’s by inserting the IP’s and MAC addresses. This shall ensure that nothing else utilizes the same IPs as the STBs thereby preventing IP address conflict.  
    Add the port forwards from Step 5 above.
    Clone Verizon’s Mac Address utilizing the info from step 2
    Finish setting up the router in typical fashion.
    Unplug and re-plugin your STB’s and test functionality.  It’s best to try using a widget or Movie on demand function.
    Note: if the new router can net get an internet signal contact Verizon’s support and have them release the IP and reset the ONT.  
    EVERYTHING should be working at this point.

     3 Go to the port forwarding section and copy down the Applied Rules. 
    Example:  
    Network Computer/Device: 192.168.1.100:63145
    Application & Ports Forward:  Application UDP Any -> 6347  
    Note: There may be up to three entries for each one of your Set Top Boxes.G
    Your display obviously is not like mine as mine does not dosplay the port associated with the ip address
    whatever, the STB's start at 192.168.1.100 and icement by 1 for each
    the port addr's will be 63145 alo incrementing by 1
    there is 1 entry for each in my pf list
    however each ip addr also has a port entry starting at 35000 also incrementing by 1 for each ip addr
    For some unknow reason these are duplicated e.g I appear to have 11 entries exaactly the same for each stb and as the fios services rules have no action switc there is nowhere to delete the extraneous garbage.
    Why do you clone the mac addr??

  • When I try to buy or update an app on my ipad, a window comes up asking me for a password using SOMEONE ELSE'S apple ID which prevents me from buying the app. How can I get my ipad toprompt for a password using my own apple ID, like it does w/ itunes

    When I try to buy or update apps, myipad asks me for a password using SOMEONE ELSE'S apple ID, which prevents me from buying/updating apps. But when I am buying songs on itunes, the ipad asks me for my password using MY OWN apple ID and everything works fine. HOW DO I GET MY IPAD TO REQUEST MY PASSWORD USING MY OWN apple ID WHEN I AM BUYING OR UPDATING APPS?

    The apps you are trying to update were purchased with (and therfore permanently linked to) someone elses Apple ID. If you do not know the password then you need to delete the app and redownload/purchase it with your Apple ID.

  • HT4759 How can i delete an old iCloud account and start using my own using my Apple ID? If I don't have the old password??

    How can i delete an old iCloud account and start using my own using my Apple ID? If I don't have the old password??

    If your device is signed into an old iCloud ID that is an earlier version of the ID you want to sign in with, do the following:
    If you are using iMessage and FaceTime, make sure you are signed into these services with your current ID.  If they are signed into the old ID, go to Settings>Messages>Send & Receive and Settings>FaceTime, tap the ID, sign out, then sign back in with your current ID.
    Then temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  (You should not have to verify the old email account so it doesn’t matter if you no longer have access to it.)  Now go to Settings>iCloud, turn off Find My iDevice and enter your current password when prompted (even though it prompts you for the password for your old ID).  Then save any photo stream photos that you wish to keep to your camera roll (unless you are using iCloud Photo Library).  When finished go to Settings>iCloud, tap Sign Out (or Delete Account if you are not running iOS 8) and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address back to the way it was.  Now you can go to Settings>iCloud and sign back in with your current iCloud ID and password (your data will download back to your device).

  • How to create a data load file from Excel !!!

    Hi All,
    I'm new to HFM and would like to load data into an HFM application. As I have an Excel file with all the data. When I'm directly loading the data it throws an error saying "No section has been specified to determine if this is data, description or line item detail". How can I convert this excel file into proper format (.dat) file understandable by HFM ?

    There are several ways to get this data into HFM.
    1) FDM - best option if you have it
    2) Webforms/Data Grids
    3) HsSetValue formulas in Excel
    4) DAT file loads
    5) JVs, etc
    If you wish to use DAT files created via Excel, you will likely want to use Excel VBA macros to create your DAT file to load. We do this on occasion for special projects and it works quite well. What you can do is set up an Excel file with your data inputs to look however you want, then link your POV members and amounts to another tab (we commonly call this the Export tab and it is set up in an HFM-friendly format).
    Create a macro to write a DAT file to a specified location using data from the Export tab. The DAT file will need to be formatted as below. For a specific sample, you can extract data from your HFM app and see the format.
    !Data
    Scenario;Year;Period;View;Entity;Value;Account;ICP;Custom1;Custom2;Custom3;Custom4;Amount
    Scenario;Year;Period;View;Entity;Value;Account;ICP;Custom1;Custom2;Custom3;Custom4;Amount
    Scenario;Year;Period;View;Entity;Value;Account;ICP;Custom1;Custom2;Custom3;Custom4;Amount
    Scenario;Year;Period;View;Entity;Value;Account;ICP;Custom1;Custom2;Custom3;Custom4;Amount
    Scenario;Year;Period;View;Entity;Value;Account;ICP;Custom1;Custom2;Custom3;Custom4;Amount
    Brush up on Replace, Merge, or Accumulate load options in the HFM Admin and User Guides, then upload your new DAT file.

  • How to create a "fast forward" effect?

    Hi there,
    I want to create a fast forward effect of a section of video that I have. I have speeded up the section to 2000% normal speed, and added a noise effect. That looks ok.
    Now, ideally, I would like to perfect the effect by adding the classic ">>" fast forward image, flashing on and off, and also by having the audio sounding sped up also.
    Can somebody please offer some guidance on how to go about that?
    Thanks very much guys,
    Mike

    Try here:
    http://discussions.apple.com/thread.jspa?messageID=5607076&#5607076
    It's for rewind but the idea is there.
    Al

  • How to create several youtubeclips in different videocontainers

    Hi guys,
    i'm new in edge and in this forum:
    I've read all the discussion about create several youtube clips in a single container :
    http://forums.adobe.com/message/4722007#4722007
    What i need to do is to have diffrent containers in the same page with different you tube videos.
    I've tried one single container and the method suggested by RUSSmsn :
         1. RussMSN, 
           18-set-2012 5.05    in reply to Kirch12
         So, the way I did it was like this:
         Create the button and open the code panel for that button.  Create a click action.  Within the code panel, paste this:
         var youtubevid = $("<iframe/>");
         sym.$("vcontainer").empty().append(youtubevid);
         youtubevid.attr('type','text/html');
         youtubevid.attr('width','425');
         youtubevid.attr('height','350');
         youtubevid.attr('src','http://www.youtube.com/embed/ykF1y2EJ2nI');  // url/Video_Id
         youtubevid.attr('frameborder','1');       // 1 | 0
         youtubevid.attr('allowfullscreen','0');   // 1 | 0
         What that does is empty the existing vcontainer, and places a new one with the new youtube video.  You can add this to as many buttons as you like,      obviously changing the URL ID for each, and it Should swap the video for you on click.
         Hope that helps!
         Russ
    and it works perfectly....
    The problem is i want to add more videos in the same page...
    I've tried to create
    var youtube2 and vcontainer2 but it didn't work....
    So i tried moving my first vcontainer to the second position in my page adding a label "button2" :
    //start code
         sym.play("button2");
    var youtubevid = $("<iframe/>");
    sym.$("vcontainer").empty().append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','800');
    youtubevid.attr('height','390');
    youtubevid.attr('src','http://www.youtube.com/embed/ykF1y2EJ2nI');  // url/Video_Id
    youtubevid.attr('frameborder','1');       // 1 | 0
    youtubevid.attr('allowfullscreen','0');   // 1 | 0
         //end code
    but this solution didn't work neither....
    I'm asking if is possible to have 2 videos in the same page...
    I've followed also the suggestion of .heathrowe :
    http://www.heathrowe.com/adobe-edge-preview-4-append-youtube-video/
    Again in the stage action panel after creating a composition ready i've tried to add a second var youtubevid2 and a second container vcontainer2 like this:
    //start
    var youtubevid = $("<iframe/>");
    sym.$("vcontainer").append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','800');
    youtubevid.attr('height','390');
    youtubevid.attr('src','http://www.youtube.com/embed/GqcPh3OXoNo');  // url/Video_Id
    youtubevid.attr('frameborder','1');       // 1 | 0
    youtubevid.attr('allowfullscreen','0');   // 1 | 0
    var youtubevid2 = $("<iframe/>");
    sym.$("vcontainer2").append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','800');
    youtubevid.attr('height','390');
    youtubevid.attr('src','http://www.youtube.com/embed/DF6QvYNHjQ');  // url/Video_Id
    youtubevid.attr('frameborder','1');       // 1 | 0
    youtubevid.attr('allowfullscreen','0');   // 1 | 0
    //end
    ----but again it didn't worked
    To be clear i want to create a page similar to www.bestofyoutube.com with a list of two or more videos in the same page...
    Any suggestions ??
    Thanks in advance

    I use code
    var youtubevid = $("<iframe/>");
    sym.$("Rectangle").append(youtubevid);
    youtubevid.attr('type','text/html');
    youtubevid.attr('width','853');
    youtubevid.attr('height','480');
    youtubevid.attr('src','https://www.youtube.com/embed/Rmin8zXzF5g?rel=0');  // url/Video_Id
    youtubevid.attr('frameborder','5');   // 1 | 0
    youtubevid.attr('allowfullscreen','0');   // 1 | 0
    I In Use button that closes the container, all is well it works!
    but if you close the container when the video started, the audio from YouTube continues to play, tell me what code to hang on the Close button to stop the video from YouTube?

  • How to create several Adobe Forms ??

    Hi everybody:
    I need to create several Adobe forms in my webdynpro application, for example: take data from a table and create such forms as rows in table. Right now, my app. only is able to create 1 adobe form (with the data of the first row). It is posible or not???
    Thanks in advance!
    any idea would be util....
    Les.-

    Hi,
    Look at this eLearning Documents. This a good way to start.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/interactiveforms-elearning">SAP Interactive Forms by Adobe eLearning Catalog</a>
    Regards.
    Marcelo Ramos

  • How to create control dynamicall​y while front panel fly using Xcontrol or anyothere options but without scripting tools

    Hello friends
               I have one doubt How to create control dynamically while front panel fly using Xcontrol or anyothere options but without scripting tools.I need to create the controls while vi is running.For example I need to create one Boolean  while VI was Fly and i need one Examples it is easy to understand.
    Jayavel

    You must be using a different dictionary than the rest of us.
    You can't dynamically create controls while a VI is running.   (If I'm mistaken, then I'm sure someone else can jump in and say how it can be done.)
    Do you have a finite number of controls you could possibly need?  What you can do is create enough controls of the type you need ahead of time.  At the beginning of your program, you hide all of those controls.  As you need to create a control, you make it visible using property nodes.  There are numerous properties you can set at run time suce as ranges, colors, captions, ...  Of course you can't wire these controls to any other bits of code ahead of time since at that time, you haven't defined what you want each one to actually control.  But if you use an event structure to detect when the values of the controls have changed, you can then programmatically pass the data off to other parts of your code using queues.  The architecture can get complicate quite fast, so you may want to look through Ben's Action Engine Nugget and other related threads for how to create mechanisms for using these controls.  Perhaps storing queue reference numbers or assign user events to each one.

  • How to delete the data loaded into MySQL target table using Scripts

    Hi Experts
    I created a Job with a validation transformation. If the Validation was failed the data passed the validation will be loaded into Pass table and the data failed will be loaded into failed table.
    My requirement was if the data was loaded into Failed database table then i have to delete the data loaded into the Passed table using Script.
    But in the script i have written the code as
    sql('database','delete from <tablename>');
    but as it is an SQL Query execution it is rising exception for the query.
    How can i delete the data loaded into MySQL Target table using scripts.
    Please guide me for this error
    Thanks in Advance
    PrasannaKumar

    Hi Dirk Venken
    I got the Solution, the mistake i did was the query is not correct regarding MySQL.
    sql('MySQL', 'truncate world.customer_salesfact_details')
    error query
    sql('MySQL', 'delete table world.customer_salesfact_details')
    Thanks for your concern
    PrasannaKumar

Maybe you are looking for