Newby - navigation and buttons! PLEEEAAASE HELP

Ok so it seems like it would be really simple but as I have absolutely no experience i'm severely struggling here. All i want to do is make a text button show another symbol? Basically, i have 16 icons which i want to eventually be buttons aswell, and i want to show them in two different orders. so i have my two buttons for the different orders, and i have my icons in the orders as two different layers,and ive tried using the code snippets to show the icons but i keep getting an error message and it doesnt work, instead my buttons disappear. i've tried watching tutorials and reading different threads but i cant find what im looking for. i just want to be able to click a button and the order of my icons changes. if anyone can help me i would reeeeallly appreciate it, it's for a uni project! thankyou!!

Show the code you are trying to use and explain what it is supposed to be doing.  If you can limit it to a portion of code relevant to your problem, please do.

Similar Messages

  • ADF: Page navigation and buttons stop working after a while

    Hi all,
    We have a web app built with ADF Faces/JDev 10.1.3 that runs in OC4J 10.1.2.0.2. Sometimes we encounter this problem in our JSF pages: after a while (can't relate to some particular action), all navigation in a page (links, tabs, buttons, etc) just stops working, i.e. you can click them, the server receives some request (we see this in the logs), but the desired action never happens. It's just like the page keeps refreshing all the time. There is no navigation out of the page at this point, it's completely stuck.
    If, at the same time, we connect to the app from a different browser, it will work fine, but the first browser will remain in the faulty state.
    I turned the enableTokenValidation in the pages on and off, but it seems to make no difference. Can anyone provide an idea about what might be going on?
    Thanks,
    Serban

    Hello,
    Any answer on this issue? It seems that ADF is pretty unstable if user clicks repetedly on the same submit button (like a double-click) or on different tabs on the old page, until the next page loads. We are using .jspx pages and combined with SSL access this behaviour is behaving even worser.
    Basically we encounter the following problems:
    1) It seems that users with not so good network access (and accessing ADF app on a SSL OC4J) still have access to the origin page until the target page loads on a submit. If they click a different button or tab on the origin page in this interval (waiting for their previous action to complete), they usually get a JavaScript error that will block the interface until they do a manual refresh (F5)...
    This can be reproduced even on client machines with good network access if you click very fast on the same button twice or on two different submit buttons.
    2) It seems that sometimes the browser keeps showing the loading bar in the status bar even if the new .jspx page is already loaded. Any advice on how to solve this, as the users might be tempted to push application buttons or browser navigation thinking that the page is blocked?
    All the above happen on IE 6, which is the preffered browser.
    Thanks! I can give you more details if needed.

  • HP DV8000 blinked power led and button. Help please

    hello.
    i have notebook HP DV8000 and i dont know why but notebook is not running. in video is a problem. (Batery is out) 
    https://www.youtube.com/watch?v=TAXQZp4q8NM
    please help. 

    Hello @Radudu999 ,
    Welcome to the HP Forums! I hope you enjoy your experience!
    I understand your computer will not start properly. I will do my best to assist you with this issue! To troubleshoot, please try the steps in this HP document: Computer Does not Start
    This document contains steps such as resetting the notebook and more, corresponding to the exact symptoms. I believe this document will resolve the issue. If not, I would contact HP phone support for hardware assistance. You can utilize this website to learn how to contact HP appropriately, based on your region: Contact HP Worldwide
    Please let me know if you have any other questions or concerns. Thanks for bringing this issue to the HP Forums. Have a great day!
    Mario
    I worked on behalf of HP.

  • Gui labels and buttons not showing...

    I am using Java to create a gui and so far I have everything working.
    But there is a section of code thats not working out and Ill post the whole file here (not very big) to let you guys see whats going on. The issue lies in the action listner where I state "if a text feild is empty, display the option pane, else show the following" and its not showing the labels and buttons.
    Help?
    package student.information.search;
    import javax.swing.JFrame;
    import java.awt.GridBagLayout;
    import javax.swing.WindowConstants;
    import java.awt.Rectangle;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import java.awt.ActiveEvent;
    import java.awt.Frame;
    import java.awt.GridBagConstraints;
    import java.awt.Insets;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JTextField;
    import javax.swing.JButton;
    import student.information.readonly.ReadOnlyStudentForm;
    public class StudentSearch extends Frame implements ActionListener
       JTextField textField = new JTextField();
       JFrame frame = new JFrame();
       JPanel contentPane = (JPanel) frame.getContentPane();
       GridBagLayout gridBagLayout = new GridBagLayout();
        public StudentSearch()
            gridBagLayout.columnWidths = new int[]{20, 0, 12, 137, 17};
            gridBagLayout.rowHeights = new int[]{26, 0, 6, 0, 20};
            gridBagLayout.columnWeights = new double[]{1, 0, 0, 0, 0};
            gridBagLayout.rowWeights = new double[]{0, 0, 0, 0, 1};
            contentPane.setLayout(gridBagLayout);
            JButton button = new JButton();
            button.setText("Search");
            button.addActionListener(this);
            contentPane.add(button, new GridBagConstraints(3, 3, 1, 1, 0.0, 0.0, 13, 0, new Insets(0, 0, 0, 0), 0, 0));
            textField.setColumns(8);
            contentPane.add(textField, new GridBagConstraints(3, 1, 1, 1, 0.0, 0.0, 768, 2, new Insets(0, 0, 0, 0), 0, 0));
            JLabel label = new JLabel();
            label.setText("Student Seach");
            contentPane.add(label, new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
            frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            frame.setTitle("Student Search");
            frame.setBounds(new Rectangle(500, 0, 500, 320));
            frame.setVisible(true);
       public void actionPerformed( ActionEvent arg0)
            if (textField.getText().equals(""))
              JOptionPane.showConfirmDialog(null, "Please enter a value in the search feild", "Error", JOptionPane.OK_CANCEL_OPTION); 
            else
               //Show the text fields here and the user information. 
                 *  While there are students for this search, change the text fields to Name, Last Name and ID and have a button called
                 *  View that when clicked allows for you to view all that students information.
                JLabel firstName = new JLabel();
                firstName.setText("Label");
                contentPane.add(firstName, new GridBagConstraints(5, 5, 1, 1, 0.0, 0.0, 768, 0, new Insets(0, 0, 0, 0), 0, 0));
                JLabel lastName = new JLabel();
                lastName.setText("Label");
                contentPane.add(lastName, new GridBagConstraints(3, 5, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
                JLabel studentID = new JLabel();
                studentID.setText("Label");
                contentPane.add(studentID, new GridBagConstraints(1, 5, 1, 1, 0.0, 0.0, 256, 0, new Insets(0, 0, 0, 0), 0, 0));
                JButton viewStudentInformation = new JButton();
                viewStudentInformation.setText("Search");
                viewStudentInformation.addActionListener(new ActionListener()
                        public void actionPerformed(ActionEvent e)
                               //For viewing individual student information
                                new ReadOnlyStudentForm();
                contentPane.add(viewStudentInformation, new GridBagConstraints(7, 3, 1, 1, 0.0, 0.0, 13, 0, new Insets(0, 0, 0, 0), 0, 0));
    }

    In general when adding or removing components for a visible GUI you need to use:
    panel.add(...);
    panel.revalidate();
    panel.repaint();

  • My ipod touch gets stuck on the same song, even after I uncheck the loop button.  I am trying to play it in my 2007 vw with a power adapter that allows it to charge and play through my navigation unit. Please help.  Thank you.

    My ipod touch gets stuck on the same song, even after I uncheck the loop button.  I am trying to play it in my 2007 vw with a power adapter that allows it to charge and play through my navigation unit. Please help.  Thank you.

    Yes, first try deleing both songs.
    If still problem
    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.
    - Unsync all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, ,make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Thumbnail and button navigation help

    I would like to start out by saying I am very new at this and am working on a portfolio website in flash CS4 and currently getting help through the tutorials over at Lynda.com. Now my problem is In the portfolio section I want a preview of the pics like a thumbnail on the bottom with a scroll bar to scroll through them all, but at the same time I would like to have buttons to navigate through these photos at the same time. I have got it to work, the only problem is let say i'm using the buttons to navigate through but then stop and go to the scroll bar on the bottom and click on one three of four pictures in front of where I left off, The image loads and everything is fine but when I go back to the buttons it continues off from where it last left off not where I clicked on the scroll bar. Not sure if you can follow that but if not ask questions I really have no clue on how to do this so any help is greatly appreciated.
    Here is the code that I currently have:
    myscrollpane.source=allthumbnails;
    //load the thumbnails...
    var thumbLoader:Loader = new Loader();
    thumbLoader.load(new URLRequest("smallthumbs/portfolio01.jpg"));
    thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
    function thumbLoaded(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader);
    myscrollpane.update();
    thumbLoader.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio01.jpg";
    var thumbLoader2:Loader = new Loader();
    thumbLoader2.load(new URLRequest("smallthumbs/portfolio02.jpg"));
    thumbLoader2.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded2);
    function thumbLoaded2(event:Event):void {
    allthumbnails.addChild(thumbLoader2);
    thumbLoader2.x=118;
    myscrollpane.update();
    allthumbnails.buttonMode=true;
    thumbLoader2.addEventListener(MouseEvent.CLICK, loadMainImage2);
    function loadMainImage2(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio02.jpg";
    var thumbLoader3:Loader = new Loader();
    thumbLoader3.load(new URLRequest("smallthumbs/portfolio03.jpg"));
    thumbLoader3.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded3);
    function thumbLoaded3(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader3);
    thumbLoader3.x=236;
    myscrollpane.update();
    thumbLoader3.addEventListener(MouseEvent.CLICK, loadMainImage);
    function loadMainImage(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio03.jpg";
    var thumbLoader4:Loader = new Loader();
    thumbLoader4.load(new URLRequest("smallthumbs/portfolio04.jpg"));
    thumbLoader4.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded4);
    function thumbLoaded4(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader4);
    thumbLoader4.x=354;
    myscrollpane.update();
    thumbLoader4.addEventListener(MouseEvent.CLICK, loadMainImage);
    function loadMainImage(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio04.jpg";
    var thumbLoader5:Loader = new Loader();
    thumbLoader5.load(new URLRequest("smallthumbs/portfolio05.jpg"));
    thumbLoader5.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded5);
    function thumbLoaded5(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader5);
    thumbLoader5.x=472;
    myscrollpane.update();
    thumbLoader5.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio05.jpg";
    var thumbLoader6:Loader = new Loader();
    thumbLoader6.load(new URLRequest("smallthumbs/portfolio06.jpg"));
    thumbLoader6.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded6);
    function thumbLoaded6(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader6);
    thumbLoader6.x=590;
    myscrollpane.update();
    thumbLoader6.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio06.jpg";
    var thumbLoader7:Loader = new Loader();
    thumbLoader7.load(new URLRequest("smallthumbs/portfolio07.jpg"));
    thumbLoader7.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded7);
    function thumbLoaded7(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader7);
    thumbLoader7.x=708;
    myscrollpane.update();
    thumbLoader7.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio07.jpg";
    var thumbLoader8:Loader = new Loader();
    thumbLoader8.load(new URLRequest("smallthumbs/portfolio08.jpg"));
    thumbLoader8.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded8);
    function thumbLoaded8(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader8);
    thumbLoader8.x=826;
    myscrollpane.update();
    thumbLoader8.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio08.jpg";
    var thumbLoader9:Loader = new Loader();
    thumbLoader9.load(new URLRequest("smallthumbs/portfolio09.jpg"));
    thumbLoader9.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded9);
    function thumbLoaded9(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader9);
    thumbLoader9.x=944;
    myscrollpane.update();
    thumbLoader9.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio09.jpg";
    var thumbLoader010:Loader = new Loader();
    thumbLoader010.load(new URLRequest("smallthumbs/portfolio010.jpg"));
    thumbLoader010.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded010);
    function thumbLoaded010(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader010);
    thumbLoader010.x=1062;
    myscrollpane.update();
    thumbLoader010.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio010.jpg";
    var thumbLoader011:Loader = new Loader();
    thumbLoader011.load(new URLRequest("smallthumbs/portfolio011.jpg"));
    thumbLoader011.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded011);
    function thumbLoaded011(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader011);
    thumbLoader011.x=1180;
    myscrollpane.update();
    thumbLoader011.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio011.jpg";
    var thumbLoader012:Loader = new Loader();
    thumbLoader012.load(new URLRequest("smallthumbs/portfolio012.jpg"));
    thumbLoader012.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded012);
    function thumbLoaded012(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader012);
    thumbLoader012.x=1298;
    myscrollpane.update();
    thumbLoader012.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio012.jpg";
    var thumbLoader013:Loader = new Loader();
    thumbLoader013.load(new URLRequest("smallthumbs/portfolio013.jpg"));
    thumbLoader013.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded013);
    function thumbLoaded013(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader013);
    thumbLoader013.x=1416;
    myscrollpane.update();
    thumbLoader013.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio013.jpg";
    var thumbLoader014:Loader = new Loader();
    thumbLoader014.load(new URLRequest("smallthumbs/portfolio014.jpg"));
    thumbLoader014.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded014);
    function thumbLoaded014(event:Event):void {
    //add the thumbnail to the allthumbnails instance
    allthumbnails.addChild(thumbLoader014);
    thumbLoader014.x=1534;
    myscrollpane.update();
    thumbLoader014.addEventListener(MouseEvent.CLICK, loadMainImage1);
    function loadMainImage1(event:MouseEvent):void {
    largeUILoader.source="largeimages/portfolio014.jpg";
    //added the next button function
    next_btn.addEventListener(MouseEvent.CLICK,nextImage);
    //variable is a container that holds some value...
    var imageNumber:Number=1;
    function checkNumber():void {
    next_btn.visible=true;
    back_btn.visible=true;
    //if the imageNumber is = 14,then do something...
    if (imageNumber==14) {
    trace(imageNumber);
    next_btn.visible=false;
    //if imageNumber is = 1, then dont show back button..
    if (imageNumber==1) {
    trace(imageNumber);
    back_btn.visible=false;
    checkNumber();
    function nextImage(evtObj:MouseEvent):void {
    trace("nextimage");
    //adding to the current value+1
    imageNumber++;
    largeUILoader.source="largeimages/portfolio0"+imageNumber+".jpg";
    checkNumber();
    //added the back button function
    back_btn.addEventListener(MouseEvent.CLICK,backImage);
    function backImage(evtObj:MouseEvent):void {
    trace("backimage");
    //subtract 1 from the current value...
    imageNumber--;
    largeUILoader.source="largeimages/portfolio0"+imageNumber+".jpg";
    checkNumber();

    You need to have each thumbnail change the value of the variable imageNumber when you select from the thumbnails.  You can see how it changes when you use the next and previous buttons, but there's nothing to change it when you select a thumbnail that I can readily see.

  • Is there a way in 4.0 to get back button that hides navigation and bookmark bars?

    I used to have Firefox version 3.6.something, and in it there was an elongated bubble at the very top right of the window which when pressed would hide the navigation and bookmark toolbars. (This button also exists at the top right corner of Adobe Reader, for instance.) It seems to be missing in version 4.0.
    Is there a way to get it back (similar to how it's possible to get back the old status bar)?

    Thank you, I know shortcuts are always an option but I was hoping for a more... automatic? solution. I've resorted to forcing links to new tabs that are "to other sites." It has solved my immediate problem, but still is a bit screwy.
    Thank you for the help, though. :]

  • ARB Issue Committed:  Button navigation and Declarative States

    <[email protected]il.forums.adobe.com>
    Message-ID: <C62B9EEA.82F3%[email protected]>
    Thread-Topic: ARB Issue Committed:  Button navigation and Declarative States
    Thread-Index: AcnOqlv/oTWkTNjMukqDP18VFO76uACeTE1U
    In-Reply-To: <C6277898.7F37%[email protected]>
    Mime-version: 1.0
    Content-type: multipart/alternative;
         boundary="B_3324878165_1545235"
    This message is in MIME format. Since your mail reader does not understand
    this format, some or all of this message may not be legible.
    --B_3324878165_1545235
    Content-type: text/plain;
         charset="US-ASCII"
    Content-transfer-encoding: 7bit
    the  ARB issue at:
    http://opensource.adobe.com/wiki/display/flexsdk/buttonnavigationand+declara
    tive+states
    has been updated with a decision (in short, keep the status quo).
    Ely.
    --B_3324878165_1545235
    Content-type: text/html;
         charset="US-ASCII"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>ARB Issue Committed:  Button navigation and Declarative States<=
    /TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt=
    '><BR>
    <BR>
    <BR>
    </SPAN></FONT><BLOCKQUOTE><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><=
    SPAN STYLE=3D'font-size:11pt'>the  ARB issue at:<BR>
    <BR>
    <a href=3D"http://opensource.adobe.com/wiki/display/flexsdk/button+navigation=
    anddeclarative+states">http://opensource.adobe.com/wiki/display/flexsdk/bu=
    ttonnavigationanddeclarativestates
    has been updated with a decision (in short, keep the status quo).
    Ely.
    B_3324878165_1545235

    graf_ix_guru wrote:
    >
    > Hey everyone I am new, and really could use some help.
    > I have created button symbols in Fireworks with Pop-Up
    Menus. As of right now
    > I have 4 states. The up, over, down and over while down.
    Everything is working
    > great except when the user clicks on the navigation
    button they get taken to
    > the top of the page.
    On click should open a new page, yes? So it won't matter.
    Linda Rathgeber [PVII] **Adobe Community Expert-Fireworks**
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    Design Aid Kits:
    http://www.webdevbiz.com/pwf/index.cfm

  • There used to be a button in the upper right-hand corner that collapsed the navigation and bookmark bars. Where is it?

    I'm using FF 5.0.1 on a Mac (OS is Snow Leopard). My older version of Firefox (not sure which) had a button in the upper RH corner that allowed you to quickly collapse the navigation and bookmark bars and then click again to bring them back - so much simpler than going through the "view" menu when it was helpful to have just that much more space to view a page. That button isn't in version 5.0.1 - is there a way to get it back (e.g., an add-on)?

    This?
    *Restore Toolbar Control (Pill) Button: https://addons.mozilla.org/firefox/addon/restore-toolbar-control-pill-b/

  • My iPad frequently locks up, even after updating to iOS 7.1.  When it locks up it's nonresponsive to the home button and the only remedy is to force a shut down and reboot. Help!

    My iPad frequently locks up, even after updating to iOS 7.1.  When it locks up it's nonresponsive to the home button and the only remedy is to force a shut down and reboot. Help!

    DEVICE NOT RECOGNISED IN ITUNES
    If you have connected your device to your computer and it does not appear in the side bar in iTunes then for Windows computers read http://support.apple.com/kb/TS1538 or if you have a MAC then read http://support.apple.com/kb/ts1591 for troubleshooting steps.

  • I got my Iphone 3gs unlocked, but Navigation and Compass are not working. Please help if anybody had faced this problem and got it resolved.

    I got my Iphone 3gs unlocked, but Navigation and Compass are not working. Please help if anybody had faced this problem and got it resolved.

    Only the carrier that the iPhone was locked to can unlock. There you go, hacking void any support from this forum.

  • Help with Quiz pages and buttons (please)

    We use Captivate 6 with a subscription. I have put together a couple of modules with question pools, and some with just a few questions pages inserted. The last time I created a new captivate project, I put inserted quiz pages and the buttons were different then they had been before. The first few times they were grey, now they are green and a bit smaller. Looking at the proporties for each page and button, I cannot see anything that is different othe than one is a text button and the other is a transparent button. Both buttons are marked as default quiz button style. I don't use any themes. To make this short, I would like to know if there is a way to make the buttons the same every time I add a page, or a pool? I am not yet up to designing my own buttons, but probably will here shortly. Right now I need to get some training modules completed as quickly as possible so I don't have the time to reinvent the wheel (so to speak). The only other thing that I noticed was different in the projects was that in the skin editor one uses one called [default](modifired) and the other one uses one that I created. HOWEVER, I have another one that uses my custome skin and the buttons are grey on that one which is the same as the default one. I don't think the skin has anything to do with the button look. Correct me gently if I am wrong on this.
    Thanks for the help.

    Just one remark: in CP6 you always use a theme. And quiz slides have their own master slides, that will always be used. The buttons take on the style you see on those master slides, and this style can also be found in the object style manager. Skin and object styles are part of the theme. Probably you have overridden some of the styles defined?
    Lilybiri

  • HELP: Preloader and Button AS3

    Hi guys!
    I used to work on AS2 to make my animations, buttons and portfolios, but now I needed to use AS3 to make some forms interact with some PHP script.
    TextInputs and Buttons on COMPONENTS are working and interacting normally with PHP. My PreLoader is working great too. But what should the easiest is not working: MY SIMPLE BUTTONS! It used to be so easy in AS1 and 2, but now on AS3 it's not working. I am putting all my action and codes in a ACTIONS FRAME in the top of my animation, but it is not working!
    I have my Preloader on my frame 1 working, calling my animation on frame 2. The code is here (it's working):
    stop();
    addEventListener(Event.ENTER_FRAME, loading);
    function loading(event:Event) {
    var bytestotal = stage.loaderInfo.bytesTotal;
    var bytesloaded = stage.loaderInfo.bytesLoaded;
    var sclbar = Math.round(bytesloaded*100/bytestotal);
    custom_animation.gotoAndPlay(sclbar);
    if (bytesloaded >= bytestotal) {
    removeEventListener(Event.ENTER_FRAME, loading);
    removeChild(custom_animation);
    gotoAndPlay(2);
    Then I placed my buttons actions on the frame 2.
    If I use the action:
    home_btn.addEventListener(MouseEvent.CLICK,clickHome);
    function clickHome(evt:MouseEvent):void {
    gotoAndPlay(2);}
    release_btn.addEventListener(MouseEvent.CLICK,clickRelease);
    function clickRelease(evt:MouseEvent):void {
    gotoAndPlay(2690);}
    My movie pauses and no action is added to my buttons.
    I get this error: TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at index_Scene1_fla::MainTimeline/frame2()
    If I use the action:
    addEventListener("addedToStage", oas);
    function oas(ev){
    init();
    home_btn.addEventListener(MouseEvent.CLICK,clickHome);
    function clickHome(evt:MouseEvent):void {
    gotoAndPlay(2);}
    release_btn.addEventListener(MouseEvent.CLICK,clickRelease);
    function clickRelease(evt:MouseEvent):void {
    gotoAndPlay(2690);}
    The movie plays complete, but I get no actions in buttons and a error in my components textinput and button (they look like shaking).
    I get this error: 1180: Call to a possibly undefined method init.
    I tried to use the import flash.display.SimpleButton too, but it doesn't work too.
    Anyone could help me????
    Thanks,
    Pedro

    If you can provide a clear explanation of where the buttons are and where the code for them is located that might help lead to a solution.  From what you have described already it is not clear where the code is and where the buttons are.  You should not have to use an init function if you are doing so to wait for the buttons to be loaded... they are already loaded when you get wherever they are.
    For the 1009 error, it is indicative of the object targeted by your code does not exist in theframe where that code is.  SO if you have your code on frame 1 and your buttons are in frame 2, that would account for that error, as well as a few other possible scenarios.

  • I'm getting a similar message: There was an error opening the database..." and the only option I get is a "quit" button. Help!

    I'm getting a similar message: First it offers me chance to repair - but if I it repair, it crashes.  Then if I select do not repair I get the following warning: There was an error opening the database..." and the only option I get is a "quit" button. Help!

    From the path in the error message you posted it appears that the library is not on your internal (root) drive.
    What type of disk is the library on and how is it formatted?
    The crash log Léonie is referring to is what is printed out when Aperture crashes. You wrote that Aperture crashes in your first post so if the app crashes you must have gotten a crash report.
    Message was edited by: Frank Caggiano

  • How do i unfreeze my ipod when ive already tried the menu and select button and that didnt help?

    how do i unfreeze my ipod when ive already tried the menu and select button and that didnt help?

    How long did you press and hold both the Select (Center) and Menu buttons together?  Have you tried doing this procedure more than once?  Is the hold switch in the Off position?
    If nothing else, let the iPod's battery fully drain. Then charge it back up again.
    B-rock

Maybe you are looking for

  • GPS wrong auto-coordinates

    Hello, I have nokia 5800 expressmusic but my GPS is wrong I click on "auto-coordinates " for example where I am now but GPS it say around 400metros distance from me, I already update GPS but still same anyone have same problem as me ? I live in Portu

  • Anyone have a link to download 7.6?

    I really am getting tired with all of the network connection issues with 7.7. Ever since I installed it, it's been nothing but one problem after another. If anyone could please post a link for itunes 7.6, it would be greatly appreciated.

  • Install external graphic card for Probook 4420s

    Dear All, Please advice me how to install external graphic card for my Proboob 4420s? I want to setup Dialux Evo 3.1, however the software required directX 10.0 graphic card. Please help me to solve this problem?

  • Oracle is Case Sensitive, can we change this.?

    Hi all, As Oracle Data is a Case sensitive. but i want to know that, is there any way to change this ? that is , the data should not be a case sensitive. select * from emp where ename = 'smith'; Even the SMITH is in caps. it should return that record

  • Need Suggestion on choosing the correct Fax server to our ECC environment

    Dear All, We are in Planning to get Fax server to our companies SAP environment (ECC). Intention is to print Sales,Purchase orders & COA from SAP system. Would you please suggest for any supported docs/links for the same and also let us know if any t