Blue Arrow on linked objects

Is there a way to remove the blue arrows that appear on objects I've created as hyperlinks? I created my own navigation menu and have some jpeg images that are all hyperlinks to other pages on my iweb website, but I don't want those little arrows in the blue circles to be on them - they cover part of my self-made naviagtion menu.
Or do those little arrows only appear while you're building the site and then disappear when you publish it?
Any thoughts?
Thanks!

JayCro wrote:
Or do those little arrows only appear while you're building the site and then disappear when you publish it?
You guessed right — once you've published your site and view it in a web browser, those little blue hyperlink icons will not be visible.

Similar Messages

  • Linked Object

    Hai,
    i can create a linked object & assign through the datasource to salesperson screen but its a problem when the sales person selected through the orrange arrow help Screen but this value should not reflect in my screen when i return to the original screen
    1. i click orrange button
    2. sales person screen screen appears
    3. i select any one i hope & press OK Button
    4. I will not reflect in My Main Screen
    try to understand the problem & give some idea

    Hi,
    the "linked button" is only <u>one</u> directional!
    When you navigate to another record in the target object form this "link" (which is as you can see not a real link, but just a starting point...) is "broken".
    You will have to implement some workaround where you keep in your Add-On the information which form (2) was launched from which item in the original form (1) + modify this item on form 1 in case the user navigates to another record in form 2.
    HTH

  • Writing two linked objects (obj1 is linked to obj2)?

    writing two linked objects (obj1 is linked to obj2)
    Approach A:
    ObjectOutputStream o = new ...
    o.writeObject(obj1);
    o.writeObject(obj2);
    o.close();
    Approach B:
    ObjectOutputStream o = new ...
    o.writeObject(obj1);
    o.close();
    o = new ...
    o.writeObject(obj2); // append
    o.close();
    Does the Two approaches are same??
    If not how many writes for Approach A and How many for B??
    please explain me clearly for the reason ??
    thanks

    Shhh... the spirits are speaking...Howdy my favourite ranger from Utah state. So those are the cool girls that make your earth quake -:)

  • My wifi network connection is not working, will read "unable to join". Am able to access as a guest.  When I hit the blue arrow on the right hand side of my network there is no information e.g ip address, subnet mask, etc.  This info is in my guest area.

    My network has not been working today.  When I click on it it says "unable to access nhe network".  My guest network will work.  When I hit the blue arrow on the right hand side of my network there is no information in the IP address, subnet mask, router, etc.  There is information in my guest section when I checked. I have unplugged and replugged my router and turned my Wifi button of and off, started and restarted my Ipod as per internet suggestions.  Would anyone know how to get my network reactivated.  I am nervous to hit reset network settings in case I lose all my music and icons, etc. added since I got my Ipod.  Thank you for any assistance

    Do other devices now connect?
    Did the iPod connect before?
    What encryption/security is the router using?
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • While Doing BW  Role Uploading Getting message "Linked Objects Not Found" ?

    Dear All,
    I am trying to upload a BW role from EP , while doing role upoad activity, when I am giving role name, system namein the first step it is identifying the role from the system.
    To that role four reports has been attached.
    After uploading the role, the role has been get uploaded, but the reports which are attached to the role it is showing that "Linked Objects Not Found", for all the reports.
    For all those reports I have checked the web url on BW server it is corect but then also I am getting above message.
    Please any one help me out in this scenario.
    Regards,
    Aditya

    The same problem during XI to BI integration as it was told in how-to.

  • HP color laserjet 3500 print blue arrows on right margin

    HP color laserjet 3500 print blue arrows on right margin abouti 3 in apart and middle of the page yellow blotches
    tried to clean and calibrate nothing changed.  dont see any extra blue or yellow toner powerder anywhere. 
    please help.
    does this on test pages and anything eles printed 

    @dwropp 
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • How to use object collection with linked objects

    <p>Hi,</p><p>I&#39;m using VS2005 Crystal reports in a c# client app (server has database, but client does not have!). So the use of the objects transfered to the client seemed to me a good solution for showing reports on the client. The objects mostly link to several other objects (properties of type <type> or properties of type [] <type>) and the links are correctly configured in database assistant.</p><p>But: Whenever using one of the linked fields, all of the main fields will never show up in the report.</p><p>So, what is the correct way of showing a master / detail report using linked object collections???</p><p> (A small test sample app can be provided upon request)</p><p> TIA</p><p>BP</p>

    What database and connection type are you using? Are you connecting the report directly to the database, or trying to assign the datasource to object data?
    It sounds like you might be trying to use a linked list, collection or other C# construct to pass your data in. This currently isn't supported by the Crystal Reports SDK. You can use a DataSet or a DataTable, and possibly also an IDataReader depending on which version of Crystal Reports you're referencing in your project. Of course you can also connect directly to the database, even if the database isn't on the same machine as the application.
    The way to show master records with detail information is through the use of subreports and linked subreport parameters. Linked subreports take their parameter value from a record in the main report, so that only the data appropriate to that master record is displayed. The guys over in the [report design|SAP Crystal Reports; forum can help you out with this if you have questions on the specifics.

  • How do I apply style within a text frame linked object

    I'm selecting the text frame in the object I want to apply an object style
    A script can be written
    within a text frame the linked object (selected text frame)
    how object style is applied

    Hi
    All you need is
    app.selection[0].appliedObjectStyle = app.activeDocument.objectStyles.itemByName ("Trevors Object Style");
    The below snippet will apply the style to all the anchored objects in the selection or document
    var doc = app.properties.activeDocument,
        myOnjectStyle = doc.objectStyles.itemByName ("Trevors Object Style"),
        myObjects, l;
    if (!myOnjectStyle.isValid) {
        alert ("Either add an Object Style Called:\nTrevors Object Style\nOr Make Significant Changes to The Script");
        quit ();
    app.findTextPreferences = app.changeTextPreferences = null;
    app.findTextPreferences.findWhat = "^a";
    myObjects = (app.selection && app.selection[0]).findText () || doc.findText ();
    l = myObjects.length;
    while(l--) myObjects[l].textFrames[0].appliedObjectStyle = myOnjectStyle;
    HTH
    Trevor

  • {@link Object#clone()} , -link does not work!!

    I have a problem with this!!
    Somehow the -link option does not work very well.
    I have ensured that I did correctly set my command option -link to
    -link http://java.sun.com/j2se/1.4.1/docs/api
    I have already imported java.lang.Object at the top of my source code.
    When I tried to use {@link Object#clone()}, it doesnt work at all.
    I have also tried all sorts of names like fully qualified ones and such.
    The hyperlinks do not appear ( i.e. they just appear as plain text but not hyperlinks!!) I realise the ONLY way I can get it to point to the correct link is
    {@link <a href = "http://java.sun.com/j2se/1.4.1/docs/api/java/lang/Object.html#clone()">clone()</a>}
    which is very lame.
    I want to be able to write doc @tags such that I do not have to specify the full complete http address.
    Anyone can help ? Thank you very much!!
    P/S: I know this is a bug in 1.2.2 javadoc but I suppose this bug would have been fixed by now....
    Regards
    David

    I would upgrade to 1.4.2. That should fix the problem.
    -Jamie Ho

  • Linked object not avilable

    Hi,
    I am facing strange issue. we have one iview and it assigned to one. this link(role-->i view) is working fine  from longtime.
    but last week onwards  for some users(they have access) this iview  disappearing some time and appearing some time.
    when i  verify in the content admin i was able to see the  link ,(in the role  also). then i cleared  cache ,and then when i verify in the content admin  i was not able to see  the link . and in the role i am seeing as ' linked object not available" .
    please let me  know why this happend is there any note available  to resolve this.
    Thanks
    Surya

    Hi,
    I assume you have enabled the Connector for Caching Roles.
    Please Check the Property of the iView under the Property Category : Navigation >> "Metadata for the Navigation Hierarchy".
    Ensure that the Property is set to "Cacheable".
    Also Synchronize Cache for the Connector under System Administration >> Navigation >> Navigation Cache.
    Kind Regards,
    Mrityunjay.

  • In looking to solve a problem, a blue arrow appeared, now it is overlaying my screen.

    I was searching for what I did to make a toolbar disappear, now there is a permanent blue arrow on my screen that will not move, pointing to toolbar hide / show at the scroll down.
    thank you.

    In what application?
    But my guess is that you clicked on Help. Try clicking on it again.

  • How can I restore my Navagation App (Blue Arrow) on my phone.

    I could not hear a voice giving directions on my Navation Blue Arrow) app.  I tried to do what a search result told me to do, and I lost my app!!!  How do I retrieve the blue arrow Navagation app.  I have tried going to application manager, maps, uninstalling, but it is still gone. 

    Did you update Maps?  If you had an old version on your device (like, from months ago) and it updated, the navigation no longer shows up as a separate app.  The function is still there, but you have to access it through the Maps app.

  • Dispute Case - Linked Objects- Various- URL

    Hello,
    We have a requirement to create a Dispute Case through a custom interface program. We have been doing this using BAPI_DISPUTE_CREATE.
    Now, I need to programmatically link a URL to Dispute Case -> Linked Objects->Various->URL. An custom element type for u2018URLu2019 was configured in the Registry for this in our SAP system.
    This is usually achieved programatically using the tables parameter OBJECTS of the BAPI. We have to pass the OBJ TYPE & KEY to this parameter.
    Since configuration does not allow the BOR_TYPE to be defined on tab u2018Connection Parametersu2019 of the Element Type URL in the Registry, what OBJTYPE and KEY works for this?
    Thanks,
    Smitha/Aneel

    Hello Andy,
    I have a question. We're also trying to use BAPI_DISPUTE_CREATE in order to create dispute cases, but the function needs a unique GUID number in order to create the dispute case. How did you manage to maintain this guid number?
    Because of this problem, we started using the function UDM_DC_CREATE, which generates a GUID itself, if you do not maintain one.
    Sorry for the inconveince, the problem was because of a wrong attribute, I can create a dispute case with this function without maintaining the guid id.
    Edited by: Karabiber Kerem on May 21, 2010 11:03 AM

  • How to automatically update Smart LINKED Object

    Hi.
    This is my first post here, I'm French, so excuse any English mistake i may do.
    I'm not an artist / designer / ..., still new about using image software editing like photoshop.
    So i downloaded Photoshop CC to try it because i wanted to do something on my spare time.
    I want to render digitaly a card collection based on a online Collectible Card Game (Duel of champions if you wanna know).
    For this I downloaded their card art from their site.
    Then i want to add several effect / filter to render them nicely.
    So i read and watch many tutorial in this purpose.
    I ended with a good result for 1 card.
    Here is an example :
    Hi.
    This is my first post here, I'm French, so excuse any English mistake i may do.
    I'm not an artist / designer / ..., still new about using image software editing like photoshop.
    So i downloaded Photoshop CC to try it because i wanted to do something on my spare time.
    I want to render digitaly a card collection based on a online Collectible Card Game (Duel of champions if you wanna know).
    For this I downloaded their card art from their site.
    Then i want to add several effect / filter to render them nicely.
    So i read and watch many tutorial in this purpose.
    I ended with a good result for 1 card.
    Here is an example :
    So what i did :
    I get a source card art image, adding its red border, embossed it to get relief, adding a gloss effect in 3 different layers (the card art, the border and the gloss effect). Than i duplicate all this layers, swap them vertically and moved down to get a reflection.
    I added a gradient to this new group of layers to have a nice fading effect to the reflection.
    As I do not want to redo all the process again and again if I change main the source card Art, I want the reflexion to automatically update.
    This was done using Smart object, both main source card Art and the (vertically swapped) reflexion card art using the same object storing my different main source card art.
    So when i change in this object the main source card art used, it automatically change both the rendered card and its corresponding reflexion.
    And then i Added a displacement filter to simulate a water reflection.
    And the first problem (solved by now) occurred :
    If i want to apply a filter to the group of layers corresponding to the rendered reflexion card, Photoshop have to convert and merged the whole group of layers into another new smart object and then apply a smart filter onto it. That worked but i lost the auto updating of the reflexion as the previous conversion have made Photoshop create in fact a whole new duplicated object storing a my different main source art.
    So i partially resolved This by using Smart LINKED object instead of Smart object. I say partially because it is not really fully automated anymore.
    Now if I change the main Source card Art to render a new one, I have to "manually" save file / update smart object to get the reflection updated.
    I kinda accelerate this using a action performing a batch of saves to get a "save all" options (that clearly miss in photoshop). But for this i still have to open all my smarted linked object in order to apply the "Save All" batch.
    But know I want to generalize the process to cards left, and render my whole card collection.
    So i created a template based on what i've done so far using in this template Smart LINKED Object for the Main source card art and the reflected one. By the Way I exported the Reflection group in a PSD file, and refered to it as another Smart LINKED Object in my template. Doing so i'm sure Photoshop no more use a temporary PSB object correspond to the converted / merged reflexion Smart Object (remember : created in order to apply a smart Filter on it).
    So what Happen now ?
    I create a new testing psd file in witch i embed several new smart objects each one is an occurence to my template. Here i have to used smart Object and NOT smart LINKED Object because if so i'll always end up with the same rendered card several times. I have to get Phososhop create it own temporary duplicated object so a modification to one don't affect all the others after "Save All" batch on the corresponding working card.
    So with what I have now, if I want to change 1 of the rendered card, i go its corresponding (duplicated) template object and from there i access again my LINKED object storing all my main source card Art.
    I change to what source card art I want, and I have to open the reflection smart LINKED Object too in order to apply the "SAve All" batch.
    Here is the "fun" (issue) thing : I have to apply the batch 3 time in a row to have the rendered card changed in my main testing psd file. I suppose saving 3 time time propagated the change along the Smart LINKED Object chain.
    AND I have to make sure ONLY the corresponding smart (LINKED) Object file are opened before. If another file from a different rendered card is opened too the change will also be propagated to it and so having a duplicated rendered card. (I only want each card rendered once, but using the same template to avoid repetitive work).
    So I explained in detail, but maybe not clearly, my situation and the step i went through.
    TLDR
    To summarize : I have a collections of Card art (jpeg).
    I created a Template applying effect to render 1 card.
    I created another template appliying same effect to render 1 REFLECTED card.
    In both i use the same Smart LINKED Object that Store my collection on Card Art.
    I make another Smart LINKED Object in the first template that reference the second one.
    So with my first template I can update the rendered card and its rendered reflexion after changing the main source card art  in the subsequent smart LINKED Object that store my whole cards art. I have to had all corresponding Smart LINKED Object file OPENED and save them all to have th updated result.
    So not really automatic.
    Then I want to render my whole card collection with effect and reflexion.
    I create in my project a duplicate of my first template for each card to be rendered.
    Then I have to open ONLY all subsequent corresponding Smart LINKED(or not) Object file of current working rendered card and change the main source card art, save all the file (several time to propagate change) to properlly update the current rendered card.
    I have to do this for EACH of my duplicated template in order to render EACH of my cards.
    Definitively  not automatic process, and prone to errors.
    Do you know a way to fully automatically render my card collection ? The only thing I want to do is chose one time the main source card art for each rendered card.
    Finally another way to explain this issue and maybe get an answer is to instead explain simply what I want to do :
    I have a collection of (jpeg) card art from an online card game.
    I want to render them all with effect (gloss, emboss border, faded and water filtered reflection).
    I want to do this automatically.
    The only thing i manually want to do is chose the card art to be rendered for each of the card i want to render in my collection.
    Here is an image of what i want based on what i've, not automatically, done so far :
    Thanks for any help from photophop professional here.

    Hi,
    The delta load does not work for product categories but only products.So to bring in the new product categories into SRM you will need to start the load of the object DNL_CUST_PROD1 again.
    The CRM middleware allows the following two methods for replication.
    -Initial loads:
    Launched manually (R3AS), the objects (customizing or business) are replicated between SRM and R/3, according to the filters you've put on the object (R3AC1 for Business objects like MATERIAL, R3AC3 for customizing objects like DNL_CUST_PROD0 and 1).
    -Delta loads:
    This option is only possible for Business objects, which is the case of MATERIAL.
    With this option a daemon is launched between the 2 servers. Every modification made on an object on SRM or R/3 is transfered as soon as this object is contained in the filter retrictions (creation and/or modification). this is done through transaction R3AC4.
    Also refer the foll thread:
    Material group from R/3 to COMM_CATEGORY (SRM)
    Related notes : OSS notes 872819 and 720819.
    BR,
    Disha.
    DO  reward points for helpful answers.

  • Field "Location of Linked Object" missing after adding a page to a role

    I am using EP5 (5.06.01.00). After adding a page to a role, the properties of the page in the role no longer include the field "Location of Linked Object". The properties now only consist of two fields: "Name" and "Location". They used to contain a third field "Location of Linked Object", in fact, in older roles the page properties still contain this field. However, when I now add pages to a role or workset, this third property field "Location of Linked Object" is not there. - I am adding the page by clicking the "Add" button to move a page from the "View" area to the role in the "Edit" area. - I have been observing this symptom for several months, but I can not identify any configuration changes or upgrades which would have caused this behavior.
    All hints will be greatly appreciated.
    Thank you
    Message was edited by: Carsten Mund

    I am using EP5 (5.06.01.00). After adding a page to a role, the properties of the page in the role no longer include the field "Location of Linked Object". The properties now only consist of two fields: "Name" and "Location". They used to contain a third field "Location of Linked Object", in fact, in older roles the page properties still contain this field. However, when I now add pages to a role or workset, this third property field "Location of Linked Object" is not there. - I am adding the page by clicking the "Add" button to move a page from the "View" area to the role in the "Edit" area. - I have been observing this symptom for several months, but I can not identify any configuration changes or upgrades which would have caused this behavior.
    All hints will be greatly appreciated.
    Thank you
    Message was edited by: Carsten Mund

Maybe you are looking for