Is the Actionscript code complete for navigation bar?

Could someone help me out please.
I have used flash in the head of my pages and have added
navigation bar within that header
I have attached code to the message so you are able to see
the actionscript I have used to control
said navigation. The problem is this does not seem to be
working as I cannot navigate from one page to
another please could someone enlighten me cheers
My sites URL is as follows
http://andysite.prohost4u.co.uk

Still having the same problems cannot navigate through site
properly I have changed upprecase SELF to lowercase
self but when I click from one page eg homepage to about me
that works but then I go from about me to web design
I get an error message:
Not Found
The requested URL /about_me/web_design/index.html was not
found on this server.
Additionally, a 404 Not Found error was encountered while
trying to use an ErrorDocument to handle the request.
seems to me the URL changes as there is no
/about_me/web_design/index.html
any information would be much appreciated
I have uploaded site to server if that will help explain
http://www.andysite.prohost4u.co.uk

Similar Messages

  • Is there any way to fix the slow code completion in Netbeans 5.5+

    Netbeans 5.5 or Netbeans 5.5.1
    Is there any possible fix for the slow code completion within the editor? I've googled this issue and haven't found much of anything relevant.
    While, not used all the time - a faster than what it is now code completion would be helpful.
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    helloWorld
    Thanks for the response and useful response.
    :P
    I'm not a decent machine now and I guess I'll just keep on typing.
    --Todd                                                                                                                                                                                                                                                                                       

  • Use the same code module for several steps in the sequence

    Hello All,
      I have been trying to set up a sequence that uses the same code module for all of the steps in the sequence, but am having trouble referring back to it when I need to send it commands.  I have gotten as far as calling the VI in a new thread so that it can be run asynchronously.  I can run the simple sequence and it will indeed open the VI, and move on to the next step.  When I close the VI manually from the front panel, the sequence in TestStand completes, as expected.  So it appears that I have that much working. 
      My question is how to call the separate thread from the main sequence or other sub sequences when I need to edit the parameters.  If I insert an Action step, I am required to select a VI file, but from what I can tell, it opens a different instance of the file, and does not provide an interface with the other instance running asycronously.  My next guess was to use a Statement step, but I was not able to figure out how to configure the lookup string to call the VI parameters.  Beyond that, I'm not sure how to proceed.  Please advise.   
      My intention is to start the code module VI (asynchronously), run several different subsequences within the main sequence that call that same VI and edit it's parameters, close everything and report on the results.  If I am misunderstanding how TestStand is supposed to work, please let me know. 
    Thanks,
    GSinMN    
    Solved!
    Go to Solution.

    What I do is use a Queue to send data to the asynchronous VI.  So it can run and do whatever, but also recieve the commands from the queue.  I use an Action Engine that holds the queue reference and sends the commands.  So you really just have to call the Action Engine from your sequences.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Enhancement request for Navigation Bar - save state before branching

    Hello,
    I believe it would be nice and helpful to add the save state before branching option also to the Target section of a Navigation Bar Entry.
    Thanks,
    Arie.
    ♦ Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    ♦ Author of Oracle Application Express 3.2 – The Essentials and More

    -Max- wrote:
    Has it been moved or removed ?The feature was removed in an (originally) unannounced, undocumented and disproportionate fait accompli by Oracle: +{thread:id=2285521}+
    This was subsequently documented in the Release Notes.
    There is no forum traffic to substantiate the reasons given for its removal. I certainly never encountered them. I don't see how it couldn't have been retained with documented restrictions.

  • Code completion for fl.*  group?

    hey,
    i'm not getting code completion for tweens or anything like
    that. when i type 'import fl.' i also don't get any completion.
    what am i missing? how do i fix it?
    thnx for the help.
    lou

    quote:
    Originally posted by:
    Greg Lafrance
    See this post for some possible insight:
    http://www.kirupa.com/forum/archive/index.php/t-268080.html
    this was helpful, thanks!
    lou

  • No code completion for s:method

    Hi all. I just realise that there is no code completion for <s:method> inside of a <s:RemoteObject>
    Are you experiencing the same?

    Yes, i got a few posts there waiting for your help. One of them is really really important and urgent for the project i'm with and without that i can't go further
    http://forums.adobe.com/thread/583301?tstart=0

  • How can i write the below code using "For all entries"

    Hi
    How can we write the below code using "for all entries" and need to avoid joins...
    Please help
    SELECT aaufnr aobjnr aauart atxjcd a~pspel
    agstrp awerks carbpl cwerks
    INTO TABLE t_caufv
    FROM caufv AS a
    INNER JOIN afih AS b
    ON aaufnr = baufnr
    INNER JOIN crhd AS c
    ON bgewrk = cobjid
    AND c~objty = 'D'
    WHERE ( a~pspel = space
    OR a~txjcd = space
    OR NOT a~objnr IN
    ( select OBJNR from COBRB AS e
    WHERE objnr = a~objnr ) )
    AND a~werks IN s_plant
    AND a~auart IN s_wtype
    AND NOT a~objnr IN
    ( select OBJNR from JEST AS d
    WHERE objnr = a~objnr
    AND ( dstat = 'A0081'OR dstat = 'A0018' )
    AND d~inact 'X' ).
    Reward points for all helpfull answers
    Thanks
    Ammi.

    Hi,
    SELECT objnr objid aufnr
            from afih
            into table t_afih.
    SELECT objnr
            from JEST
            into table t_JEST
            where stat = 'A0045'
               OR stat = 'A0046'
               AND inact 'X'.
    SELECT objnr
            from COBRB
            into table t_cobrb.
    SELECT arbpl werks objid objty
          from crhd
          INTO table it_crhd
          FOR ALL ENTRIES IN it_afih
          WHERE objty eq 'D'
          AND gewrk = it_afih-objid.
    SELECT aufnr objnr auart txjcd pspel gstrp werks aufnr
            FROM caufv
            INTO table t_caufv
            FOR ALL ENTRIES IN it_afih
            WHERE aufnr = it_afih-aufnr
              And pspel = ' '
              AND txjcd = ' '
             ANd objnr ne it_crhd-objnr
              AND auart in s_wtype
              AND werks in s_plant.
             AND objnr ne it_jest-objnr.
    dont use NE in the select statements, it may effect performance also. Instead use if statements inside
    loops.
    loop at t_caufv.
    read table it_chrd............
      if t_caufv-objnr ne it_chrd-objnr.
      read table it_jest..........
       if   if t_caufv-objnr ne it_jest-objnr.
        (proceed further).
       endif.
      endif.
    endloop.
    hope this helps.
    Reward if useful.
    Regards,
    Anu

  • I have purchased the creative cloud complete for my company yet i can still only download trial versions as it asks me for a serial number when i only have the email invite.  please advise

    i have purchased the creative cloud complete for my company yet i can still only download trial versions as it asks me for a serial number when i only have the email invite.  please advise

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • Authority Check at the T.Code level for the user in particular User Group

    Hi Friends,
    I have created a ZREPORT and assigned this report to a ZTRANSACTION CODE.
    Need to give Authority Check at the T.Code level for the user in particular User Group.
    I have searched in SCN, but not get suitable pages.
    How to solve this?
    Regards,
    Viji.

    Hi Viji.
    Saha way is actual way for authority tcode but user authority in TCODE:- SE38 he/she can run report(ZREPORT) wise program is run is no authority check.
    Another way is you have also check authority in program level.
    DATA: T_ROLE_USERS TYPE STR_AGRS OCCURS 0 WITH HEADER LINE.
       INITIALIZATION.
      CALL FUNCTION 'ESS_USERS_OF_ROLE_GET'
        EXPORTING
          ROLE       = 'ZROLE''  " Role define
        TABLES
          ROLE_USERS = T_ROLE_USERS.
      READ TABLE T_ROLE_USERS WITH KEY UNAME = SY-UNAME.
       IF SY-SUBRC NE 0.
       RETURN.
       ENDIF.
    Thanks & Regards
    Rahul

  • Should the PO appear in 'confirmations' if the GR is complete for the PO?

    Hi Gurus,
    Should the PO appear in 'confirmations' if the GR is complete for the PO?
    The customer is seeing the PO in the 'Confirmation' menu even though he is not able to create any confirmtation. But is it right behaviour that the PO show up in the confirmation even though the GR is complete and the indicator is set?
    Regards,
    Ramesh

    Hi Yann,
    The system behaviour is as follows:
    PO appears in the list if the customer enters a PO explicit in the search criteria. In this case the PO appears irrespective of whether completed or not. if completed it doesnt take to the next screen for confirming a quantity.
    As far is criteria is concerned the 'no further confirmation expected' flag in the PO item should be set for avoiding the PO in the confirmation worklist. which gets set when a confirm is done from SRM or gets updated by the Report BBP_GET_STATUS_2 ( in the job variant the check box related delivery completed is unticked) from the R3 if the goods recipet is done in R3
    So I have not done anything. Infact there was no problem at all.
    Are you facing the same problem?
    regards,
    ramesh
    Edited by: Ramesh Vadamalayan on Apr 23, 2008 7:10 PM
    Edited by: Ramesh Vadamalayan on Apr 23, 2008 7:11 PM

  • How to run the Transaction Code - BIC for Bank keys uploading

    Hi
    How to run the Transaction Code - BIC for Bank keys uploading.
    please give me suggestion.
    Thanks
    Indu

    Go to BIC transaction screen
    Fill the selection screen parameters as below
    1. Update Run (Test Run: Check Off: Real Run:Check On)
    2. Set Deletion Flag (Check On)
    3. Maximum no. of records: 999999
    4. Detail List (Check On)
    5. Display variant: 1SAP
    6. Presentation server (Select Radio Button)
    7. Application server (Deselcet Radio button)
    8. File name and Path: Select relavant file which is to be upload
    9. Bank country: If needed (Give respective country name)
    10. Select execute button or F8
    NOTE: Make sure that before executing run execute TEST RUN by deselecting Update Run check box
    Hope this will meet your requirement
    Thanks.

  • Where can I find the coupon code required for registration?

    Where can I find the coupon code required for registration? I purchased the design standard at Officeworks in Australia and given the box a thorough check, but unless there is a number not labelled 'coupon code', it's definitely not there. I am using this product personally and not for business so I have no IT dept to assist.

    Find a serial number
    For anything else contact support directly or work things out with your reseller.
    Mylenium

  • Custom color for navigation bar

    I am struggling to find a way to make my navigation bar color different that supported colors.
    SDK supports default style i.e. blue, black and black opaque. I know it is possible cause there so many apps doing so. For example midomi.
    I have searched this forum already but haven't found working solution. If anybody knows how to do it would be grateful if he points me to the solution.

    tintColor property
    [https://developer.apple.com/iphone/library/documentation/UIKit/Reference/UINavi gationBar_Class/Reference/UINavigationBar.html]

  • Default style (for navigation bars) is lost!

    I've a problem that has been discussied a couple of times but I have never seen a solution. We have made a page with portlets and styles. Our navigationbar-portlet has a blue background but the other porlets have a white background. With te creation of the navigator bar, I have left the "use page style" box unchecked but is still doesn't work. The navigationbar style is overridden by the style for the users. So every portlet gets the same white color. Who can help me with this problem??
    thanks in advance,
    Marten

    I am using Portal version 3.0.9.8.0

  • Code completion for JavaScript included?

    Will there be features like automatic code completion or automatic adding of closing brackets for JavaScript Code  or automatic adding of closing tags in html? (Or did I just not find them?)

    The patch referenced above only adds auto-close tags for HTML.  We don't have any support for auto-closing curly braces or quotes or other syntactic elements yet.
    The best way to get ahold of that change is to download a build of Edge Code or Brackets that includes it.  Current Brackets builds include it already, and the next release of Edge Code -- which will be available later this month -- will also include it.
    If you want access to "bleeding edge" functionality before an official build comes out, you can pull down the Brackets source from Git and run that copy.  That's similar to downloading "unstable" nightly builds of something (not for the faint of heart!) but since you have the actual source, you can also easily test out patches before they're merged in or tinker with your own code changes.  You'll want to be familiar with Git to go that route, though.
    Hope that helps!
    - Peter

Maybe you are looking for