Linking articles using buttons

I'm trying to link articles using buttons, so that I can quickly navigate through an app in the same way you can if you were to use a button to a specific page number in the same document I'm trying to link to a different article.
I've tried using bookmarks and hyperlinks to only fail. Any tips? What am I doing wrong?
Thanks.

I tried renaming the scenes to numbers to see if that was the case but it still returns the same error as before, ive checked all wordings of scenes and the AS, all of its correct. Could it be i've missed code out from somewhere? Could frame labels cause it to not work?

Similar Messages

  • How to attach sound using link to any button?

    Hi,
    am using this code to call sound file after click on button.
    PAdha1.onRelease = function () {
    mySoundC = new Sound(this);
              mySoundC.attachSound("PAdhaSound1");
             mySoundC.start(0, 99);  //10 represents the number of loops
             gotoAndPlay("play2");
                          _global.myTaalLaya = "High1";
    My problem is I have more than 100 buttons and their own sound files.Now ,this buttons are on separet scene so, it creates separet image for each button and separet sound for each button which is in liblary.Now,my problem is there are huge sound files and button images.So,flash is not supporting this.It does not show .swf file(Output result).
    I think this is beacause of a lot of images and sound files.
    Is there any other way to call sound file through link function.Now sounds files are called through "linkage".from liblary.
    am using flash cs 5 with as 2.

    I found some refrance it,works.But another thing is every code i found is applied on button.But,I cant use this code b.coz I have n number of buttons,it will again create problem.Can u suggest me anything more?
    I want something like it will attch sound through folder path (link).And 1 button should abale to play more than 10 sounds with diffrent click.
    Thanks.

  • How to connect one page using button and by link in BSP

    how to connect one page using button and by link in BSP

    hi,
    use on 'onclick' functionality.
    1. In layout, onclick = 'NEXT_PAGE' of the button
    2. Capture the event in onInputprocessing,
    DATA: event_id TYPE REF TO  cl_htmlb_event.
    case event_id.
    when 'NEXT_PAGE'.
                navigation->goto_page( 'URPAGE URL' ).

  • DW CS4: How to play a Flash Movie in a NEW window after clicking a link or a button on a page?

    Hi, using Adobe Dreamweaver CS4, I would like to have a link or a button on a webpage that when clicked will play a Flash Movie in a new window.
    Using the 'Insert Panel' > Media: FLV I managed to insert the .flv file on the page, but the movie plays 'in line' instead of in a new window. So far I can't find any 'Properties' or settings to change this behaviour. E.g. like Target _blank for opening e.g. a .pdf in a new Window.
    > Please help.
    Thank you!

    Try using one of the popular javascript methods for this. I use shadowbox and you can find examples, info and a download here: http://www.shadowbox-js.com

  • In making a form, I've used buttons for user to select a state. Can I make it go to cities next?

    I don't know the correct terminology, so I don't think that I've posed my question very well.  Employees will be using the form that I'm trying to make, and I want for them to be able to select a city from a large number of cities, and for that city to ultimately show up on the form (not merely in the data that is output.)
    I thought that the clearest way for them to select a city would be for them to start by selecting the pertinent state first.  That would allow the list of cities in that state to be shorter and more manageable.  So I'd like for them to be able to select a state, and then by virtue of that selection, have a list of cities pop up.  I sort of achieved that by using buttons for the states, and then under "actions", I chose "open a file".  Then I set it up to open a file that contained the cities that are options,and set each city with a button. 
    The result is that it goes from my form to a second window, containing states and then to a third window, containing cities.  (Actually, there are multiple "city" windows because there's a list of cities for each state.)  But then I'd like for the city that they select to wind up being on my original form.  Is there an "action" that I can choose that will make that happen?
    Or is there a better way to accomplish what I'm trying to accomplish?  Maybe I'm just going about this all wrong(?) Any suggestions would be very much appreciated  Thank you!

    Yes, there is a much better way. I'd recommend using a combo box for the list of states. When the user selects a state, the list of associated cities would populate a second combo box, allowing the user to select a city. This type of functionality relies on JavaScript. If you are unfamiliar with with JavaScript in Acrobat, I'd suggest starting with the following article: http://acrobatusers.com/tutorials/2007/js_list_combo_livecycle/
    Ignore anything to do with LiveCycle Designer. If you get stuck, post again.

  • Please add a "link" or "share" button to replies / answers for easier referencing and linking.

    Currently, the only ways to link to a specific reply or answer are:
    Hunt through the poster's activity page and look for the link to the post in question, or
    Inspect the post's HTML, extract the ID from the enclosing <li> tag, then manually construct the URL by adding it as an anchor to the top level URL.
    Example: https://social.microsoft.com/Forums/en-US/4fb9d481-741f-49ea-9059-ff1757ead511#b7e0c275-0645-4c3b-a314-480cb89ef04c was
    constructed using method 2. See that link for a discussion related to this topic.
    These both stink. A forum, especially one as full of information and as frequently cited as this one, really ought to have an easier way to link to specific replies.
    Please add a "link" or "share" button (or something similar) that generates a URL that links directly to the post. Perhaps it could go down next to the action links (reply, quote, etc) or over near the vote button.
    If one exists, I apologize but I have not been able to find it (and at least one moderator - the one who replied in the example link I just posted - is also unaware of it). This forum has been around long enough that I'm a bit surprised it does not have
    this yet.
    Thanks,
    Jason

    Sorry,  not possible.
    I want to correct myself. There is an old "hack" that still seems to work, which is to create a link to a file, but instead of pointing it to a file you point it to a folder. But Acrobat only lets you select a folder when you create such a link, so how to do it? Create a Word document with such a hyperlink and then use the PDFMaker plugin to convert the file to a PDF. This side-steps the Acrobat limitation and gives you a link to a folder, which when clicked will open it in Windows Explorer.
    As I said, it's a bit of a hack and it's possible it will stop working if Adobe ever decides to block it, so use it with care.

  • How to move a selected row data from one grid to another grid using button click handler in flex4

    hi friends,
    i am doing flex4 mxml web application,
    i am struck in this concept please help some one.
    i am using two seperated forms and each form having one data grid.
    In first datagrid i am having 5 rows and one button(outside the data grid with lable MOVE). when i am click a row from the datagrid and click the MOVE button means that row should disable from the present datagrid and that row will go and visible in  the second datagrid.
    i dont want drag and drop method, i want this process only using button click handler.
    how to do this?
    any suggession or snippet code are welcome.
    Thanks,
    B.venkatesan.

    Hi,
    You can get an idea from foolowing code and also from the link which i am providing.
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    width="613" height="502" viewSourceURL="../files/DataGridExampleCinco.mxml">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.binding.utils.BindingUtils;
    [Bindable]
    private var allGames:ArrayCollection;
    [Bindable]
    private var selectedGames:ArrayCollection;
    private function initDGAllGames():void
    allGames = new ArrayCollection();
    allGames.addItem({name: "World of Warcraft",
    creator: "Blizzard", publisher: "Blizzard"});
    allGames.addItem({name: "Halo",
    creator: "Bungie", publisher: "Microsoft"});
    allGames.addItem({name: "Gears of War",
    creator: "Epic", publisher: "Microsoft"});
    allGames.addItem({name: "City of Heroes",
    creator: "Cryptic Studios", publisher: "NCSoft"});
    allGames.addItem({name: "Doom",
    creator: "id Software", publisher: "id Software"});
    protected function button1_clickHandler(event:MouseEvent):void
    BindingUtils.bindProperty(dgSelectedGames,"dataProvider" ,dgAllGames ,"selectedItems");
    ]]>
    </mx:Script>
    <mx:Label x="11" y="67" text="All our data"/>
    <mx:Label x="10" y="353" text="Selected Data"/>
    <mx:Form x="144" y="10" height="277">
    <mx:DataGrid id="dgAllGames" width="417" height="173"
    creationComplete="{initDGAllGames()}" dataProvider="{allGames}" editable="false">
    <mx:columns>
    <mx:DataGridColumn headerText="Game Name" dataField="name" width="115"/>
    <mx:DataGridColumn headerText="Creator" dataField="creator"/>
    <mx:DataGridColumn headerText="Publisher" dataField="publisher"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:FormItem label="Label">
    <mx:Button label="Move" click="button1_clickHandler(event)"/>
    </mx:FormItem>
    </mx:Form>
    <mx:Form x="120" y="333">
    <mx:DataGrid id="dgSelectedGames" width="417" height="110" >
    <mx:columns>
    <mx:DataGridColumn headerText="Game Name" dataField="name" width="115"/>
    <mx:DataGridColumn headerText="Creator" dataField="creator"/>
    <mx:DataGridColumn headerText="Publisher" dataField="publisher"/>
    </mx:columns>
    </mx:DataGrid>
    </mx:Form>
    </mx:Application>
    Link:
    http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/ae9bee8d-e2ac-43 c5-9b6d-c799d4abb2a3/
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • Need help with 'post link to facebook' button in php

    hi guys,
    thanks for the interest in my post...
    i want to have a button at the bottom of my main page layout (main.php) of the facebook logo where visitors can click on it to submit the page as a link to facebook.
    how can i set the button so it will post the link to whichever page the visitor is viewing i.e. when they are reading a news article the button action will post main.php?id=news and when they are on home, main.php?id=home.
    thank you very much and i hope to hear form you.
    m

    Quote from: tigers71 on 14-December-14, 00:47:36
    If anyone can link the customerchecklist.doc on the MSI website I would greatly appreciate it.  I need to RMA my laptop, and while I printed out the RMA form, I didn't print out the customer checklist document that goes with it.
    And as the original email was in my spam folder, I must have deleted it, so I don't have the link to the page the checklist is on.       I had an old link to the checklist from when I had to RMA my laptop last year, but that is no longer valid.   So if anyone has had a recent RMA of their laptop, if you can post the link, or send it to me in PM, many thanks.
    if you bought laptop from local store then you can just go to local store and RMA it there they will then pack it in and send it away to a MSI service in your country or maybe nearby country that can do repairs.

  • Add a link to a button

    Hi Guys,
    I am having problems trying to add a link to a button and it doesn't work.
    I converted a graphic to button and added the link to the button and when I tested the page show up as a blank page.
    Please help..I haven't touched Flash like 10 years...seem to forget everything
    -Tai

    i used this codes and still not working..any ideas?
    btt_1.addEventListener(MouseEvent.MOUSE_UP, goLayersSite);
    function goLayersSite(Event)
    var site = new URLRequest(‘ http...‘);
    navigateToURL(site);
    [url modified by moderator]

  • Fixed: How to remember the DataTable state and still use buttons

    Lets say that you have a DataTable on a page, with a bunch of hyper links and buttons on the same page (for navigation to various parts of your application). If you use the built in pagination and sorting, you will find that the following behaviour:
    1. DataTable remembers its state (sorting, page number, etc.) if you click on any hyper link. You can even go back to a different page, and then come back to the original page to find that your DataTable is in the state you left it (very cool, it is session scope and works as intended).
    2. If you click on any button, DataTable does not remember its previous state (goes back to page 1 and default worting, etc.). After playing around with it and going nuts, I discovered the way to use Button and still have the DataTable remember its state. I wanted to share it with the rest of you:
        public String btnClose_action() {
            try {
                this.getExternalContext().redirect("faces/users.jsp");
            } catch (Exception ex) {
                log("Error: userDetail > btnClose_action", ex);
            return null;
        }This was my original post:
    http://swforum.sun.com/jive/thread.jspa?threadID=103583
    Message was edited by:
    Sabir

    II think there should be a property
    to disable form submission on buttons. There is!
    To make the form not be submitted by a button click:
    1. In the Visual Designer, select the button.
    2. In the Properties window set the JavaScript > onClick property to return false;
    This might interest you: http://blogs.sun.com/divas/entry/disabling_a_button_after_it

  • When I'm on a page with many links it used to highlight or underline the link I was looking at ... so when it opened the link in a new window, I could look back and not lose my place

    when I'm on a page with many links it used to highlight or underline the link I was looking at ... so when it opened the link in a new window, I could look back and not lose my place

    It sounds like you have chosen a publishing template rather than a word processing template. There are two basic modes in MS Word: word processing and publishing layout. Word processing mode (and all word processing templates) have a continuous text box in the page for writing text. The publishing layout mode (and publishing templates) are documents that have text boxes placed for articles, titles, pictures, etc. Be sure to choose the word document template and you’ll get what you expect. Do not choose the word publishing document.

  • Problems with a mailto link from a button

    Dear All,
    I am trying to create a mailto link from a button within a page which will also pass several variables. Everything is working well until it comes to generating the body of the message. I can generate content in the body but if I add a new line into it (using %0A or %0D) the link stops working. Remove the offending hex and it works fine. Does anyone know how to pass a new line within the body of a mailto link. For detail the link is shown below
    mailto:&P41_CUST_EMAIL.?subject=Quotation Feedback Request&body=Dear%20&P41_CUST_NAME.,%0A

    I need to do the exact same thing. How did you accomplish this. I tried putting the URL in the footer, but the values of the body keep showing the item name, and not the value of the item.
    do you get the button to work?
    I'm tried creating it through a button, but it just creates some garbage and a non working link.
    How did you build the body? I'm having issues building the body using processes.
    Edited by: ABD - DBA on Mar 9, 2009 3:15 PM

  • I want to create a link (or a button)

    I want to create a link (or a button) from a cell in one sheet in a spreadsheet to another cell in a second sheet in the same spreadsheet. Some people call it a Hyperlink in Excel. So what happens when you click on the cell in the 1st sheet it takes you to the specified cell in the second sheet.  Does anyone know how to do this? Or is there a way to do this.
    I am using Numbers V3.2
    And my operating system is osx 10.9.3

    Numbers can only (at this time) link to URL (on the internet) or a file on your computer NOT an anchor in the document.  There are not buttons in Number on Mac OS X.
    You can post feedback to Apple using the menu item "Numbers > Provide Numbers Feedback"
    SGIII posted an Applescript to jump between sheets so maybe a quick search for that would help you script this behavior by jump to specific text (anchors):
    see here:
    Table navigation
    .  You may also be able to use search if you leave text like "ANCHOR_JUMP1" and "ANCHOR_THING2".  Then you can search for "ANCHOR"

  • Linking a nav button to page + other

    I have 2 questions
    1. I had found somewhere that tells the simple way to link my
    flash button to a page in my site, but I couldn't find it...I need
    to know how to link my buttons to the appropriate pages. When I did
    them a while ago, nothing happened suring the preview.
    2. When I get all of the buttons linked, how do I go about
    getting the html of my flash header I edited to use in my
    sitebuilder?
    Thanks if you could help.

    Give your button an instance name of myBtn1 then put the
    following
    actionscript on frame one of your main timeline:
    myBtn1.onRelease = function(){
    getURL("yourPage.html");
    do the same for the other buttons within your Flash, but give
    them all
    unique names.
    Dan Mode
    ->Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    "daynad" <[email protected]> wrote in
    message
    news:epmf1c$euf$[email protected]..
    >I have 2 questions
    > 1. I had found somewhere that tells the simple way to
    link my flash button
    > to
    > a page in my site, but I couldn't find it...I need to
    know how to link my
    > buttons to the appropriate pages. When I did them a
    while ago, nothing
    > happened suring the preview.
    >
    > 2. When I get all of the buttons linked, how do I go
    about getting the
    > html
    > of my flash header I edited to use in my sitebuilder?
    >
    > Thanks if you could help.
    >

  • Changing Report Link To A Button

    Apex 3.2
    I have a report with a column link (to another page).
    The user would like to have a html button instead, so I changed the report code to
    {code}
    '<input type="button" name="clean_up" value="Clean Up" onclick="cleanup('||jobid||')">' button_link
    {code}
    I also have some javascript
    {code}
    <script type="text/javascript">
    function cleanup(jobid) {
    javascript:html_PopUp('f?p=&APP_ID.:28:&SESSION.::&DEBUG.:YES:P28_JOBID,P28_PG:'+jobid+',3', 'Clean Up', 800, 600);
    </script>
    {code}
    Instead of opening in a pop up, I would just like to go to another page and also I need to add a checksum to the link.
    Help appreciated
    Gus

    Hi,
    I think you can use normal link column. That will add checksum automatically.
    To change link look like button, place to link text e.g.
    <button type="button">Clean Up</button>
    Regards,
    Jari

Maybe you are looking for