Links not working when clicking (code included)

Ok im totally new to AS so i will do best to describe issue i am running into.....
Have a cover photo created in PS,and on photo, there is text, which when click should open pdf file specified.....well when i hover over, and click....it doesnt go anywhere....(example below)  THX for any responses and assistance.
    EX:        this would be the cover photo
                  REPORT
  Analysis  (this should have a sub menu of PDF's which it does, but when click on the pdf's refrenced, it doesnt go anywhere)
  Link 2     (PDF)
  Link 3     (PDF)
  Link 4     (PDF)
  Link 5     (same as Analysis)
  Link 6     (PDF)
   ect ect...
CODE BELOW....
import flash.net.URLRequest;
import flash.events.MouseEvent;
import flash.events.Event;
//init menu links
var link_1:Object = this.getChildByName( 'MenuLinkMC_1' );
var link_2:Object = this.getChildByName( 'MenuLinkMC_2' );
var link_3:Object = this.getChildByName( 'MenuLinkMC_3' );
var link_4:Object = this.getChildByName( 'MenuLinkMC_4' );
var link_5:Object = this.getChildByName( 'MenuLinkMC_5' );
var link_6:Object = this.getChildByName( 'MenuLinkMC_6' );
var link_7:Object = this.getChildByName( 'MenuLinkMC_7' );
var link_8:Object = this.getChildByName( 'MenuLinkMC_8' );
var link_9:Object = this.getChildByName( 'MenuLinkMC_9' );
var _close:Object = this.getChildByName( 'closeMC' );
this._close.addEventListener( MouseEvent.CLICK, quit );
var sub_menu_notes_slide:Object = this.getChildByName( 'SubMenu_NotesSlideMC' );
var sub_menu_discussion_slide:Object = this.getChildByName( 'SubMenu_DiscussionSlideMC' );
//set url addresses
var url_link_1:URLRequest = new URLRequest( 'PDF_FILES/1.  MD&A Introduction.pdf' );
var url_link_2:URLRequest = new URLRequest( 'PDF_FILES/9.  Independent Auditors\' Report.pdf' );
var url_link_3:URLRequest = new URLRequest( 'PDF_FILES/10.  Balance Sheets.pdf' );
var url_link_4:URLRequest = new URLRequest( 'PDF_FILES/11.  Statements of Revenues, Expenses and Changes in Fund Net Assets.pdf' );
var url_link_5:URLRequest = new URLRequest( 'PDF_FILES/12.  Statements of Cash Flows.pdf' );
var url_link_6:URLRequest = new URLRequest( 'PDF_FILES/13.  Note 1 - Summary of Significant Accounting Policies.pdf' );
var url_link_7:URLRequest = new URLRequest( 'PDF_FILES/31.  Glossary of Terms.pdf' );
var url_link_8:URLRequest = new URLRequest( 'PDF_FILES/EOY Audited Financials - FY2011 with blue links.pdf' );
var url_link_9:URLRequest = new URLRequest( 'http://www.cpsenergy.com' );
//run subroutines
noMenu();
set_link( link_1, url_link_1, sub_menu_discussion_slide );
set_link( link_2, url_link_2, null );
set_link( link_3, url_link_3, null );
set_link( link_4, url_link_4, null );
set_link( link_5, url_link_5, null );
set_link( link_6, url_link_6, sub_menu_notes_slide );
set_link( link_7, url_link_7, null );
set_link( link_8, url_link_8, null );
set_link( link_9, url_link_9, null );
//subroutines
function set_link( linkObject:Object, linkURL:URLRequest, optMenu:Object ):void {
    linkObject.addEventListener( MouseEvent.CLICK, click_link );
    linkObject.addEventListener( MouseEvent.MOUSE_OVER, mouse_over_link );
    if ( optMenu != null ){
        this.setChildIndex( MovieClip( optMenu ), 9 );
        linkObject.addEventListener( Event.ENTER_FRAME, slide_sub_menu );
    function click_link( evt:MouseEvent):void {
        navigateToURL( linkURL, 'File.browseForOpen()' );    <-----(note: should this be set to "_blank"  ?)
    function mouse_over_link( evt:MouseEvent ):void {
        linkObject.mouseChildren = false;
        linkObject.buttonMode = true;
        linkObject.useHandCursor = true;
    function slide_sub_menu( evt:Event ):void {
        if ( optMenu.hitTestPoint( mouseX, mouseY, true )) {
            optMenu.nextFrame();
        } else {
            optMenu.prevFrame();
function quit( evt:MouseEvent ):void {
    fscommand("quit", "");
function noMenu():void {
    var NoMenu:ContextMenu = new ContextMenu();
    NoMenu.hideBuiltInItems();
    this.contextMenu = NoMenu;
------------------------------------------------------------------------------------------ -------------------------------AND
import flash.events.MouseEvent;
//init sublinks
var sublink_1:Object = this.getChildByName( 'SublinkMC_1' );
var sublink_2:Object = this.getChildByName( 'SublinkMC_2' );
var sublink_3:Object = this.getChildByName( 'SublinkMC_3' );
var sublink_4:Object = this.getChildByName( 'SublinkMC_4' );
var sublink_5:Object = this.getChildByName( 'SublinkMC_5' );
var sublink_6:Object = this.getChildByName( 'SublinkMC_6' );
var sublink_7:Object = this.getChildByName( 'SublinkMC_7' );
var sublink_8:Object = this.getChildByName( 'SublinkMC_8' );
var sublink_9:Object = this.getChildByName( 'SublinkMC_9' );
var sublink_10:Object = this.getChildByName( 'SublinkMC_10' );
var sublink_11:Object = this.getChildByName( 'SublinkMC_11' );
var sublink_12:Object = this.getChildByName( 'SublinkMC_12' );
var sublink_13:Object = this.getChildByName( 'SublinkMC_13' );
var sublink_14:Object = this.getChildByName( 'SublinkMC_14' );
var sublink_15:Object = this.getChildByName( 'SublinkMC_15' );
var sublink_16:Object = this.getChildByName( 'SublinkMC_16' );
var sublink_17:Object = this.getChildByName( 'SublinkMC_17' );
var sublink_18:Object = this.getChildByName( 'SublinkMC_18' );
//set link names dynamic text
sublink_1.SublinkNameDT.text = 'Note 1 - Summary of Significant Accounting Policies';
sublink_2.SublinkNameDT.text = 'Note 2 - Cash, Cash Equivalents and Investments';
sublink_3.SublinkNameDT.text = 'Note 3 - Disaggregation of Current Receivables and Payables';
sublink_4.SublinkNameDT.text = 'Note 4 - Capital Assets';
sublink_5.SublinkNameDT.text = 'Note 5 - Revenue Bond and Commercial Paper Ordinances Requirements';
sublink_6.SublinkNameDT.text = 'Note 6 - Revenue Bonds';
sublink_7.SublinkNameDT.text = 'Note 7 - Commercial Paper and Related Revolving Credit Agreement';
sublink_8.SublinkNameDT.text = 'Note 8 - Flexible Rate Revolving Note';
sublink_9.SublinkNameDT.text = 'Note 9 - Employee Pension Plan';
sublink_10.SublinkNameDT.text = 'Note 10 - Other Postemployment Benefits';
sublink_11.SublinkNameDT.text = 'Note 11 - Other Obligations and Risk Management';
sublink_12.SublinkNameDT.text = 'Note 12 - Other Financial Instruments';
sublink_13.SublinkNameDT.text = 'Note 13 - Lease-Leaseback';
sublink_14.SublinkNameDT.text = 'Note 14 - South Texas Project';
sublink_15.SublinkNameDT.text = 'Note 15 - Commitments and Contingencies';
sublink_16.SublinkNameDT.text = 'Note 16 - Leases';
sublink_17.SublinkNameDT.text = 'Note 17 - Pollution Remediation Obligation';
sublink_18.SublinkNameDT.text = 'Note 18 - Subsequent Events';
//set url addresses
var url_sublink_1:URLRequest = new URLRequest( 'PDF_FILES/13.  Note 1 - Summary of Significant Accounting Policies.pdf' );
var url_sublink_2:URLRequest = new URLRequest( 'PDF_FILES/14.  Note 2 - Cash, Cash Equivalents and Investments.pdf' );
var url_sublink_3:URLRequest = new URLRequest( 'PDF_FILES/15.  Note 3 - Disaggregation of Current Receivables and Payables.pdf' );
var url_sublink_4:URLRequest = new URLRequest( 'PDF_FILES/16.  Note 4 - Capital Assets.pdf' );
var url_sublink_5:URLRequest = new URLRequest( 'PDF_FILES/17.  Note 5 - Revenue Bond and Commercial Paper Ordinances Requirements.pdf' );
var url_sublink_6:URLRequest = new URLRequest( 'PDF_FILES/18.  Note 6 - Revenue Bonds.pdf' );
var url_sublink_7:URLRequest = new URLRequest( 'PDF_FILES/19.  Note 7 - Commercial Paper.pdf' );
var url_sublink_8:URLRequest = new URLRequest( 'PDF_FILES/20.  Note 8 - Flexible Rate Revolving Note.pdf' );
var url_sublink_9:URLRequest = new URLRequest( 'PDF_FILES/21.  Note 9 - Employee Pension Plan.pdf' );
var url_sublink_10:URLRequest = new URLRequest( 'PDF_FILES/22.  Note 10 - Other Postemployment Benefits.pdf' );
var url_sublink_11:URLRequest = new URLRequest( 'PDF_FILES/23.  Note 11 - Other Obligations and Risk Management.pdf' );
var url_sublink_12:URLRequest = new URLRequest( 'PDF_FILES/24.  Note 12 - Other Financial Instruments.pdf' );
var url_sublink_13:URLRequest = new URLRequest( 'PDF_FILES/25.  Note 13 - Lease-Leaseback.pdf' );
var url_sublink_14:URLRequest = new URLRequest( 'PDF_FILES/26.  Note 14 - South Texas Project.pdf' );
var url_sublink_15:URLRequest = new URLRequest( 'PDF_FILES/27.  Note 15 - Commitments and Contingencies.pdf' );
var url_sublink_16:URLRequest = new URLRequest( 'PDF_FILES/28.  Note 16 - Leases.pdf' );
var url_sublink_17:URLRequest = new URLRequest( 'PDF_FILES/29.  Note 17 - Pollution Remediation Obligation.pdf' );
var url_sublink_18:URLRequest = new URLRequest( 'PDF_FILES/30.  Note 18 - Subsequent Events.pdf' );
//run subroutines
set_sublink( sublink_1, url_sublink_1 );
set_sublink( sublink_2, url_sublink_2 );
set_sublink( sublink_3, url_sublink_3 );
set_sublink( sublink_4, url_sublink_4 );
set_sublink( sublink_5, url_sublink_5 );
set_sublink( sublink_6, url_sublink_6 );
set_sublink( sublink_7, url_sublink_7 );
set_sublink( sublink_8, url_sublink_8 );
set_sublink( sublink_9, url_sublink_9 );
set_sublink( sublink_10, url_sublink_10 );
set_sublink( sublink_11, url_sublink_11 );
set_sublink( sublink_12, url_sublink_12 );
set_sublink( sublink_13, url_sublink_13 );
set_sublink( sublink_14, url_sublink_14 );
set_sublink( sublink_15, url_sublink_15 );
set_sublink( sublink_16, url_sublink_16 );
set_sublink( sublink_17, url_sublink_17 );
set_sublink( sublink_18, url_sublink_18 );
//subroutines
function set_sublink( sublinkObject:Object, sublinkURL ):void {
    sublinkObject.addEventListener( MouseEvent.CLICK, click_sublink );
    sublinkObject.addEventListener( MouseEvent.MOUSE_OVER, mouse_over_sublink );
    sublinkObject.addEventListener( MouseEvent.MOUSE_OUT, mouse_out_sublink );
    function click_sublink( evt:MouseEvent):void {
        navigateToURL( sublinkURL, '_blank' );
    function mouse_over_sublink( evt:MouseEvent ):void {
        sublinkObject.mouseChildren = false;
        sublinkObject.buttonMode = true;
        sublinkObject.useHandCursor = true;
        sublinkObject.gotoAndStop( 'On' );
    function mouse_out_sublink( evt:MouseEvent ):void {
        sublinkObject.gotoAndStop( 'Off' );

I think you need double quotes rather than single.. as in
new URLRequest( 'PDF_FILES/1.  MD&A Introduction.pdf' );
try
new URLRequest( "PDF_FILES/1.  MD&A Introduction.pdf" );
also the file names are a little odd.... there is a space after the period 1. (space here) MD...this will present problems once on server.
And then you have an ampersand in the file name..... while that may work, sometimes servers are much more particular.... things like spaces and special characters in file names can cause problems.
One recommended method of naming files and folders is:
All lower case (no caps)
No_spaces_use_underscore_instead
No special characters
Best wishes,
Adninjastrator

Similar Messages

  • Finder not working, when click the infinity sigh comes, can't open any file

    finder not working, when click the infinity sigh comes, can't open any file?

    That could be an indication your drive is failing. If you do not have a current Backup, that is top priority.

  • The dropdown list in the address bar does not work when clicked

    In the address bar the dropdown list icon does not work when clicked. I have tried resetting everything in safemode and it still doesn't work. When I click on the icon it just highlights the entire address line.

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    Also check the setting in:<br />
    [http://kb.mozillazine.org/Menu_differences Firefox > Preferences] > Privacy > Location Bar: When using the location bar, suggest: History, Bookmarks, History and Bookmarks

  • Is it me or?, Window Buttons Do Not Work When Clicked

    Is it me or?, Window Buttons Do Not Work When Clicked
    What is going on in Snow Leopard.
    It seems Window buttons (X, -, +) Do Not Always Work when clicked.
    Sometimes window does opens, closes, minimizes and often times it does not.
    You have have re click like crazy
    Message was edited by: macguitarman

    What app are you using?
    Here's something strange I've noticed in Mail a couple times.
    For some reason Mail opens several viewer windows all stacked on top of each other.
    So while click the close button does close the window, there's an identical on behind it.
    So it almost seems like clicking the close button has done nothing but it really has.
    Could this be what your seeing?
    Matt

  • Links not working when I export to HTML or PDF

    I am a longtime Mac fanatic, but new to using Keynote. I am creating lectures for a class I teach where the computer in the classroom is Windows, so I have to export my Keynotes to another format.
    First I tried exporting to Powerpoint. That was a disaster. Since, I've tried exporting to HTML, exporting to PDF, and print -> Save as PDF (to get a PDF that prints nicely).
    My problem? Hyperlinks within my Keynote work fine when I play the presentation in Keynote. They also work when I export to PDF. However, they do not work when I generate the printable PDF OR when I export to HTML.
    I guess I understand them not working in the printable PDF, but not the HTML. Am I doing something wrong?
    Ideally I would like to export one PDF that I could use up on the projecter (with links working) and that students could view and/or print from their computers.
    Should I really have to have 2 PDF's - one for students who want to view it on screen with working links and one for people that want to print it out?!?!
    TIA for any help/advice!

    Do you have any filters applied to your clips?
    This happened to me before, I accidently had applied a broadcast safe filter to a color matte that was black....
    I figured it out by duplicating my sequence and deleting items from my timeline 1 by 1 until I was able to export a reference movie.
    Anywho, export again, this time with "self contained" movie selected.
    Then try to import to Compressor.

  • " send link" is not working , when click on it, nothing happens, but Firefox 4.0 will work

    File --> Send link will not work after Update Firefox 4.0 to 8.0
    It is happening all the time.
    Before update, the 4.0 version will work.

    File --> Send link will not work after Update Firefox 4.0 to 8.0
    It is happening all the time.
    Before update, the 4.0 version will work.

  • Href link not working when accessed through wireless portal (ptg/rm)

    Hi,
    I have a simple J2EE application in which when clicking on a link, the request should forward to another jsp page. I am using Oracle 10g Application Server wireless. I am accessing the application in IE via oracle wireless portal gateway (ptg/rm).
    The code is as follows (title.jsp page)
    <%
    // setting the content type according to the browser.
    if(request.getHeader("User-Agent").indexOf("MSIE") > 0){
    response.setContentType("text/html");
    } else if(request.getHeader("User-Agent").indexOf("PTG") > 0){
    response.setContentType("application/vnd.wap.xhtml+xml; charset=UTF-8");
    response.setHeader("Cache-Control", "no-store"); // HTTP 1.1
    response.setHeader("Pragma", "no-cache"); // HTTP 1.0
    response.setHeader("Expires", "0"); // prevents caching at the proxy server.
    if("".equalsIgnoreCase(request.getParameter("ch"))){
    %>
    <jsp:forward page="hello.jsp" >
    </jsp:forward>
    <%
    %>
    <html>
    <body>
    <form name="" action="title.jsp" method="post" >
    <table>
    <tr>
    <td>
    <%
    String check = "Link";
    %>
    <href="title.jsp?ch="<%=check%>">Link
    </td>
    <tr>
    </table>
    </form>
    </body>
    </html>
    When the title.jsp page is accessed for the first time the URL is http://<server name>:<port no>/ptg/rm
    When i click on the link it shows error page (Page cann't be found" but in the deployed EAR file the "hello.jsp" was included.
    But when i click on the Link, the URL changes to
    http://<server name>:<port no>/ptg/title.jsp?ch=
    Here the rm of ptg/rm got misplaced.
    but according to my experience it should be
    http://<server name>:<port no>/ptg/rm with some postfix string.
    can any one please tell me what could be the reason?
    How can i forward the request to "hello.jsp" page?
    Thanks well in advance.
    Shrikant

    Sorry all,
    I just want to clarify one thing, that the Link's href code is
    <href="title.jsp?ch="<%=check%>"> Link
    Thanks
    Shrikant

  • Links not working when published

    I know, I know, this topic has been discussed before but I am very very new at this and most answers I just don't understand (I am used to visiting not building sites). Anyway, I am having a **** of a time getting some links in my webpages to work (better said, most work, some not). I don't understand, I've checked all links, no problems (not even when published locally). But when I FTP it to my host something seems to get lost in the transfer. I've deleted the pages where this problem occurs and made new ones. Doesn't help. Does any one have any idea and know how to explain the answer to me in the simplest terms? I would be so very grateful!
    thanx

    The correct ftp settings would be your username and password and what you use to connect to your server. If you have already uploaded your site, then these settings would be correct. If using Cyberduck with incorrect settings, you would not be able to connect to your hosting space full stop.
    Anyway, you said that you were just uploading the contents? If this is the case, perhaps if some of your links do not work, then you have not uploaded all the files that you need to. If uploading the contents of your site folder, then when Cyberduck asks you to upload, or you click it under action at the top, it will ask you to select the files - normally you would go to User and then Sites and then click on your site folder. When this shows up, click on the first file that is shown and do a select all and this will then upload all the contents. Check to ensure that all the html pages are there, plus their relevant folders - these folders contain all the CSS - so for each html page their is a folder of the same name e.g. About Us.html and About Us folder. There are also feed files that need to be uploaded too.
    What you can try to see if it works is to upload your whole site folder and separate index file and see if the links work when you do this. Your url will be different if you do this, but just try it and see.
    The other problems when links do not work is that you could have either an image or another text box too near to the navigation menu or link that covers it up so that it will not work. Go into iWeb and check this by doing a command A to see placement and you can then move images and text boxes around if this is the case.

  • Ejb-link not working when i access ejb in different ear

    Hi All
    I am here trying to access ejb's which is in different ear, I am providing ejb-link inside web.xml of war file deployed inside deffirent ear file.
    I am using wls8.1sp5. I tried different combination with elb-link name , but its not working . <ejb-ref>
    <ejb-ref-name>ejb/AuditService</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>com.onstar.audit.ejb.AuditServiceHome</home>
    <remote>com.onstar.audit.ejb.AuditService</remote>
    <ejb-link>ccarenewal.jar#AuditService</ejb-link>
    </ejb-ref>
    <ejb-ref>
         <ejb-ref-name>ejb/AccountService</ejb-ref-name>
         <ejb-ref-type>Session</ejb-ref-type>
         <home>com.onstar.account.ejb.AccountServiceHome</home>
         <remote>com.onstar.account.ejb.AccountService</remote>
         <ejb-link>ccarenewal.jar#AccountService</ejb-link>
         </ejb-ref>
    Exception:weblogic.management.ApplicationException: activate failed for sbwo Module: sbwo Error: weblogic.management.DeploymentException: Could not setup environment - with nested exception: [weblogic.deployment.EnvironmentException: [J2EE:160101]Error: The ejb-link 'ccarenewal.jar#AuditService' declared in the ejb-ref or ejb-local-ref 'ejb/AuditService' in the application module 'accountadj.war' could not be resolved. The target EJB for the ejb-ref could not be found. Please ensure the link is correct.] weblogic.deployment.EnvironmentException: [J2EE:160101]Error: The ejb-link 'ccarenewal.jar#AuditService' declared in the ejb-ref or ejb-local-ref 'ejb/AuditService' in the application module 'accountadj.war' could not be resolved. The target EJB for the ejb-ref could not be found. Please ensure the link is correct. at weblogic.deployment.EnvironmentBuilder.addEJBLinkRef(EnvironmentBuilder.java:658) at weblogic.deployment.EnvironmentBuilder.addEJBReferences(EnvironmentBuilder.java:467) at weblogic.servlet.internal.CompEnv.init(CompEnv.java:123) at weblogic.servlet.internal.WebAppServletContext.activate
    I will appreciate any help.
    Rajiv

    Rob,
    Thanks for your reply.
    Below is all deployment descriptor entries i have(ejb-jar.xml, weblogic-ejb-jar.xml, web.xml, weblogic.xml)
    please correct me if i have wrong entries any where.
    ejb-jar.xml
    ejb-ref>
    <description />
    <ejb-ref-name>ejb/AccountService</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>com.onstar.account.ejb.AccountServiceHome</home>
    <remote>com.onstar.account.ejb.AccountService</remote>
    <ejb-link>AccountService</ejb-link>
    </ejb-ref>
    weblogic-ejb-jar.xml
    <ejb-reference-description>
    <ejb-ref-name>ejb/AccountService</ejb-ref-name>
    <jndi-name>cca/AccountService</jndi-name>
    </ejb-reference-description>
    web.xml
    <ejb-ref>
    <ejb-ref-name>ejb/AccountService</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>com.onstar.account.ejb.AccountServiceHome</home>
    <remote>com.onstar.account.ejb.AccountService</remote>
    <ejb-link>ccarenewal.jar#AccountService</ejb-link>
    </ejb-ref>
    weblogic.xml
    <ejb-reference-description>
    <ejb-ref-name>ejb/AccountService</ejb-ref-name>
    <jndi-name>cca/AccountService</jndi-name>
    </ejb-reference-description>
    I appreciate your help.
    Thanks
    Rajiv

  • Bootcamp assistant not working when clicking install

    Trying to use bootcamp assistant, on the partion disc screen, i select the partition size but the install button wont do anything when clicked.
    It just stays on the same page and no message comes up, anyone got any thoughts?

    I think you need double quotes rather than single.. as in
    new URLRequest( 'PDF_FILES/1.  MD&A Introduction.pdf' );
    try
    new URLRequest( "PDF_FILES/1.  MD&A Introduction.pdf" );
    also the file names are a little odd.... there is a space after the period 1. (space here) MD...this will present problems once on server.
    And then you have an ampersand in the file name..... while that may work, sometimes servers are much more particular.... things like spaces and special characters in file names can cause problems.
    One recommended method of naming files and folders is:
    All lower case (no caps)
    No_spaces_use_underscore_instead
    No special characters
    Best wishes,
    Adninjastrator

  • My Site Links Not Working When Using Alternate Access Mapping

    I have a SharePoint Site Collection under my main
    Web Application: mywebapp:80.
    I had to extend this to an Intranet zone
    Web Application: mywebapp:101.
    I am able to open my Site Collection from either address. The authentication protocols for both are the same.
    When provisioning the User Profile Service and configuring
    My Site, the
    My Site Host Location must be supplied, in this case: http://mywebapp:80/personal/mysite
    I housed my My Site Host under the same Web Application as my
    Site Collection.
    When accessing My Site for any given user from mywebapp:80, all the links of user photos point to that same
    Web Application, which is expected.
    i.e. When on http://mywebapp:80/personal/mysite/person.aspx?accountname=person1 , all the links of photos of other users are http://mywebapp:80/personal/mysite/person.aspx?accountname=person2,
    etc.
    When accessing My Site for any given user from my extension, mywebapp:101, all the links of user photos still point to the old address.
    i.e. When on http://mywebapp:101/personal/mysite/person.aspx?accountname=person1 , all the links of photos of other users are still on http://mywebapp:80/personal/mysite/person.aspx?accountname=person2,
    etc.
    So I figured that the My Site Host configuration under the
    User Profile Service will just literally follow the initial URL specified. That said, I ask:
    1.) Is there no way that the My Site links will be able to adjust depending on the URL I am accessing it from?
    2.) What are possible implementation alternatives for cases like this when I need to use
    My Site under 1
    Web Application and have to make it available on
    multiple host names?

    Hi Noel,
    perhaps this thread is similar with your question:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/d3010532-ae20-4eda-8f58-359f77d17e1e/user-profile-pictures-pointing-to-old-mysitehost?forum=sharepointadminprevious
    any way, for your 2 questions,
    perhaps you can give us more details about the scenario?
    as i know,
    mysite able to adjust, but you may need to configure the the host of the mysite, for example:
    1. to the User Profile Service Application (UPA) and changed the MySite URL, few sites show the new URL and few show the old one.
    2. to Central Admin and found there may 2-UPAs created.
    3. changed the MySite settings on both the UPAs, created Managed Paths wherever necessary and then changed associations of all web applications to one of the main UPA
    for configuring the multiple host, you may check with your IIS, and add the bindings,
    http://forums.iis.net/t/1189870.aspx
    http://stackoverflow.com/questions/14232892/multiple-sites-under-the-same-hostname-possible
    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.

  • My saved searches does not work when click u201Cgou201C button

    Hi expert,
    Thank you for your help firstly,my qusetion is that when I am doing search for bp account , I save the search result as "saved searches", the "saved search" is created ,but when i clicks the "saved search" link ,it has no any response.
    Edited by: steven.yan on Jun 28, 2010 11:56 AM

    Running an adware script is not related to a power button issue. That's hardware, not software.
    Make sure you are holding down the power button long enough.
    Othersies, reset the SMC >>  Intel-based Macs: Resetting the System Management Controller (SMC)

  • Some page links not working when I publish iweb site to desktop folder?

    I just created a photo website using iweb. All the links to pages, etc. work fine in the programme but when I go to publish it to folder to check it on a web page some of the page links don't work?
    Any help would be greatly appreciated!
    - Ricky

    Even though you have deactivated the iWeb navigation menu, the navigation layer still exists and is blocking your custom links. Open the Inspector Page tab and try changing the value for Header Height to zero. See if this does anything for you. If not, then try increasing the Header Height value incrementally. This pushes the navigation layer down your page and maybe out of the way of your custom links.
    Of course, there is also the question of whether you custom links are placed on the page as a header element or as a regular page element. You can put elements into the header or footer layers by holding down the Apple key while dragging the elements until you see the header/footer outline highlight in blue.
    If your custom links are header elements, then increasing the header height to push the navigation layer down will probably help. If your custom links are page elements, then decreasing the header height to zero might be more likely to help.

  • Link Not working Hyperion- Workspace- Navigation- Planning

    Hi
    From workspace Navigation->Planning link is not working .When clicking on the link
    it's just giving message processing and then nothing is coming up.Can any one can
    help on this?
    Thanks and Regards,
    MohanBir

    well planning is alright then
    If you try http://<yourserver>:19000/HyperionPlanning/
    (that is if you are using apache web server plugin)
    or
    http://<yourserver>/HyperionPlanning/
    (if you are using the iis web server plugin)
    If it works then the web server plugins are working, so it will relate to an issue with the workspace install.
    John

  • Adobe Edge links not working

    Yeah I have also experienced links not working when I import my .oam file from Adobe Edge Animate also. Is there anything the Muse team is doing to fix this issue? I need a response from you guys by the end of the week. my company website is malfunctioning due to issues with your software. If there is some sort of hotfix please let us know.

    When you install the software illegally, using a volume license, there is a script you can run that will enter all of the adobe servers into your local DNS hosts file so the software can be activated. This makes accessing those domains impossible. This scenario fits the description of your issue, not suggesting anything beyond that.
    The hosts file is in /private/etc/hosts and can be accessed through the terminal:
    sudo nano /private/etc/hosts
    If you see a bunch of adobe servers in there, that is your problem.

Maybe you are looking for

  • Crystal Reports, MSSQL User Defined Function returns recordset

    Beginner here Desiring several reports having the same basic logic, I made an SQL table-valued function that returns a result set. It takes two parameters and returns a result set. When I select this function in the Standard Report Creation wizard, a

  • APPLICATION TOP Character set conversion

    Hi, I am changing the characterset of application from UTF8 to AR8MSWIN1256. After running adadmin, i am getting the following errors in manifest_lossy.lst file Source Character Set: UTF8 Destination Character Set: AR8MSWIN1256 Original Source Buffer

  • Why can't I log onto photoshop?

    Why when i go to use photoshop do i keep getting the promo add trying to get me to upgrade,@ but everything I try i keep getting rerouted, even when I tried to see about the promo it just kept sending me in circles? !

  • Update current iOS 4.2.1 to iOS 5.1.1 only instead of iOS 6.0.1

    I have an iphone 4 with iOS 4.2.1, I wish to update to iOS 5.1.1 instead of iOS 6.0.1, may I know any way to do this with or wihout itunes?

  • InDesign CS5 : Fond de couleur partiel sur un texte

    Bonjour, Impossible de trouver une manip satisfaisante... Est-il possible d'appliquer une couleur de fond de paragraphe (ou de bloc texte) à une partie seulement d'un texte d'un même bloc ? Pour appliquer la couleur de fond à tout le bloc pas de souc