Control the order that the images display in Lightbox

I have a Lightbox with a selection of images. The images are all numbered in a specific order. The thumbnails when selected display the final image correctly and I have discovered that their sequential numbering is affected by whether they are sent to front or back. So I have them displaying their correct automatic sequential numbers in Muse lets say 1-3, 2-3 and 3-3 whereby 1-3 is sent to back and 3-3 is sent to front. However when it is viewed in either the preview or a browser the first image displayed is 3-3 then the order is 1-3 then 2-3. Is there a right way to ensure that the image 1-3 is the first image shown?

Thanks for your reply, but I intentionally didn't give you a complete description of what I am doing as I didn't want to pose a confusing question.
Your solution is right for anyone using the lightbox in a standard way.
However, I am either trying to be too clever or making something simple very complicated.
I am using lightbox as the trigger but not the thumbnails as I only want one thumbnail to show and it is cropped in such a way that it only shows a small aspect of one of the final images. So I have a box with an image that is visible, a fake thumbnail, and then on top I have my lightbox thumbnails that are all set in all states to 0% opacity and placed directly over the fake thumbnail therefore not visible. So the issue I have created is that the image I want displayed first is at the bottom of the pile and numbered 1-3 as required. However, the image on top that is acting as the trigger is image 3-3 and that is why it is appearing first. If I bring the required thumbnail to the top then it is automatically renumbered 3-3 and this may be the solution that I have to live with and pay the price for either being a smart arse or a creative idiot!!!
Hope this makes sense. If you have any suggestions of how to resolve my madness then they will be much appreciated.

