ItemStyle.xsl append site name to image

Hi
I've added a cqwp that fetches information from a list. One of the column (TestRelative) is set to hold only the image filename i.e. myImage.jpg
I set the Image (in CQWP parameter settings) to  TestRelative.
When the page renders the image doesnt show, i get the red X. Checking the image url in the browser I can see that the address is missing the current sitecollection and web. (http://server.com/imagelib/myimage.jpg)
its supposed to read (http://server.com/sites/sc/imagelib/myimage.jpg) or if placed in a subsite then (http://server.com/sites/sc/subweb/imagelib/myimage.jpg)
The SC and subweb are needed to be dynamic.
Here is the partial xslt:
<xsl:template name="customReImageLeft" match="Row[@Style='customReImageLeft']" mode="itemstyle">
<xsl:variable name="SafeLinkUrl">
<xsl:call-template name="OuterTemplate.GetSafeLink">
<xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="SafeImageUrl">
<xsl:call-template name="OuterTemplate.GetSafeStaticUrl">
<xsl:with-param name="UrlColumnName" select="'ImageUrl'"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="DisplayTitle">
<xsl:call-template name="OuterTemplate.GetTitle">
<xsl:with-param name="Title" select="@Title"/>
<xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
</xsl:call-template>
</xsl:variable>
<div class="item">
<xsl:if test="string-length($SafeImageUrl) != 0">
<div class="image-area-left">
<a href="{$SafeLinkUrl}">
<xsl:if test="$ItemsHaveStreams = 'True'">
<xsl:attribute name="onclick">
<xsl:value-of select="@OnClickForWebRendering"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="$ItemsHaveStreams != 'True' and @OpenInNewWindow = 'True'">
<xsl:attribute name="onclick">
<xsl:value-of disable-output-escaping="yes" select="$OnClickTargetAttribute"/>
</xsl:attribute>
</xsl:if>
<img class="image" style="width:150px;height:150px" src="{$SafeImageUrl}" title="{@ImageUrlAltText}">
<xsl:if test="$ImageWidth != ''">
<xsl:attribute name="width">
<xsl:value-of select="$ImageWidth" />
</xsl:attribute>
</xsl:if>
<xsl:if test="$ImageHeight != ''">
<xsl:attribute name="height">
<xsl:value-of select="$ImageHeight" />
</xsl:attribute>
</xsl:if>
</img>
</a>
</div>
</xsl:if>
<div class="link-item">
<xsl:call-template name="OuterTemplate.CallPresenceStatusIconTemplate"/>
<div class="customTitle">
<xsl:value-of select="@Title" />
</div>
<br />
<div class="customDescription">
<xsl:value-of select="@Description" />
</div>
</div>
</div>
</xsl:template>

Hi Orange,
if i may know, the address shown from your code is only the filename, without full web/site URL yes?
if you add a concat tag, will it help? for example:
<xsl:value-of select="/*/properties/property[@name='report']/@value" />
please check these 3rd party link example perhaps able to help you to have a workaround?
http://blog.greenbrain.de/2014/07/configuring-content-query-webpart-to.html
https://www.nothingbutsharepoint.com/sites/eusp/pages/how-to-customize-sharepoint-list-content-display-using-content-query-web-part.aspx
Regards,
Aries
Microsoft Online Community Support
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Similar Messages

  • Content Query Web Part - Custom ItemStyle.xsl to display image with hyperlink

    I don't have access to InfoPath or SharePoint Designer to edit the ItemStyle.xsl. So any solution suggested is preffered to be a manual change to ItemStyle.xsl
    I use Content Query Web part (in the main site) to list all the Wikis created in the a sub-site. The idea is to link each wiki to its printable version stored elsewhere.
    The wiki has custom column say "Link" that hold hyperlinks to the printable version.
    I want to create a column in the content query web part that displays an image (same image for all wikis stored in the site Assets) but on clicking takes me to the printable version page.
    I got the image displayed but the hyperlink takes me to the location where the image is stored and not to the printable version page.
    <!--Variable declared to read the link from the column Link-->
    <xsl:variable name="PDFLink">
    <xsl:value-of select="@Link"/>
    </xsl:variable>
    <!-- Image to the hyperlink-->
    <a href="{$PDFLink}">
    <img src="../Images/Icon.jpg"/>
    </a>

    Hyperlink column is treated a little different. The field, by default, puts the URL and then the friendly name concatenated together, but separated by a comma. So I created two variables one that pulls everythng before the comma and the other after. Then
    the html "a" tag looks like this:
    <!--Variable declared to read the link from the column Link-->
    <xsl:variable name="ActualLink" select="substring-before(@LinkColName,',')"/>
    <xsl:variable name="FriendlyName" select="substring-after(@LinkColName,',')"/>
    <!-- Image to the hyperlink-->
    <a href="{$ActualLink}"><xsl:value-of select="$LinkColumnName"/>
    <img src="/Images/Icon.jpg">
    </a>

  • OAF Tutorial Extension - To add Site Name in Purchase Order Summary Page

    I have gone through all steps for adding Supplier Site Name for Purchase Order Summary Page. It works but seems it shows SiteID instead of Site Name.
    The main instructions says
    Step 2.3 Create Your New View Object (VO)
    Make a copy the PoSummaryVO query statement before you begin creating your new VO. Expand the oracle.apps.fnd.framework.toolbox.tutorial.server package in the Navigator pane and edit PoSummaryVO. In the View Object Editor, select Query to display the query statement for this VO. Make a copy of the query statement.
    Create a new VO, named <YourName>PoSummaryVO, that extends oracle.apps.fnd.framework.toolbox.tutorial.server.PoSummaryVO.
    Create the VO in the <yourname>.oracle.apps.fnd.framework.toolbox.tutorial.server package.
    Add the oracle.apps.fnd.framework.toolbox.schema.server.SupplierSiteEO entity object. Leave the Read Only and Reference checkboxes checked. We are going to use this entity object only for read-only purposes.
    Add the SupplierSiteId and SiteName attributes from the SupplierSiteEO entity object.
    Paste the query statement that you copied from PoSummaryVO into the query statement field for <YourName>PoSummaryVO. Now append the following SQL phrases to the copy of the PoSummaryVO query statement to compose the query statement for the <YourName>PoSummaryVO.
    SELECT ...,
    SupplierSiteEO.SUPPLIER_SITE_ID,
    SupplierSiteEO.SITE_NAME
    FROM ...,
    FWK_TBX_SUPPLIER_SITES SupplierSiteEO
    WHERE ...
    AND SupplierEO.SUPPLIER_ID = SupplierSiteEO.SUPPLIER_ID
    Step 2.8 Personalize the UI to Display Your New Attribute
    Rebuild the ExtendLab project and make sure you have no errors.
    Run the <Yourname>PoSummaryCreatePG.xml page with personalization turned on (see Personalizing Your Pages and Portlets for more information on how this is done).
    Select the Personalize Page global link.
    In the Choose Personalization Context page, select Page: <Yourname> Framework Toolbox Tutorial: Multistep Create from the Scope poplist and select the Apply button.
    In the Personalize Page page, check the Complete View radio button for the Personalization Structure. Expand the Stack Layout: Purchase Order Summary Region node, locate the Table: Purchase Orders Table entry in the page hierarchy and select the Create Item icon.
    In the Create Item page:
    Set the Item Style to Message Styled Text.
    Set the ID to SiteName.
    Set the Prompt to Supplier Site
    Set the View Attribute to SiteName
    Set the View Instance to PoSummaryVO1
    Select the Apply button
    In the Personalize Page Hierarchy page, locate the Table: Purchase Orders Table entry again and select the Reorder icon.
    In the Reorder Contents of Table page's Site list, move the Supplier Site item to be sequenced immediately after the Supplier item.
    Select the Apply button.
    In the Personalize Page Hierarchy page, select the Return to Application link. Now you should see the Supplier Site column added to the Orders Table as shown in Figure 1 (you should see your name in the page title).
    Note: We set the View Instance to PoSummaryVO1 and not <YourName>PoSummaryVO1. The BC4J substitution will take care of properly creating an instance of <YourName>PoSummaryVO1 at runtime in place of the PoSummaryVO1.
    It does not show site name, it shows site id after havig done personalization.
    Any idea why it would show site id and not site name.
    KD

    What I found is there are 2 variables SiteName and SiteName1, if you use SiteName1 then it shows proper value as a site description. I replaced SiteName with SiteName1 and it works. This might help to all who are like me and trying Tutorial example.
    I am not sure how many may have tried OAF - Tutorial examples. They are really complicated and not easy and in most cases they are not coming out in first try but if you really try then it will give lot of understanding.

  • Certificate does not contain the correct site name

    Hello,
    I have to make a midlet that connect to a tomcat 5.5.9 server with ssl.
    I import the certificate whit tomcat alias in the wireless toolkit but when i run the midlet this error appear: Certificate does not contain the correct site name
    import java.io.*;
    import javax.microedition.midlet.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    public class HelloNet extends MIDlet implements CommandListener , Runnable{
    // User interface command to exit the current
    // application.
    private Command exitCommand = new Command("Exit",
    Command.EXIT, 2);
    // User interface command to issue an HTTP GET
    // request.
    private Command getCommand = new Command("Get",
    Command.SCREEN, 1);
    /// The current display object.
    private Display display;
    // The url to GET from the 'net.
    private String url;
    * Initialize the MIDlet with a handle to the
    * current display.
    public HelloNet() {
    url = "https://127.0.0.1:8443/Hello.txt";
         display = Display.getDisplay(this);
    * This lifecycle method should return immediately
    * to keep the dispatcher
    * from hanging.
    public void startApp() {
         showPrompt();
    * Display the main screen.
    void showPrompt() {
    String s = "Press Get to fetch " + url;
    TextBox t = new TextBox("Http Result", s,
    s.length(), 0);
    t.addCommand(exitCommand);
    t.addCommand(getCommand);
    t.setCommandListener(this);
         display.setCurrent(t);
    * pauseApp signals the thread to stop by clearing
    * the thread field.
    * If stopped incorrectly, it will be restarted from
    * scratch later.
    public void pauseApp() {
    * destroyApp must cleanup everything. The thread
    * is signaled
    * to stop and no result is produced.
    * @param unconditional is a flag to indicate that
    * forced shutdown
    * is requested
    public void destroyApp(boolean unconditional) {
    * commandAction responds to commands
    * @param c command to perform
    * @param s Screen displayable object
    public void commandAction(Command c, Displayable s) {
         if (c == exitCommand) {
         destroyApp(false);
         notifyDestroyed();
         } else if (c == getCommand) {
              Thread th= new Thread (this);
              th.start();
    * Read the content of the page.
    public void run() {
    TextBox t = null;
    StringBuffer b = new StringBuffer();
    HttpsConnection c = null;
    InputStream is = null;
         try {
         int len = 0;
         int ch = 0;
         System.out.println("Cerco di leggere");
    c = (HttpsConnection)Connector.open(url);
    c.setRequestMethod(HttpsConnection.GET);
         is = c.openInputStream();
    // length of content to be read.
    len = (int) c.getLength();
    if (len != -1) {
    // Read exactly Content-Length bytes
    for(int i=0; i<len; i++) {
    if((ch = is.read()) != -1) {
    b.append((char) ch);
    } else {
    // Read until connection is closed.
    while((ch = is.read()) != -1) {
    len = is.available();
    b.append((char) ch);
    t = new TextBox("Https Result", b.toString(),
    b.length(), 0);
         } catch (Exception e) {
    e.printStackTrace();
    String s = e.toString();
    if(s != null) {
    t = new TextBox("Https Error", s, s.length(),
    0);
    } finally {
    if (is != null) {
         try {
              is.close();
         } catch (Exception ce) { }
    if (c != null) {
         try {
              c.close();
         } catch (Exception ce) { }
    display.setCurrent(t);
    }

    re: code tags, please see http://forum.java.sun.com/help.jspa?sec=formatting.
    As for the rest:
    See, we now know that you used keytool to generate you certificate. You need a new certificate. This time, when keytool asks you for a first and last name, type 127.0.0.1.

  • Need site name large in box to right of logo in header? Dreamweaver CS5.5

    <div class="container">
      <div class="header"><!-- end .header --><img src="images/cropped_reindeer.jpg" width="225" height="213" alt="girl kissing sad reindeer" /></div>
    Tried to put the site name in big font to the right of picture in index.html code using thrColFixHdr.css but text falls to bottom of box on right of image, and the text doesn't look how I want it to look. Should I make an HTML table with one row and put it inside the <div> or what is a good solution?
    I read to the effect that tables were passe nowadays. .

    Writing the question and thinking out loud that way, helped me to find a solution based on my knowledge of HTML, not so much CSS. My solution looks like:
    <div class="container">
      <div class="header"><!-- end .header -->
       <table cellspacing="0" cellpadding="0" border="0" width="960">
      <tr>
        <!-- Row 1 Column 1 -->
        <td width="225">
            <a href="index.html"><img src="[image name]" width="225" height="213" /></a>
        </td>
        <!-- Row 1 Column 2 -->
        <td align="left">
            <h1>Title</h1>
            <h2>Subtitle</h2>
        </td>
      </tr>
    </table>
    </div>
    It looks okay. Just like Mart's really.

  • Domain Nam / Site Name Problem

    Ok I wish to publish my iWeb content directly to www.DomainName.Com
    Instead it publishes to www.DomainName.Com/SiteName
    How can I change this stupid issue?
    I know I can change the directory permissions on my server to NOT include "mydomain.com" then add mydomain.com as the site name but that is not what I want my published site name to say.

    To quote [my blog|http://www.wyodor.net/blog/archives/2010/01/entry_299.html]:
    +iWeb organizes and publishes its pages in Sites. It will append the Site name to the base URL of your webserver.+
    +If you signed up for a webhosting-and-domainname package (not MobileMe) you can avoid the Sitename in the URL with sub-domains.+
    +www in an URL is a sub-domain. Just as web in web.me.com is a sub-domain of me.com.+
    +Note : It doesn’t work with MobileMe and Personal Domain. MobileMe doesn’t support sub-domains and the sub-domain in your CNAME will be ignored anyway.+
    +Based on my experience to figure out how to avoid the Site name in the URL I wrote an article, or tutorial if you like, on how to do that.+
    +In the article I describe what I got and what I did with my free webhosting package.+
    +The article describes how I set up iWeb and fooled it to use the sub-domains, what extras needed to be done and what the drawbacks are in the end.+
    +And in the very end it describes how I solved the drawbacks and why all of the above wasn’t necessary.+
    +iWeb doesn’t know about all this. So you can happily keep publishing your webpages as before.+
    +And it works. Having your cake and eat it too. Nice.+
    +Below are three URLs. The base URL, the URL iWeb creates, and the sub-domainname URL. When you click a link note the changing of the URLs when it redirects to the right webpage.+
    +http://dailynews.webege.com/+
    +http://dailynews.webege.com/iweb/+
    +http://iweb.dailynews.webege.com/ (the Tutorial)+
    +To test an iWeb Site with a Blog RSS feed and iPhoto/Podcast subscriptions, proceed here :+
    +http://dailynews.webege.com/holiday/+
    +As a bonus there’s a short explanation of how to solve a PHP parse error when you publish an iWeb Site to a 3rd party host with an ill-configured webserver.+

  • XSL Append & XSL Variable !!!

    Hi,
    If anyone has any ideas on the below problem I would sincerely appreciate it as it is driving me crazy!!!
    I need to concatenate/append the contents of a Collection node into a string variable, such that each element is comma seperated in the string. I need to do this to pass the string of comma seperated values into a 3rd party service that I am calling. It looks like I would use an XSL transform to achieve this. However, it appears to be impossible because Oracle Transform mapper does not support <xsl:variable> ie. I get "unsupported" when I try to use this.
    So,for example, I want to convert the following collection
    <NamesCollection>
    <name>A</name>
    <name>B</name>
    <name>C</name>
    <name>D</name>
    <name>E</name>
    <name>F</name>
    <name>G</name>
    <name>H</name>
    </NamesCollection>
    ...such that it would become:
    <NAMES>A,B,C,D,E,F,G,H</NAMES>
    I found some sample XSL code in google:
    <xsl:variable name="String">
    <xsl:for-each select="/NamesCollection">
    <xsl:value-of select="name" />
    <xsl:text>,</xsl:text>
    </xsl:for-each>
    </xsl:variable>
    However, Oracle mapper does not support "xsl:variable". So the above is no good.
    I cannot also nest a "for-each" inside a node,
    Eg.
    <NAMES>
    <xsl:for-each select="/NamesCollection">
    <xsl:value-of select="name"/>
    </xsl:for-each>
    </NAMES>
    because it complains:
    Error: Invalid Usage of <for-each> Element
    If anyone has any suggestions, they would be sincerely appreciated !!!!!!!!!

    Humm...
    You can iterate trough your NamesCollection (see <HOME>\integration\orabpel\samples\tutorials\112.Arrays sample).
    After, for each <name>, you can use an "Assign" activity to append all names to another variable.
    The trick here is to edit the "Assign" source code on process.bpel (because the default behaviour is to replace the value, not append). You have to use a BPEL extension:
    <assign name="Assign_1">
    <bpelx:append>
    <bpelx:from concat(bpws:getVariableData(eachName_Variable),",") />
    <bpelx:to variable="namesWithComma_Variable" />
    </bpelx:append>
    </assign>
    Logic:
    <IterateOver NamesCollection>
    <get one name>
    <concat it with a comma>
    <concat it with other names>
    <loop iterate>

  • How can i change the itunesu site name?

    Hi,
    recently our dean asked us to change the itunesu site name in the lists from UNIPD to UNIPD - Università degli Studi di Padova.
    We have used the old site admin to do that because the web admin has not this feature available. Nothing changed... what is the solution?

    You can request a site name change via [email protected]
    -Thanks

  • Whenever I go to a site or click anything, I always have to move my mouse for the page to load, why is this happening? (When I go to a site full of images, I move my mouse a little bit at a time and it loads one image at a time)

    Whenever I go to a site or click anything, I always have to move my mouse for the page to load, why is this happening? (When I go to a site full of images, I move my mouse a little bit at a time and it loads one image at a time)

    Hi, Tom.
    FYI: You've not stated which of your listed Macs is having the problem. However, the following may help in any case:
    1. Did you install Front Row using the Front Row hack on a Mac that did not ship from the factory with Front Row installed? If so, See my "Uninstalling the Front Row hack" FAQ. This has been known to cause a variety of problems, including the menu bar (Clock, Spotlight) issues you noted.
    2. If you did not install the Front Row Hack, an incompatible or corrupted Startup or Login Item may be partly to blame for the problems with the menu bar. My "Troubleshooting Startup and Login Items" FAQ can help you pin that down if such an item is causing the problem.
    3. As a general check, run the procedure specified in my "Resolving Disk, Permission, and Cache Corruption" FAQ. Perform the steps therein in the order specified.
    4. Re: Safari and Mail, if not sorted by any of the above, see also:• "Safari: Blank icon after installing Security Update 2006-002 v1.0."
    • My my "Multiple applications quit unexpectedly or fail to launch" FAQ
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Brand new macbookpro; recent install Yosemite; computer now opens to my name and image but no place to put the password but nothing happens when trying to click on restart etc.

    Macbook Pro purchased December 2014.....was fine until update iOS  to Yosemite 2 days ago. Now, when turned on my image with my name comes up on the screen...no place to put your password.....at the bottom...restart, but used cursor to click on the restart and also my name, the image etc....nothing happens.
    I shutdown to go into the Recovery OS....and got the screen about resetting the password....which doesn't need reset. The third choice seemed more appropriate regarding the keyboard...but could not click on any of them with the cursor.
    Spent an hour with Apple support who ended up referring me to an Apple store that's a 100 mile round trip from me. Can't believe they can't help me...and can't believe this is happening to a brand new Mac.....guess Apple is no different than any other computer...install an update or upgrade...and immediately have problems.
    Exasperated,
    Joe......good thing my Dell is working

    Resetting User Password in Lion and Mountain Lion
    Boot into your Recovery Partition by holding down the Command and R keys whilst booting.
    When the Recovery screen appears, go to the Utilities menu and open Terminal.
    In Terminal, type:
    resetpassword
    ...a small app will open and allow you to choose the user for whom you want to change the password. If you are the admin, be certain that you choose your admin user. Type in your new password twice and give yourself a good hint. Click OK (or Done or whatever) and reboot, enjoying the use of your new, hopefully memorable, password.
    Good luck,
    Clinton

  • CS5 exporting TIF from EPS appends artboard name to the file name

    We have recently upgraded to CS5 from CS3. We routinely create EPS files, then export them to TIF's for final use. Previously I used the CROP MARKS tool to set the specific visual size of the art. Without the crop marks, when exporting to a TIF the exported file clips to the edges of the bounding box. In the event I have vertical lines at the outside limits of the drawings they stand the possibilitiy of getting "clipped" or dropped off when the resulting TIF is printed or placed in another document.  I understand the ARTBOARDS have replaced the crop marks setting.  If I create an art board, rename it as MYTAK4 ARTBOARD and then export from the EPS to a TIF, having the radio button "artboard" checked, the resultant TIF file becomes FILENAME_MYTAK4_ARTBOARD.tif.  With the hundreds of files that we create and continually revise, it is important that the any files we revise, maintain the same file name, not another file with same base name, with an appended artboard name tacked on before the TIF extension.  The only solution I have arrived at is to RENAME the file once the TIF is exported to remove the unwanted artboard portion of the name. Anyone have a better solution?

    Hi,
    We just released this tool: FERRY (http://ferry.thedamarmada.com). It does exactly what you want and a little bit more.
    I think it's worth it a try.
    It comes with a free demo that will export 5 layers.
    Take a look and let us know if it's what you need.
    It could be easily tweaked.
    Jordi

  • Change Email Sender[Site Name] of Sharepoint Online Workflow

    Is there any way to change the name of the Sender to List name rather than Site Name of a workflow that sends email?
    Please see screenshots below for guidance.
    The email from the workflow shows that the email came from ISO Manuals, but I want to change it to the list name sample EMS Manuals which the item is located and the workflow is running through that particular list item.
    Site Name - ISO Manuals
    Lists Name -      EMS Manuals
    Engineering Manuals
    Agri Manuals
    This is the sample email generated from Workflow.
    Please help.
    Best Regards,
    Ching

    Hi ching, I don't believe that's possible. See this thread-
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/22d95510-95b7-4882-b988-4038e59fb031/action?threadDisplayName=how-to-change-the-display-name-for-sharepoint-emails-sent-using-workflows
    cameron rautmann

  • How do I remove old web site when publishing new site with same URL in iweb? Hit replace when publishing new iweb site (so we could have control over changes) but new site name is attached to old via a / after our www address we want to keep.

    I hit the replace when publishing the new iweb site (so we could have control over changes - last one was not an apple based site) but new site name is attached to old via a forward slash and underscore after our www address. Makes it very messy with a very long web address.  Original address now followed by iweb site name followed by name of first page? Went for iweb as not that computer literate - all going so well?! Cheers for help in anticipation. Have to get off to work now but be great end to week if we could be sorted tonight. Rupes

    Well yes of course, if you try and publish through iWeb there won't be an option to publish without your site folder which is exactly why I told you to download Cyberduck and use Cyberduck to upload your site to your server having published your site from iWeb to a local folder.  That is what you need to do if you don't want your site name to be included in yoru url.
    It would have been easier also if you had used Cyberduck initially to connect to your server and delete your old site yourself - at least that way you would have deleted the correct files rather than relying on your hosting service to do it and doing it incorrectly.
    Download Cyberduck and then select the publish to a local folder option from iWeb and then use Cyberduck to upload your site to your server, but rather than uploading the whole site folder and separate index file, upload ONLY the contents of your site folder and then your url will be http://www.domain.com/page_name.html.
    It really isn't rocket science!

  • I want to find the image tag name from Image layer name InDesign JavaScript?

    I want to find the image tag name from Image layer name InDesign JavaScript?

    Hi,
    You can use following script to fetch image tag name and the layer name on which it lie:
    var imgBox = app.activeDocument.rectangles // fetch all rectangular frames from the active document
    for(var i = 0; i< imgBox.length; i++)
      if(null != imgBox[i].associatedXMLElement )
                var b = imgBox[i]
               alert("Image tag name "+imgBox[i].associatedXMLElement.markupTag.name + "\n exist on layer " + imgBox[i].itemLayer.name)
    Hope this would help you to resolve your problem.

  • How can we change the default site name to custom title in sharepoint desginer from email

    i have a site name human resource
    i am using sharepoint desginer workflow to send alert on a list
    it is giving from email as site Name "Human Resource"
    i want to change from title of it to the some custom name like HR Customer care
    rather then site name
    MCTS,ITIL

    I don't think this's possible OOB but there is a codeplex freeware tool you can install and change Sender address as you wish. 
    Here it's: Change Address
    Hope this helps!

Maybe you are looking for

  • SM69-Can't exec external program ( External program terminated with ecode1)

    Hi All, Client requirement is to Move File from Presentation Server to Application Server. I am executing UNIX script on AIX OS via SM69. But I am getting the  following error: Can't exec external program (No such file or directory) External program

  • Convert/Interpret XML to Character/ABAP

    Hi, I am consuming a web-Service via client-proxy method. for this I've created the client proxy and called one of the methods in the class in the program. After passing the input values (country Code) to the web-service I am receiving the result (co

  • Managed Account permissions issues after all third party updates

    I run a lab with 34 student accounts that are "Managed" using 10.5.7. I have given students permission to use specific software and all aspects of the software in Accounts/Parental Controls. When I update Microsoft Office or Adobe CS4, I have to go i

  • Really Wrong! Finder  AND all Apps won't run on MB Pro 20-day old Laptop

    Finder won't launch automatically (dock icon indicates it's NOT running even though there are folders and files on the desktop that are click-able (and thats as far as they go), and every single app I try to start warns "You can't open the applicatio

  • Mail crashes after making a new smart mailbox.

    I've made a new smart mailbox containing mails that are NOT in any ather mailbox. After saving, I saw the beachball for a few seconds, then mail crashes. Now I can't start it. Mail crashes every time. I've restored the MailData folder from TM, but it