Image gallery widget problems

First of all, I'm pretty new to coding and using CS4 on my Mac. I'm trying to create a simple lightbox gallery. I'm using the Adobe Widget Browser and downloaded Lightbox Gallery Widget. I had to copy/paste all of the coding because for some reason dragging/dropping didn’t work. All of my thumbnails look good, but when I view in Live mode or in a browser, the large image does not appear. All of my images are in the correct folder and linked, but I'm thinking there's a problem with the 'next', 'prev', etc images.  I’m sure it’s something simple I’m missing, but I’m at my wits end. I’ve used the Markup Validation Service and it checks out ok. Here is my site:
http://www.turtlecell.com/index.html
I’d appreciate any assistance! Thank you!
Holly

Having a similar issue - I had taken some iphoto galleries off my mobile me gallery page but they were still linked to pages published in iWeb.
When I realized this I opened iWeb and took the gallery widgets out.
Then went into iPhoto and republished the galleries to mobile me, then back to iWeb and they still showed blank (like the two didn't know about eachother - name of the gallery is still showing in iWeb, but no longer displays photos).
Next try - delete the widget from iWeb page, delete the mobile me published gallery from iPhoto, setup a new (different name and all) published gallery in iPhoto - works, gallery page in mobile me works, back to iWeb and insert widget menu and the old galleries are still listed, no new galleries are showing up in iWeb now - great.
So, trying the tricks of shutting down iPhoto, iWeb, logging out of mobile me account in system preferences as well as via safari on me.com - then log back into every thing and start up iWeb again - still no new iPhoto published mobile me galleries showing in the iWeb insert-widget-mobile me menu.
Any help? Looking for a refresh in iWeb!?

Similar Messages

  • Web Gallery widget problems

    I'm having some issues with the mobileme web gallery widgets in iWeb. I first noticed when one of the widgets would not change photos as you roll over it, even though I had multiple photos in the gallery. I unpublished the gallery and re-published using a different name. The next time I started iweb it didn't find any of my mobile me galleries. Almost every other time I get this message when working in iWeb. If it does find my galleries, It doesn't find the new one, but it still lists the old gallery that I have unpublished. I've tried repairing permissions, rebooting. I've seen that a few people had this problem and it went away. Mine hasn't though. Any ideas?

    Having a similar issue - I had taken some iphoto galleries off my mobile me gallery page but they were still linked to pages published in iWeb.
    When I realized this I opened iWeb and took the gallery widgets out.
    Then went into iPhoto and republished the galleries to mobile me, then back to iWeb and they still showed blank (like the two didn't know about eachother - name of the gallery is still showing in iWeb, but no longer displays photos).
    Next try - delete the widget from iWeb page, delete the mobile me published gallery from iPhoto, setup a new (different name and all) published gallery in iPhoto - works, gallery page in mobile me works, back to iWeb and insert widget menu and the old galleries are still listed, no new galleries are showing up in iWeb now - great.
    So, trying the tricks of shutting down iPhoto, iWeb, logging out of mobile me account in system preferences as well as via safari on me.com - then log back into every thing and start up iWeb again - still no new iPhoto published mobile me galleries showing in the iWeb insert-widget-mobile me menu.
    Any help? Looking for a refresh in iWeb!?

  • Muse Image Gallery Widget that works like Itunes 'Coverflow' 3D Flick...

    Hi - I am trying to find a Muse widget that is an image gallery but that has an 'Itunes Coverflow' effect where you can flick through 3D images - something like this...please help!
    http://www.stepbystep.com/wp-content/uploads/2013/04/How-to-Set-iTunes-to-Automatically-Up date-Songs-on-an-iPod.jpg

  • Flash Image Gallery load problem

    This a familiar problem that has been put up here a thousand
    times I'm sure but as yet I haven't been able to find a solution
    for it. I've put together a simple image gallery using Flash and an
    XML file. It works perfectly on my system but there are issues with
    the images loading properly when I put them onto my site. I know
    very little Flash, I've been using a pre-made gallery that I
    downloaded but since it works on my computer I assume I should be
    able to get it to work online too. The thumbnails for the file seem
    to work fine and the information from the XML file is obviously
    being accessed, however the main images are not loading. I've
    included all the code below (Actionscript, XML and the Web coding),
    if someone could help me before I put my fist through a wall that
    would be great:
    Actionscript
    stop();
    //specify the url where folder is located below (if
    applicable)
    toadd="";
    t = 0;
    l = 0;
    theside = 1;
    galxml = new XML();
    galxml.load(toadd+"flash/fashion/easy-xml-gallery-2.xml");
    galxml.ignoreWhite = true;
    galxml.onLoad = function(success) {
    if (success) {
    maxnum = galxml.firstChild.childNodes.length;
    for (n=0; n<maxnum; n++) {
    specs = galxml.firstChild.childNodes[n];
    //TEXT FOR SIDE NAV
    duplicateMovieClip(side.thumbs.thumbsb, "thumbs"+n, n);
    thumbclip = eval("side.thumbs.thumbs"+n);
    thumbclip._x = n*100;
    thumbclip.thetitle = specs.attributes.name;
    thumbclip.theurl = specs.attributes.theurl;
    thumbclip.thecaption = specs.attributes.caption;
    thumbclip.thenum = n+1;
    thumbclip._alpha = 100;
    loadMovie(toadd+"/flash/fashion/images/"+(n+1)+"b.jpg",
    thumbclip.thumbload.thumbload2);
    play();
    side.thumbs.thumbsb._visible = false;
    mainperc.onEnterFrame = function() {
    if (mainperc.perc<98) {
    mainperc._alpha += 5;
    mainperc.perc = Math.round(l/t*100);
    mainperc.perctext = mainperc.perc+"%";
    mainperc.ltext = "OF THUMBNAILS LOADED
    ("+Math.round(t/1024)+"kb)";
    if (mainperc.perc>98) {
    //mainperc._alpha -= 5;
    if (mainperc._alpha<-50) {
    delete mainperc.onEnterFrame;
    XML
    <gallery>
    <pic1 name="ONE">
    <pic2 name="TWO"/>
    <pic3 name="THREE"/>
    <pic4 name="FOUR"/>
    <pic5 name="FIVE"/>
    <pic6 name="SIX"/>
    <pic7 name="SEVEN"/>
    <pic8 name="EIGHT"/>
    <pic9 name="NINE"/>
    <pic10 name="TEN"/>
    </gallery>
    Webpage coding
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>shorty designs</title>
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #666666;
    body {
    margin-left: 0px;
    margin-top: 0px;
    background-image: url(images/fashion_back.gif);
    background-repeat: no-repeat;
    a:hover {
    color: #999999;
    text-decoration: none;
    .Sections {
    color: #333333;
    font-weight: bold;
    #wrapper {
    background-color: #FFFFFF;
    padding: 10px;
    width: 760px;
    margin-right: auto;
    margin-left: auto;
    .section_reg {
    color: #333333;
    font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: large;
    padding-left: 10px;
    .contact {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: large;
    color: #333333;
    background-color: #FFFFFF;
    width: 400px;
    padding-left: 22px;
    text-align: right;
    .section_back {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: large;
    color: #FFFFFF;
    background-color: #000000;
    width: 135px;
    padding-left: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    background-position: center center;
    vertical-align: middle;
    height: auto;
    .style2 {color: #F0F0F0}
    a:link {
    text-decoration: none;
    color: #333333;
    a:visited {
    text-decoration: none;
    color: #333333;
    a:active {
    text-decoration: none;
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <div id="wrapper">
    <p class="Sections"><img src="images/version5.jpg"
    alt="shorty logo" width="166" height="85" /><span
    class="contact">Contact by email:
    [email protected]</span></p>
    <p class="Sections">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','536','height','518','align','right','src','/flash/fashion/fashion','quality','high',' pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=Shockwa veFlash','movie','/flash/fashion/fashion'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="536" height="518" align="right">
    <param name="movie" value="/flash/fashion/fashion.swf"
    />
    <param name="quality" value="high" />
    <embed src="/flash/fashion/fashion.swf" width="536"
    height="518" align="right" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash"></embed>
    </object>
    </noscript>
    </p>
    <p class="section_back">Fashion</p>
    <p class="section_reg"><a
    href="travel.html">Travel</a></p>
    <p class="section_reg"><a
    href="wedding.html">Wedding</a></p>
    <p class="section_reg"><a
    href="layout.html">Layout</a></p>
    <p class="section_reg"><a
    href="personal.html">Personal</a></p>
    </div>
    </body>
    </html>

    Yep, these are the directions:
    this is very easy to update. You only need to edit the simple
    xml file and add images to the images folder.
    step 1.
    add as many images as you like at the size 536 x 403
    step 2.
    create thumbnails for the above images at size 100x75
    step 3.
    update the xml file with the name url and caption for each
    image. (to take the url off just click through to the button on the
    main picture and delete the script that says getURL(theurl)
    step 4.
    open flash file and change the 'toadd' variable to the folder
    where the flash file and image folder is located on your site.
    thats it done.
    The frustrating thing now is that the files are finally being
    found but the thumbnail function has decided to mess up.

  • HELP! - XML Image gallery, simple problem

    I've posted this problem before and gotten no response. Very
    simple I'm sure, I just don't know much Flash. Basically I've
    created an image gallery that should look like this:
    http://www.flashcomponents.net/upload/samples/1448/index.html.
    The problem is that the thumbnails are not being accessed properly
    (from what I can tell), making it look like this:
    http://shortydesigns.com/index.html.
    The images are all in the same folder and since one thumbnail is
    loading, I can't see why the others aren't. The Actionscript in the
    Flash file is as follows (it was created with Flash 10):
    First Piece of Code
    stop();
    // specify the url where folder is located below (if
    applicable)
    toadd = "";
    t = 0;
    l = 0;
    theside = 1;
    galxml = new XML();
    galxml.load(toadd+"flash/fashion/easy-xml-gallery-2.xml");
    galxml.ignoreWhite = true;
    galxml.onLoad = function(success) {
    if (success) {
    maxnum = galxml.firstChild.childNodes.length;
    for (n=0; n<maxnum; n++) {
    specs = galxml.firstChild.childNodes[n];
    // TEXT FOR SIDE NAV
    duplicateMovieClip(side.thumbs.thumbsb, "thumbs"+n, n);
    thumbclip = eval("side.thumbs.thumbs"+n);
    thumbclip._x = n*100;
    thumbclip.thetitle = specs.attributes.name;
    thumbclip.theurl = specs.attributes.theurl;
    thumbclip.thecaption = specs.attributes.caption;
    thumbclip.thenum = n+1;
    thumbclip._alpha = 100;
    loadMovie(toadd+"flash/fashion/images/"+(n+1)+"b.jpg",
    thumbclip.thumbload.thumbload2);
    play();
    side.thumbs.thumbsb._visible = false;
    mainperc.onEnterFrame = function() {
    if (mainperc.perc<98) {
    mainperc._alpha += 5;
    mainperc.perc = Math.round(l/t*100);
    mainperc.perctext = mainperc.perc+"%";
    mainperc.ltext = "OF THUMBNAILS LOADED
    ("+Math.round(t/1024)+"kb)";
    if (mainperc.perc>98) {
    // mainperc._alpha -= 5;
    if (mainperc._alpha<-50) {
    delete mainperc.onEnterFrame;
    Later in the timeline:
    stop();
    pic.info.thenum = side.thumbs.thumbs0.thenum;
    pic.info.thecaption = side.thumbs.thumbs0.thecaption;
    pic.info.thetitle = side.thumbs.thumbs0.thetitle;
    pic.info.theurl = side.thumbs.thumbs0.theurl;
    loadMovie(_root.toadd+"flash/fashion/images/1.jpg",
    pic.pic2.pic3);
    onEnterFrame = function () { side.gotoa = 110;if
    (side._alpha>99) {side._alpha = 100;delete
    onEnterFrame;}side.lefta = side.gotoa-side._alpha;side._alpha +=
    side.lefta/5;pic._alpha = side._alpha;};

    I noticed two thing:
    1. I guess the error occurs when currentImage variable is out
    of range of sortedXML array. You, perhaps need to trace this var
    and see at what point the error happens.
    2. Unless I missed someting, It seems that you always load
    images. At some point you load images that are already loaded. It
    is inefficient. You, perhaps, better off reusing already loaded
    images.

  • Floating Gallery Widget- Images on a Page

    I have a  problem with the gallery widget.. it keeps changing its position ON THE PAGE, ie. it 'falls' past the bottom of the page or if positioned with a text box underneath it, it will often 'fall' down with the caption on the pictures covering text in the text box.  
    It seems to be arbitrary.. it happens sometimes but not all the time on all the gallery widget images.  And it does not appear to matter if there is only ONE picture in the gallery widget or multiple images.
    My book is very image heavy and my reliance on images to remain in place, in relation to the text is mandatory
    Any ideas on why this is happening and if so.. what to do to correct it all? 
    Is it a bug in the app, or... what?  If it is a bug, when can we expect an update to iBooks Author?
    I am working in landscape mode and do not bother with the portrait  mode.

    That object is linked to text on that page.....iBA Help has this to say about that
    -=-
    On a book page, an object is either inline, anchored, or floating. Objects you add in iBooks Author are either anchored or floating by default. You can follow the steps below to add an object as an inline object, or to change an object from one type to another after you add it.
    You can place an anchored or inline object anywhere on a page with text on it. Each anchored or inline object has a marker ( or ) that indicates the text the object is associated with.
    Add an object as inline
    Change an object from one kind to another
    Select the object.
    Do one of the following:
    In the format bar: Click Inline, Floating, or Anchored.If the format bar isn’t visible, choose View > Show Format Bar.
    In the Wrap inspector: Click one of the Object Placement buttons.If the Wrap inspector isn’t open, click Inspector in the toolbar and click the Wrap Inspector button.
    If the controls for changing the object type are dimmed, it might be because you’re in portrait orientation. Try switching to landscape. Or try adding a title, label, or caption to the object and then converting it.
    Reposition an anchored or inline object
    You can place an anchored or inline object anywhere on a page with text on it.
    To reposition an anchored object: Drag the object or its marker to the text you want to associate the object with.When the object’s associated text moves to another page (because of changing content), the object moves to the same position on the new page.
    Important:  You can move an anchored object (or its marker) only in landscape orientation.
    To reposition an inline object: Drag the object, or cut and paste the object’s marker to a new location.

  • Problems using lightbox gallery widget

    Hi,  I am just learning Dreamweaver and thought I would try out a widget.  I tried the lightbox gallery widget, and it mostly works, except that I get a box with a question mark on the right, under the photo when it is enlarged.  It can't find some of the included widget image icon files. Anybody know why?  It does it in live view and firefox and safari.
    I looked at the code and from what I can tell, the code references images which appear to be in the correct directory /images/lightbox/blahblah.gif.
    For example, the widget is supposed to say 'close' under the image, and that text is a .gif image apparently.
    Anyone have this trouble or know what the problem could be?
    Thanks
    Bob

    I found a fix for something similar that occurred on my machine. I too was seeing no problems locally but when I posted it to my site, it just had the placeholder and no images....
    Apparently, dreamweaver is smarter than the browser... (maybe incorrect statement) however..... the file extensions are case sensitive!
    I had this-------- <A href="Img/CGM_1.JPG" border="0"  rel="lightbox[Img/CGM_1thumb.JPG]" title="CGM Pic Set"><img src="Img/CGM_1thumb.JPG" /></a>
    <a href="Img/CGM_2.jpg" rel="lightbox[Img/CGM_1thumb.JPG]"></a>
                      <a href="Img/CGM_3.jpg" rel="lightbox[Img/CGM_1thumb.JPG]"></a>
                      <a href="Img/CGM_4.jpg" rel="lightbox[Img/CGM_1thumb.JPG]"></a>
    Well, I didnt think anything was so bad, all of the colors were right I wasn't getting any warnings.... wtf?
    As it turns out, and this is only because I just started a new image set after testing an individual - - baby steps - - if you use the properties bar at the bottom of DW, it applies a different case for specific parts...... i.e. this is what it produced
    <A HREF="Img/CGM_1.jpg" border="0"  rel="lightbox[Img/CGM_1thumb.jpg]" title="CGM Pic Set"><img src="Img/CGM_1thumb.jpg" /></a>
                      <a HREF="Img/CGM_2.jpg" rel="lightbox[Img/CGM_1thumb.jpg]"></a>
                      <a HREF="Img/CGM_3.jpg" rel="lightbox[Img/CGM_1thumb.jpg]"></a>
                      <a HREF="Img/CGM_4.jpg" rel="lightbox[Img/CGM_1thumb.jpg]"></a>
    Notice the HREF's are now UPPER case and the jpg's are now lower case. !!!! really?!?!?
    Also, another thing to look out for is the folder/ in front of your thumbnail; make sure it is there. In my case I use my sam "Img" folder, not the "images" folder that lightbox creates.
    Hope this helps, I beat my head against the wall for a total of 10 hours over 2 days trying to figure this out. I couldn't find anything on the internet. I'm going to post this so others having this issue get it resolved. I found those, just no resolution.

  • How to edit image mask in Gallery widget

    When I place an image into the Gallery widget the image receives a mask.
    I am trying to edit this mask, but it doens't do any thing. I only can move the image inside of the mask, I can't edit the size of the mask.
    Does anyone know how this is be done in iBooks Author (I know this feature from other Apple software like Pages or iWeb).
    Or does anyone have the same problem?
    Thanks

    You will find an answer here : https://discussions.apple.com/thread/3706789?start=0&tstart=0

  • Gallery widget image number appearence

    Hi,
    I can't seem to find a way to remove the text (or modify it) that appears on the bottom of the gallery widget when you have more than 10 images as you can see on the image attached:
    As far as I know, you can't even changet the color, size or font for this text (that is rendered on the iPad very different from what appears on iBooks Author). This is also a problem when you are producing iBooks in languages other than english.
    Is there all we have at this moment?
    Thanks.

    Thanks for your help.
    Yes, I will have to put Keynote to rescue if I can't do it otherwise, but it makes little sense to recreate that behaviour in Keynote just because the Gallery Widget is missing such a basic feature (I'm sure most of the people will not go hit into this problem because it will only show when you add 10+ images to the gallery.

  • Problem with image gallery

    Hi to all.
    With ios 5.01 I have a little problem with image gallery. As you can see I have only 1 image, but there is always this **** message "download 0 of 46) (sorry, but I'm Italian )
    I've removed my icloud account from settings, but there is nothing to do, this message don't goes away. What I can do? Thanks in advance

    Hello,
    Just adding a gallery I want to do the same slideshow WoodWing's, but in InDesign, if anyone knows of?
    Thank you
    Link video slideshow WoodWing's: http://www.youtube.com/watch?v=Xt6gNaEZ0-M&feature=relmfu
    The first slideshow shown

  • Flash simple image gallery problem

    Hello I have what I think is an easy problem to solve but I
    can´t find a solution.
    I´m creating an image gallery with thumbnails on the
    right inside a symbol so that
    they can all fade in at the same time, and the bigger images
    on the left that also fade in.
    I can only fit 8 thumbnail images at a time, and want to have
    more than that.
    So I´ll add an arrow below the thumbs so that when you
    click on it, you can see the other thumbs.
    I have the first 8 thumbs on the first frame of a symbol and
    the rest on the second frame.
    My problem is that the symbol that contains the thumbs is a
    graphic symbol, so that the thumbs in it, that are button symbols
    can be clicked on. I tried using button and movie clip symbols for
    the thumbnails container but then the buttons (thumbs) can´t
    be clicked any more.
    That was not a problem till I had to add more than 8 thumbs,
    cause i need to give the container an instance name, and graphic
    symbols can´t have one.
    Here is the link to download the .fla
    www.ginkgo.com.uy/old/downloads/handheld_pink.fla
    In case I didn´t make my self clear, what I need is to
    know if there´s a way to have a movie clip or button symbol
    that can have buttons in it that can be clicked on.
    I hope I didn´t give you a headache.
    Thanks a lot, Marcelo.

    thanks.
    that´s what i thought but, if i convert the container to
    a button symbol the thumbs can´t be clicked anymore.
    And if I convert the container to a movie clip like you
    suggested, then if I click on any part of the container it
    just goes to the second frame of the movie clip container, if
    i click again it goes back to the first frame and so on.
    But there is no action script for the container at all,
    please try it out with the fla i uploaded.
    i can´t figure it out.
    thanks

  • Table Image Gallery Problem - Stretching / Distortion

    I am using tables for making image galleries and they have worked fine up until my most recent gallery which has images of different orientations: 3 landscape-style images and 2 portrait-style.
    The first (and only) large image I inserted into the table was landscape-style, and the 3 images of this type work fine. I used the 'Swap Image' behavior for each of the thumbnails I have below the large image. The problem is that the portrait-style images get stretched / distorted horizontally to fit the same dimensions as the landscape-style images.
    I've tried looking at the code to modify dimensions of the images but there are only dimensions for the 1st/only large image. I've also tried lengthening the height of the container div and the div inside it which contains the table gallery, but this did not fix my issue.
    I am somewhat new to Dreamweaver so this may be sort of a beginner's question, but I am hoping someone might help me to figure out how to make the portrait-style images be their original size and not stretched / distorted.
    If necessary I can provide the code and try to provide more info.
    Thanks!

    I played around with the code some more and changed both the height and width of the (ID: #large) image to "auto" which seems to have fixed the stretching and distortion.
    However, if possible, I'd still like to be able to center the portrait-style images in the table. Does anyone know how to do that?
    The updated page is visible here: http://www.csulb.edu/~mmccutch/misc2.html

  • Trying to fit "long" images into Widget Gallery

    Hi-
    I have several png's that are around 800px wide and 120px high.
    I'm struggling with trying to find a way to fit into gallery widget.  I've tried several things and can't seem to widget to be at that dimension so the entire image is visible.
    I've researched the forums and can'ts seem to find an answer.
    Please tell me what I am missing.
    Best,
    Matt

    I could get 2 images 800X120 px into the gallery widget to show completely. The widget margin had to be 45 because of the min size restrictions of the widget. So if you change the background color of the widget to be same as that of the page it is on, the extra space of the widget will blend and your images will look 800X120 as they are supposed to. Is this what you were trying to to?

  • Scrolling image gallery problems

    I am creating a scrolling image gallery using thumbnails.  I have 36 thumbnails that are 100 x 100 px.  I cannot figure out the x y coordinates to line up the images correctly.  They are overlapping.  I've put in the first x coordinate at 0 and the first image goes to the left, and that is fine, it is when I click the last image to put in a number, which I thought would be 36 x 100, they do not line up, they over lap.  Does anyone have a clue how to fix this?  I am working on this site for a very pushy client who wants it done NOW...Thanks,

    If you crerate a Sprite or Movieclip 3600 x 100 you can place then one after another on that container then you only have 1 object to place and scroll.

  • 5800 image gallery problem

    hi guys
    I recently bought 5800 and i have a question: why does image gallery show all pictures that's on memory card? even if they aren't in  picture folder, for example it shows all power mp3 skins, and they r stored in power mp3 directory.
    So if i decide to have some private pictures on memory card i cant it will be all shown in Images & Videos, its like phone scans my card and all that is picture file he put in gallery.
    thanks in advance !

    Have a look at this..
    /t5/Nseries-and-S60-Smartphones/Password-protect-a-folder-on-application-screen/td-p/645383
    --------------------------------------------------​--------------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

Maybe you are looking for

  • Adding more info to PO Approval WF Notification

    I’m a newbie at workflow and I have a requirement to customize PO Approval workflow Notification this means Notification will have more information than Oracle seeded notification information, by adding additional information to the notification emai

  • Urgent question about two monitors for Sun Ultra 40 M2

    Hello, I feel extremely unhappy to ask you the following. I bought recently a Sun Utra 40 M2. I thought that with NVIDA Quadro FX1500 one could have two monitors as there are two DVI-D 's to connect with two monitors. But today I heard from SUN suppo

  • How should I organize and disable non-english fonts.

    I'm a graphic designer and I'm having trouble organizing all of these random hebrew/japanese/chinese fonts that I never use. I don't want to screw up my system, but I also don't want to scroll through 200 fonts every time I want to find one. Is there

  • Recurring inspection lot status "created" changed automatically to "Release" without change history

    Dear Experts, I observed that for few materials recurring inspection lot (inspection lot origin 09) status from "CRTD CHCR SPRQ" to "REL  CALC SPRQ PRSI" changed automatically without manual interruption. I have thoroughly checked the change document

  • Oracle Internet Expenses getting self approved

    All, We have implemented Internet expense in our instance but after a major patching , all the Expense Reports are getting self approved. Is there any setting or profile option that should be set so that it uses AME for approval. I have checked the A