Similar Messages

  • How to programmatically control the Image display size

    I wonder if
    it is possible to let the Vi adapt the size of the VISION image display if the
    user zooms in the displayed picture (as can be done in other graphical software
    like Photoshop or ImageI). Is there something prepared?

    If you are using LV 7.1, there is a property node that let you define the size of the image display.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Image size.vi ‏64 KB

  • Why won't the images display in this flash widget?

    why won't the images display in this flash widget?
    http://www.coffeeandcandles.com/Wholesale_s/41.htm

    more info would help. If you're using actionscript and
    loading images from a folder maybe your path to that location is
    wrong. It's possible that your images aren't in the right layer or
    level but noticed that when initially published.

  • How to solve the image display problem in the iTunes Store

    Hi guys!
    I just want to give a work-around for all of you having the image display problem in the iTunes Store. In my case only the square images in the slider sections won't load:
    I had this in my last W7-installation and got it again in W8 after the first few weeks.
    There are a lot of reports about this problem out there and adhoc solutions like 'clear the cache' or 'reinstall and drink ice tea' that do not work. It is obviously a file request error. It is all about finding out which server addresses get blocked by your computer.
    Solution: Go to your firewall and your Anti-virus-program. There must be a whitelist option. In Kaspersky, check the web-options, the banner-options and the firewall-options, because the all have whitelists. The following addresses have to be whitelisted:
    *.apple
    *.mzstatic.apple.com.akadns.net
    *.mzstatic.com.edgesuite.net
    *.da1.akamai.net
    *.itunes.apple.com
    se.itunes.apple.com
    upp.itunes.apple.com
    ax.init.itunes.apple.com
    xp.apple.com
    *.mzstatic.com
    client-api.itunes.apple.com
    www.apple.com.edgekey.net
    www.isg-apple.com.akadns.net
    Press Ctrl + R in the iTunes Shop then and browse throught the music sections. All images should be displayed correctly now.
    If not, there might be more Apple servers involved in your case. You can find them by running a DNS sniffing tool like the DNS query sniffer by Nirsoft or Wireshark.

    Phone restarting randomly could be loose battery. Tighten by putting a small strip of electrical tape on the back edge.
    THE BITTERNESS OF POOR QUALITY, LINGERS LONG AFTER THE CHEAPNESS OF PRICE, IS SOON FORGOTTEN.

  • How can I control the image size when I export form iphoto, the choice is too limited, I need to send a photo under 3 MB but if I choose high quaulity it is only 1.1 and i need to keep the best quaulity I can. Thanks for help.

    How can I control the image size when I export form iphoto, the choice is too limited, I need to send a photo under 3 MB but if I choose high quaulity it is only 1.1 and i need to keep the best quaulity I can. Thanks for help.

    Any image can only be as large as the Original. With a program like Photoshop you can UpRes an image and get it to a bigger size, larger files size as well, but the actual quality of the image will be degraded, depending on the UpRes system and the original quality of the image.
    iPhoto is not the program to be doing that in and I don't think it even has that option.
    So I suspect the image you are trying to send isn't much bigger than what you are getting. You can also try Exporting it from iPhoto to yopur desktop and see what size you end up with. If it is still that 209KB +/- file size then that is the size of the original image.

  • Printing of the image display area is to small 2 read large displays

    Printing of the image display area is to small to read on some large displays
    Need to restrict the image resizing in generating the print output to a minimum size (to allow it to be readable) and allow the printed output to flow into a multiple pages wide by multiple pages in length if necessary. Currently it is restricted to one page.
    below is the code
    *public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {*
    if (pageIndex != 0)
    return NO_SUCH_PAGE;
    Graphics2D g2d = (Graphics2D) g;
    Rectangle2D.Double printBounds = new Rectangle2D.Double(
    pageFormat.getImageableX(),
    pageFormat.getImageableY(),
    pageFormat.getImageableWidth(),
    pageFormat.getImageableHeight()
    *// Print the header and reduce the height for printing*
    float headerHeight = printHeader(printBounds, g2d);
    printBounds.y += headerHeight;
    printBounds.height -= headerHeight;
    *// Carve off the amount of space needed for the footer*
    printBounds.height -= getFooterHeight(g2d);
    *// Print the nodes and edges*
    printDisplay( printBounds, g2d, 0 );
    *if (footer != null) {*
    printBounds.y += (printBounds.height + 15);
    printFooter(printBounds, g2d);
    return PAGE_EXISTS;
    =================================
    *protected void printDisplay( Rectangle2D.Double printBounds, Graphics2D g2d, double margin ) {*
    *// Get a rectangle that represents the bounds of all of the DisplayEntities*
    Rectangle r = null;
    *for (Enumeration e=displayManager.getEntitySet().getEntityEnumerati on();e.hasMoreElements();) {*
    DisplayEntity de = (DisplayEntity)e.nextElement();
    if (r == null)
    r = de.getBounds();
    else
    r = r.union(de.getBounds());
    *// Get that as doubles, rather than ints, and expand by half the margin*
    *// height in all directions*
    Rectangle2D.Double entityBounds = new Rectangle2D.Double(r.x,r.y,r.width,r.height);
    entityBounds.x -= margin/2;
    entityBounds.y -= margin/2;
    entityBounds.width += margin;
    entityBounds.height += margin;
    *// See if height and/or width was specified*
    Unit specifiedSize = configuration.getHeight();
    double printHeight = (specifiedSize != null) ?
    specifiedSize.getValueAsPixels((int)printBounds.he ight) :
    printBounds.height;
    specifiedSize = configuration.getWidth();
    double printWidth = (specifiedSize != null) ?
    specifiedSize.getValueAsPixels((int)printBounds.wi dth) :
    printBounds.width;
    *// Figure out the ratio of print-bounds to the entities' bounds*
    double scaleX = 1;
    double scaleY = 1;
    *// See if we need to scale*
    boolean canExpand = configuration.expandToFit();
    boolean canShrink = configuration.shrinkToFit();
    *if (canExpand == false && canShrink == false) {*
    scaleX = scaleY = configuration.getScale();
    *else {*
    if ((canShrink && canExpand) ||
    *(canShrink &&*
    *(entityBounds.width > printWidth ||*
    entityBounds.height > printHeight)) ||
    *(canExpand &&*
    *(entityBounds.width < printWidth ||*
    *entityBounds.height < printHeight))) {*
    scaleX = printWidth / entityBounds.width;
    scaleY = printHeight / entityBounds.height;
    *if (configuration.maintainAspectRatio()) { // Scale the same*
    if (scaleX > scaleY)
    scaleX = scaleY;
    else
    scaleY = scaleX;
    above methods am using for printing image. but in large display i cant able to read letters.
    Thanks in advance
    Srini

    1. You didn't bother to reply to the three responses on [url https://forums.oracle.com/forums/message.jspa?messageID=10061953#10061953]your earlier thread
    2. You didn't bother to read the announcements at the top of each forum listing to learn how to post code.
    Why should anyone bother to try to help you?
    db

  • Is it possible to adjust or control the Image Tracer selection's colors?

    Hi there,
    I need to turn several of my photographs into vector images for textile printing.
    Is it possible to somehow adjust or control the Image Tracer selection to other colors like 10-11 (or other), instead of either 6 or 16 ?  If yes, please explain.
    Thank you,
    OC

    Sure. Tweak the settings, save it as a preset:
    Mylenium

  • Show the line after draw with IMAQ selectline.vi in the image display

    hi..
    may i know how to show the line on the image display after i draw the line by using the IMAQ select line.vi??
    i use the the IMAQ select line.vi for drawing few couples of lines...but i don know how to show it all on the image display...
    because i will forget the location of the lines after i draw it by IMAQ select line.vi...
    thanks for help..

    Hey,
    Just use IMAQ Draw.vi
    Christian

  • How do I control the image that displays when someone shares a page from my website on Facebook?

    I have created my website in Muse and it looks awesme.  http://getlumen.com  I have added Facebook Like/Share buttons to the pages that I'd like people to... 'Like"  =]  It all works fine, BUT... the image that is displayed after someone Shares or Likes the page, is the background image that I used on the Master design page.  No bueno.  Even worse, sometimes it's the credit card icons that are displayed on the products pages.  Is there a way to "embed" an image into each page that is specific to that page and not an arbitrary iamge from the style guide, without adding it to the look of the page?

    Thank you.  But just to be clear... 
    Do I paste this code  <meta property="og:image" content="URL to your thumbnail image" /> Before or After the Google analytics code that is curretnly in the header of each page?  And the ONLY thing that I change in the above code is the "URL to your thumbnail image" for each page/image- yes??

  • What controls the headline display name in a search?

    I have uploaded my site (tbuildersinc.com) and it displays OK.  However when I do a search on tbuildersinc the headline displays "Home" wiht the site URL in the subhead.  How do I fix that?
    Also, on one computer the site is all garbled and on another it shows an american flag next to phone numbers.  What controls that?  Is this a browser version issue?

    Hello,
    Search Engines by default picks up the Title of the page. In muse you can change the title of the page by going into Page Properties>MetaData.
    Uncheck the option "(Title) Same as Page Name) and put the desired title there.
    Please have a look at the screenshot :
    Hope this helps.
    Regards,
    Sachin

  • Problems with the images displaying incorrectly

    I have done a couple of installs before this of the new Apex 4 deployed on weblogic 10.3.3 with no problems but this one has "stuck a spanner in the works". I have also looked through the forums and was unable to find a solution to the problem I am seeing. I am about to start an SR if no one is able to help on the forums.
    This is my problem;
    I am able to view the individual images in the images directory via the http for e.g. http://hostname.domain:7001/apex/i/date.gif and this displays correctly.
    I am not able to view the http://hostname.domain:7001/apex/f?p=4550:1:2874725903020187 images as they are not displaying.
    In the troubleshooting section of the install guide it mentions;
    A.4 Images Displaying Incorrectly in Oracle Application Express
    If images in Oracle Application Express do not display correctly, you may have more than one definition of the /i/ alias. To address this issue:
    If possible, rename the first instance of /i/ to a different alias name.
    Alternatively, copy the images from the ORACLE_HOME\apex\images directory to the directory defined by the first /i/ alias.
    ** Firstly how do I "rename the first instance of /i/" (how do I find this out?)
    ** How do I "Alternatively, copy the images from the ORACLE_HOME\apex\images directory to the directory defined by the first /i/ alias".
    Thanks to all that reply.
    If any more detail is required please just ask.

    Hi,
    Url where you see image should be
    "http://hostname.domain:7001/i/date.gif"So /i/ should be in server root.
    Sorry , I'm not familiar Apex Listener and those servers you can use with it.
    It might good idea to post question to Apex Listener forum and give all details about server, database and Apex version
    ORDS, SODA & JSON in the Database
    Regards,
    Jari

  • Printing from a applet toolbar the image displayed in the applet

    Hi ,
    I have a JApplet which displays a tiff image. The applet uses JAI API and Java 2D for printing. I can zoom in . zoom out , invert the image and I am printing the displayed image also .
    In the action handler class for the print button , I have made an inner class implementing printable and executing the print function.
    I am doing printing via a separate thread as i don't want my action handler class to keep waiting till the image gets printed . The user should be able to manipulate the image after it has clicked on the "ok" of the print dialog, while the image is being printed. This is the reason for printing the image in a separate thread
    and the actual printing process is a synchronized method called by the run method of the thread .
    If I click on print button twice , one after another , the second image gets printed only after I get a response from the printer that image has been printed as expected (as the print method is synchronized ).
    In the action handler class of print , I do not call join on the thread as I do not want it to wait for printing to get over ( printing of a tiff image actually takes a long time ?? )
    Is there anyway to make the threads independent of the main applet . Like after firing the print command , if I close the applet and I haven't got a confirmation from the printer, I get a blank page or nothing but i get a response message from printer that printing is done .
    Is it essential for a thread to wait till the printer sends a response that printing is over ?
    Similarly , If after firing the printing command and without waiting for the confirmation from the printer , I refresh the applet , proper printing does not occur but I get a message from the printer that printing is done .
    If i use synchronized method for printing and wait till the printer response from the printer comes without closing or refreshing the applet , printing occurs fine .
    Can anyone please tell me what is actually happening and is there a better way to print and that printing occurs after the print command has been fired irrespective of the applet ?
    Regards , Navneet

    Hey can you send me the code for the same. I know its been a long while, but I am new to JAI and need the same stuff u coded. u can mail it to me on [email protected]
    Thanks in advance.

  • How to hide image displays for lightbox

    Using DW, I have a lightbox display.  Here is the page:
    Example page
    As you'll see, if you click on the photo, it opens up into a lightbox.  My colleague wants to have 10 photos open up in the lightbox but they do not want all of those photos to have thumbnails on the page.  In other words, they want one single photo, you click on it, and then see all 10 photos in the lightbox.
    If I put all of the img code for all 10 images on the page then all 10 images will also show up on the page.  So I have to somehow "hide" the images so that the small version of the photos do not show up on the page but will show up in the lightbox.
    Sorry if this sounds confusing and hope someone can help.  Thanks.

    Deaf Mike wrote:
    I've never seen it either as it already existed on the site and I actually just discovered it.
    Here's another example
    When you arrive at the above, click on the turtle and you'll see how several photos are in the lightbox.  Then close the light box and scroll down and click on those + symbols.  See those other images in the other sections?  Somehow the code is pulling those photos into the lightbox too.
    I want to do the same thing but the key is there will be no + symbols on the page - just one turtle photo and when you click on the turtle, all of the other photos appear in the light box.  Another thing I'm thinking about doing is having one turtle photo and then 10 1 pixel by 1 pixel invisible image down at the bottom of the page then have 10 of them and then the h ref for each are the larger photos - that way when you click on the turtle, the code will pull in the 1X1's large photos into the light box.
    Well that would be pretty easy just do as 'Per' suggested in the previous post and hide the 'thumbnails' you don't want on the page:
    Create a rule in your css - something like:
    .hide_thumbs {display:none;}
    So typically a set of light box images might look like the code below. (when clicked they open in a lightbox and that lightbox usually has an option to display the other images in that particular gallery by clicking through them, rather than clicking on them individually).
    <a href="turtle.jpg"><img src="turtleThumb.jpg" alt="turtle"></a>
    <a href="whale.jpg"><img src="whaleThumb.jpg" alt="whale"></a>
    <a href="dolphin.jpg"><img src="dolphinThumb.jpg" alt="Dolphin"></a>
    <a href="tuna.jpg"><img src="tunnaThumb.jpg" alt="Tunna"></a>
    If you add a class="hide_thumbs" the ones you don't want to show get the display: none; property BUT they should still be available in the lightbox to click through.
    <a href="turtle.jpg"><img src="turtleThumb.jpg" alt="turtle"></a>
    <a href="whale.jpg" class="hide_thumbs"><img src="whaleThumb.jpg" alt="Whale"></a>
    <a href="dolphin.jpg" class="hide_thumbs"><img src="dolphinThumb.jpg" alt="Dolphin"></a>
    <a href="tuna.jpg" class="hide_thumbs"><img src="tunnaThumb.jpg" alt="Tuna"></a>

  • Can't find the Profile Option that controls the default display of DFF

    I know there is a Profile option you can set to show a DFF by default when you are looking at CRM data (like the Organisation or Person).
    This helps because you don't have to do a look up for the DFF's on the page. The user is automatically shown the DFF Codes on the page when it is loaded.
    Can anyone tell me what Profile Option you set in Sys Admin to turn this on so it is displayed to the end user at all times?

    The jsp file should have the DFF name. You will have to go through the jsp code and find out manually.
    --Shiv                                                                                                                                                                                                                               

  • A "professional" display of a video? How do I control the video display?

    My goal is to display a quicktime video I have created using my MacBook Pro on a video projection system at a party.
    The video is about complete. What I want to do is either have a still frame showing on the projector, and the right time, just show the video, or have a black screen until I show the video. At the completion of the video I want the screen to go back to black. At no time do I want to show on the projector the desktop or any of the quicktime controls.
    What can I do from the laptop side that would allow me to bring up the video and freeze it at a title screen and then start it without any keyboard activity being shown on the screen?
    Though, without doubt, I am an amateur at this, I would like the presentation to be as "professional" as possible, given what I have to work with.
    All help and ideas are greatly appreciated....
    Paul

    Your best bet is to use the "blank screen" feature on the projector. Almost all projectors have this feature. You can then turn on and blank the projector screen, get the video running on your mac and then unblank it when you are ready. When the video is over, blank the projector at the end of the video and then worry about closing the video on the mac.
    If for some reason the projector does not have this feature, or it is not convenient (for example, you can't find the remote to the projector and don't want to walk up to it, or it is on the ceiling) then your best bet is to edit your video so there is a few seconds of "black screen" at both the start and end of the video. Then get your video started full screen, pause it before it starts THEN turn on the projector (that will only be displaying the still blank frame and then you can start the video when you are ready. When the video is over, stand by and be alert so you can pause it when it hits the blank screen at the end of the video. You can then power off the projector.
    Hopefully you will find one or both of those solutions helpful.
    Whatever you do, MAKE SURE to TEST it out before hand! There is nothing more un-professional then when I see people bring in laptops that they have never used with an external display before and have no clue how to get the video out enabled. (with mac's its automatic, but with PC's sometimes you have to push a funny keyboard combo like FN + F8 to get it to work) The audience then gets to stairs at the "NO INPUT" screen of the projector as you scramble around tying to get it to work. lol.

Maybe you are looking for

  • What is diffrence between "Partner Specific" and "Globally Available" Addon

    I would like to know what difference between Partner specific and globally available solution is? OurAdd-on will be available in all the countries including US.  We are thinking of using B1 licensing mechanism instead of using ours. Which is best sol

  • QuickTime Movie Files Won't Convert For iPod using iTunes and QuickTime Pro

    I've got a ton, and I mean a ton of QuickTime movie files of music videos that I want to convert to use on the iPod. I tried using "Convert Selection For iPod" in the Advanced Menu on iTunes, but got the following message trying convert a QuickTime f

  • Removing digital signatures created in a previous version of adobe acrobat pro

    I recently installed Adobe Acrobat X Pro, which required the removal of my previous version (8 Pro). I have several PDF docs created in (8 pro) with signature fields. I reuse these docs inputting updated info. When I do I clear the signature field, a

  • Need help on using Tuxedo with Oracle 8

    Hi friends, I wrote a simple tuxedo server with embedded sql that has only the task to insert a string passed by the client into a table in oracle DB. The Server is logged on to the database correctly during tmboot. When I start the client the servic

  • Sorting Files in Finder eg. Artists, Album etc.

    Hi, is there an option where i can arrange my files by artists or albums like in windows? I'd like to browse my music files easily without using itunes as im only editing the metadata. In Windows - Choosing sorting options: http://img.technospot.net/