Button not working...and I don't even know why

I have this on frame 1:
//FRAME NUMBER//
slidenumber_txt.text = currentFrame + " de " + totalFrames;Object(this).
//BUTTONVISBILITY//
a_btn.visible = true;
b_btn.visible = true;
c_btn.visible = true;
d_btn.visible = false;
e_btn.visible = false;
f_btn.visible = true;
g_btn.visible = true;
i_btn.visible = true;
j_btn.visible = true;
k_btn.visible = false;
l_btn.visible = false;
h_btn1a.visible = true;
h_btn1a.setStyle("icon", iconh);
h_btn1a.addEventListener(MouseEvent.ROLL_OVER, fh_btnro);
function fh_btnro(e:MouseEvent):void{button_txt.text = "Interacción";}
h_btn1a.addEventListener(MouseEvent.ROLL_OUT, fbtnrout);
h_btn1a.addEventListener(MouseEvent.CLICK, fbtnclickh1a);
function fbtnclickh1a(e:MouseEvent):void{
    var loadera = new Loader();
    addChild(loadera);
    loadera.load(new URLRequest("lesson1/interactions/interaction1a.swf"));
function fbtnclicki(e:MouseEvent):void{
    var loadera = new Loader();
    addChild(loadera);
    loadera.load(new URLRequest("lesson1/documents/document1a.swf"));
function fbtnclickf(e:MouseEvent):void{
var loadera = new Loader();
    addChild(loadera);
    loadera.load(new URLRequest("lesson1/sounds/audioplayer1a.swf"));
function fbtnclickj(e:MouseEvent):void{
    var loadera = new Loader();
    addChild(loadera);
    loadera.load(new URLRequest("lesson1/videos/video1a.swf"));
function fbtnclickk(e:MouseEvent):void{
    var loadera = new Loader();
    addChild(loadera);
    loadera.load(new URLRequest("lesson1/tests/test1a.swf"));
And this on frame 2:
slidenumber_txt.text = currentFrame + " de " + totalFrames;
a_btn.visible = true;
b_btn.visible = true;
c_btn.visible = true;
d_btn.visible = true;
e_btn.visible = true;
f_btn.visible = true;
g_btn.visible = true;
i_btn.visible = true;
j_btn.visible = false;
k_btn.visible = false;
l_btn.visible = false;
h_btn1b.visible = true;
h_btn1b.setStyle("icon", iconh);
h_btn1b.addEventListener(MouseEvent.ROLL_OVER, fh_btnro1b);
function fh_btnro1b(e:MouseEvent):void{button_txt.text = "Interacción";}
h_btn1b.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
Object(this).h_btn1b.addEventListener(MouseEvent.CLICK, fbtnclickh1b);
function fbtnclickh1b(e:MouseEvent):void{
    var loadera = new Loader();
    addChild(loadera);
    loadera.load(new URLRequest("lesson1/interactions/interaction1b.swf"));
I also have this on another layer:
import flash.events.MouseEvent;
import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
stop();
//STAGE//
stage.displayState=StageDisplayState.FULL_SCREEN;
//CUSTOM MENU//
var custom_menu:ContextMenu = new ContextMenu();
custom_menu.hideBuiltInItems();
var option1 = new ContextMenuItem("© Copyright 2012 Jeje Designs All rights reserved");
var option2 = new ContextMenuItem("+1 787.272.5059 | [email protected]");
var option3 = new ContextMenuItem("Project Title: Presentation System 1.0 Build 1 Release 1 | 01032012");
var option4 = new ContextMenuItem("Devigner: Edwin Merced | [email protected]");
var option5 = new ContextMenuItem("Security Access");
option5.enabled = false;
option5.separatorBefore = true;
custom_menu.customItems.push(option1, option2, option3, option4, option5);
contextMenu = custom_menu;
//NAVIGATION//
a_btn.setStyle("icon", icona);
b_btn.setStyle("icon", iconb);
c_btn.setStyle("icon", iconc);
d_btn.setStyle("icon", icond);
e_btn.setStyle("icon", icone);
f_btn.setStyle("icon", iconf);
g_btn.setStyle("icon", icong);
i_btn.setStyle("icon", iconi);
j_btn.setStyle("icon", iconj);
k_btn.setStyle("icon", iconk);
l_btn.setStyle("icon", iconl);
a_btn.addEventListener(MouseEvent.ROLL_OVER, fa_btnro, false, 0, true);
b_btn.addEventListener(MouseEvent.ROLL_OVER, fb_btnro, false, 0, true);
c_btn.addEventListener(MouseEvent.ROLL_OVER, fc_btnro, false, 0, true);
d_btn.addEventListener(MouseEvent.ROLL_OVER, fd_btnro, false, 0, true);
e_btn.addEventListener(MouseEvent.ROLL_OVER, fe_btnro, false, 0, true);
f_btn.addEventListener(MouseEvent.ROLL_OVER, ff_btnro, false, 0, true);
g_btn.addEventListener(MouseEvent.ROLL_OVER, fg_btnro, false, 0, true);
i_btn.addEventListener(MouseEvent.ROLL_OVER, fi_btnro, false, 0, true);
j_btn.addEventListener(MouseEvent.ROLL_OVER, fj_btnro, false, 0, true);
k_btn.addEventListener(MouseEvent.ROLL_OVER, fk_btnro, false, 0, true);
l_btn.addEventListener(MouseEvent.ROLL_OVER, fl_btnro, false, 0, true);
a_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
b_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
c_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
d_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
e_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
f_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
g_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
i_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
j_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
k_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
l_btn.addEventListener(MouseEvent.ROLL_OUT, fbtnrout, false, 0, true);
a_btn.addEventListener(MouseEvent.CLICK, fbtnclicka, false, 0, true);
b_btn.addEventListener(MouseEvent.CLICK, fbtnclickb, false, 0, true);
c_btn.addEventListener(MouseEvent.CLICK, fbtnclickc, false, 0, true);
d_btn.addEventListener(MouseEvent.CLICK, fbtnclickd, false, 0, true);
e_btn.addEventListener(MouseEvent.CLICK, fbtnclicke, false, 0, true);
f_btn.addEventListener(MouseEvent.CLICK, fbtnclickf, false, 0, true);
g_btn.addEventListener(MouseEvent.CLICK, fbtnclickg, false, 0, true);
i_btn.addEventListener(MouseEvent.CLICK, fbtnclicki, false, 0, true);
j_btn.addEventListener(MouseEvent.CLICK, fbtnclickj, false, 0, true);
k_btn.addEventListener(MouseEvent.CLICK, fbtnclickk, false, 0, true);
l_btn.addEventListener(MouseEvent.CLICK, fbtnclickl, false, 0, true);
function fa_btnro(e:MouseEvent):void{button_txt.text = "Salida";}
function fb_btnro(e:MouseEvent):void{button_txt.text = "Final";}
function fc_btnro(e:MouseEvent):void{button_txt.text = "Siguiente";}
function fd_btnro(e:MouseEvent):void{button_txt.text = "Anterior";}
function fe_btnro(e:MouseEvent):void{button_txt.text = "Inicio";}
function ff_btnro(e:MouseEvent):void{button_txt.text = "Audio";}
function fg_btnro(e:MouseEvent):void{button_txt.text = "Glosario";}
function fi_btnro(e:MouseEvent):void{button_txt.text = "Lectura";}
function fj_btnro(e:MouseEvent):void{button_txt.text = "Video";}
function fk_btnro(e:MouseEvent):void{button_txt.text = "Prueba";}
function fl_btnro(e:MouseEvent):void{button_txt.text = "Button L";}
function fbtnrout(e:MouseEvent):void{button_txt.text = " ";}
function fbtnclicka(e:MouseEvent):void{var mc:lessonexit_mc=new lessonexit_mc();
mc.x=479;
mc.y=290;
addChild(mc);}
function fbtnclickb(e:MouseEvent):void{gotoAndStop("lastframe");}
function fbtnclickc(e:MouseEvent):void{nextFrame();}
function fbtnclickd(e:MouseEvent):void{prevFrame();}
function fbtnclicke(e:MouseEvent):void{gotoAndStop("firstframe");}
/*function fbtnclickf(e:MouseEvent):void{var mc:audioplayer_mc=new audioplayer_mc();
mc.x=751;
mc.y=141;
addChild(mc);;}*/
function fbtnclickg(e:MouseEvent):void{
    var loadera = new Loader();
    addChild(loadera);
    loadera.load(new URLRequest("glossary/glossary.swf"));
//function fbtnclickh(e:MouseEvent):void{}
/*function fbtnclicki(e:MouseEvent):void{button_txt.text = "I";}*/
/*function fbtnclickj(e:MouseEvent):void{button_txt.text = "J";}*/
/*function fbtnclickk(e:MouseEvent):void{button_txt.text = "K";}*/
function fbtnclickl(e:MouseEvent):void{button_txt.text = "L";}
Button h_btn1b does not work....I wonder why?

Do you get any error messages? 
Try putting traces in the h_btn_1b function to see if it is working.
If h_btn_1b is in a frame adjacent to h_btn_1a and they are the same symbol, it is possible that b has been converted to a.

Similar Messages

  • I just got iphone 5c and i am not happy with it. It uses to much data and i don't even know how. I can't get the ringtones i want for my contacts.I got it on my free upgrade but i want to take it back and get something else but where i got it they say i c

    I just got iphone 5c and i am not happy with it. It uses to much data and i don't even know how. I can't get the ringtones i want for my contacts.I got it on my free upgrade but i want to take it back and get something else but where i got it they say i can't because i don't have the earbuds and i have serches or them. now i am suck with a phone i don't like at all until my next upgrade. this is very dishearten

    1. If you are this unhappy with that phone, and the lost earbuds is the only thing stopping you from taking it back, why do not just buy some earbuds. That way you can get rid of that phone. It all depend upon how much you want to get rid of that phone.
    2. Yet if you are stuck with that iPhone, here is something might help you to control the data usage. By design, iPhones do turn off WiFi when they go dormant. So if a download is in progress and so forth when the phone goes dormant, it will switch to use cellular data, if this setting is left on. Therefore, from multi-sources I have learned that if you keep your iPhone connected to a power source, then it will stay connected to the available WiFi.

  • Power button and home button not working and dont have warranty

    power button and home button not working and dont have warranty

    I had the same problem went to a store and paid $80 to have them replace the cable and it works fine now.

  • My loudspeaker and lock button not working and my warranty has expired!!! I do not know what to do!!!! HELP PLEASE!

    My loudspeaker and lock button not working and my warranty has expired!!! I do not know what to do!!!! HELP PLEASE!!

    Those are hardware issues. You can try all of the software troubleshooting if you want. Restart, reset, restore from backup, restore as new. If that does not work, then your only option is to pay someone for something. The decision is up to you, but I've provided the options.

  • Hi guys, i have bought a jalil break iphone 4 and i don't even know can't do the update, so anyone got idea to fix it up? thank you.

    Hi guys, i have bought a jalil break iphone 4 and i don't even know can't do the update, so anyone got idea to fix it up? thank you.

    franciskhor wrote:
    Hi guys, i have bought a jalil break iphone 4 ...
    You will need to look elsewhere
    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743

  • Help me .....My HOME button not working and responds very very slowly

    My home button not working is very slowly
    Help me pliss

    Hello Frajaisa
    I have highlighted below the troubleshooting steps for issues with the Home button slowly responding.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    The Home button is slow to respond
    If the Home button is slow to respond when exiting one application, try another application.
    If the issue exists only in certain applications, try removing and reinstalling those applications. Get further assistance in installing and troubleshooting applications.
    If the issue continues, Try turning iPhone off and then on again. If the iPhone will not restart, try resetting it.
    If the issue is still happening, try to restore the iPhone.
    Seek service is the issue is still occurring.
    Regards,
    -Norm G.

  • My log in password is not working and I don't have the disk to restart

    I have problem with log in password. I don't know why is not working. I don't have any CD with my Mac to reinstal.

    If the OS  is Mac OSX 10.7 Lion
    Use Method 1  Using Recovery HD from the link below.
    Best.
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/

  • HT3552 I want be refund my money, Rdio set up about subscription that they charge me $14.99, I don't like it and I don't even know they will charge me, they said free apps. When I click, they toll me to sign in with my Apple ID. I want refund my money .

    I want be refund my money, i thought Rdio set up apple clients with their link, they charge me $14.99, for subscription I don't even know about it, because they said apsis free! Just sign with your apple ID.when I did they charge me the for subscription,I need refund I don't want and like Rdio.

    https://discussions.apple.com/thread/4797968?tstart=0
    No need to double-post.
    Regards.

  • Unexpected performance of Firefox in Windows 7, namely minimize/maximize/close buttons not working and unable to move/resize window.

    I have been using FF for a while now. My main computer was WinXP-32, though I recently bought a new laptop with Win7-64 installed. This problem was never experienced on my WinXP machine.
    Brief description of problem:
    After a time of having FF up and running, the minimize/maximize/restore/close buttons in the top-right no longer work as expected and, if not maximised, I cannot move the window around my desktop nor resize the browser window. When clicked, the buttons will
    rapidly flash on and off continuously without appearing to perform any noticeable function other than temporarily hogging CPU cycles. I've found that clicking (sometimes double clicking) in the main browser window then mousing over the buttons again seems
    to stop them flashing, though does nothing else.
    To minimize/maximize/restore/move/close the window(s), I have to right-click on the relevant tab in my taskbar and pick the desired option. Occasionally, however, even this doesn't work and the right-click menu will disappear as soon as I move the mouse
    over it after right-clicking. 'Show desktop' is a temporary fix for minimising windows and 'ALT + F4' or 'CTRL + W' for closing windows or tabs. This isn't satisfactory and to move or resize a window, I have to close the window in question (sometimes all other
    windows too), reopen it and do what I need to do, though sometimes even this is only a very short fix. If I have to close all the windows, FF will sometimes keep running for a while afterwards, even though no windows are actually open - simply ending the process
    via the windows task manager will fix this though is only a work-around, not a fix.
    One thing I have noticed is that if I manage to move the browser window (when not maximised), for a short period afterwards I can often resize the window successfully. This is more likely to occur if the browser window is not flush with the edge of my screen
    once moved.
    I've tried to include as much information as I can - most of which was determined after several minutes/hours of playing around with different scenarios, trying to manually reproduce particular problems or simply through sheer luck of happening to click
    in the right place at the right time! I hope there is a reasonably fix for this at some point in the not-too-distant future.
    I noticed in some of the threads at another site where people have voiced problems similar to mine, that a link to 'ObjectDock' was discovered in some cases. I do have 'ObjectDock 1.90 Plus' installed on my machine and use it in many ways and so decided
    to see if I could find a connection between the two. I have uninstalled, tested, and reinstalled both programs in a multitude of ways, though could find no conclusive correlation between having both bits of software running or installed at the same time and
    the problems I am experiencing. In my case, at least, this does not appear to be an answer.
    Also, in another thread on this site, someone suggested there might be a link with AVG Anti-Virus Free (I have version 9.0.819) though I've tried uninstalling it and its various add-ons in several different combinations, with no noticeable improvement.
    Sorry for such a long question... If you need to know anything more, just let me know!
    - James
    System Information:
    Operating System: Windows 7 (64 bit)
    Firefox Version: 3.6.3
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    <button onclick="openProfileDirectory()"> Open Containing Folder </button>
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Update Service
    1.2
    true
    [email protected]
    Java Console
    6.0.17
    true
    {CAFEEFAC-0016-0000-0017-ABCDEFFEDCBA}
    Adblock Plus
    1.2
    true
    {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Download Statusbar
    0.9.6.8
    true
    {D4DD63FA-01E4-46a7-B6B1-EDAB7D6AD389}
    Cooliris
    1.11.6
    true
    [email protected]
    FoxTab
    1.3
    true
    {ef4e370e-d9f0-4e00-b93e-a4f274cfdd5a}
    Save File to
    2.0.1
    true
    [email protected]
    1-Click YouTube Video Downloader
    1.4
    true
    [email protected]
    British English Dictionary
    1.19
    true
    [email protected]
    Tab History
    1.0.7
    true
    {84417002-6445-49b4-9fd7-1ef48240fa41}
    Universal Print
    0.4.23
    true
    {BE2100B3-1D80-48eb-ACCF-D26750644378}
    Active Stop Button
    1.3.0
    true
    {9e96e0c4-9bde-49b7-989f-a4ca4bdc90bb}
    Fission
    1.0.9
    true
    {1280606b-2510-4fe0-97ef-9b5a22eafe41}
    Smart Bookmarks Bar
    1.4.3
    true
    [email protected]
    Compact Menu 2
    3.1.1
    true
    {57068FBE-1506-42ee-AB02-BD183E7999E4}
    Menu Editor
    1.2.6
    true
    {EDA7B1D7-F793-4e03-B074-E6F303317FB0}
    Locationbar²
    1.0.5
    true
    [email protected]
    RealPlayer Browser Record Plugin
    1.0
    true
    {ABDE892B-13A8-4d1b-88E6-365A6E755758}
    AVG Safe Search
    9.0.0.812
    true
    {3f963a5b-e555-4543-90e2-c3908898db71}
    Searchbar Autosizer
    1.4.5
    true
    {655397ca-4766-496b-b7a8-3a5b176ee4c2}
    Open Bookmarks in New Tab
    0.1.2010043001
    true
    [email protected]
    Remove New Tab Button
    1.0
    true
    [email protected]
    New Tab Homepage
    0.4.2
    true
    {66E978CD-981F-47DF-AC42-E3CF417C1467}
    SwiftTabs
    0.3.6.8
    true
    {5F4EC95A-FFA8-11DE-898C-667D55D89593}
    Tab Kit
    0.5.8
    true
    [email protected]
    Hide Find Bar
    1.3.1
    true
    [email protected]
    Toolbar Buttons
    0.6.0.8
    true
    {03B08592-E5B4-45ff-A0BE-C1D975458688}
    Java Console
    6.0.19
    true
    {CAFEEFAC-0016-0000-0019-ABCDEFFEDCBA}
    View Cookies
    1.10.1
    true
    {8F6A6FD9-0619-459f-B9D0-81DE065D4E21}
    Adobe DLM (powered by getPlus(R))
    1.6.2.63
    true
    {E2883E8F-472F-4fb0-9522-AC9BF37916A7}
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar
    0
    browser.history_expire_days.mirror
    180
    browser.places.importBookmarksHTML
    false
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage
    http://www.bath.ac.uk/
    browser.startup.homepage_override.mstone
    rv:1.9.2.3
    browser.tabs.closeButtons
    0
    browser.tabs.tabMinWidth
    77
    browser.tabs.warnOnClose
    false
    extensions.lastAppVersion
    3.6.3
    network.cookie.prefsMigrated
    true
    network.http.pipelining
    true
    network.http.pipelining.maxrequests
    50
    network.http.proxy.pipelining
    true
    places.last_vacuum
    1271706454
    privacy.sanitize.migrateFx3Prefs
    true
    privacy.sanitize.timeSpan
    0
    security.warn_viewing_mixed
    false
    security.warn_viewing_mixed.show_once
    false

    Hi Kossa,
    You can also check if the issue occurs in
    Clean Boot. If the issue disappears in the Clean Boot environment, you can continue to narrow down which entry is causing the issue.
    Besides, uninstall it and re-download
    a fresh copy of FireFox to check the result. If the issue still exists, create a new user account to see if it occurs.
    If the issue persists, you can contact Mozilla Support directly and use Internet Explorer (IE) during the time.
    J
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise,
    regarding this product's performance or reliability.
    Regards,
    Linda

  • Buttons not working and difficult to unlock

    hi, does anyone know how i can fix my blackberry curve 8520 or is it to be deemed unfixable!?
    I have been having difficulties unlocking the handset and have to hold the mute button for a long period of time, however when i came to use it the other day even this didnt work and when i managed to get it to work but it automatically locked after only a few seconds.
    when i can get my phone to work the majority of the buttons fail to work.
    Is there anything i can do?
    The warranty ran out on it 5 months ago and it is on pay as you go, but would carphone warehouse (where i brought the phone from)
    Would appreciate any form of help lol
    thanks

    Often problems with the buttons duplicating characters or not working at all, is an indication of moisture problems.
    It sounds like what I have seen multiple times on a device with moisture damage.
    Even sitting on a bathroom counter during a hot steamy shower or bath can cause keyboard and trackball problems UNTIL properly dried out. It really is more common than you think.
    1. Remove the battery immediately!! Do not attempt to turn on your BlackBerry.
    2. Let the device dry in a warm, dry place for 3 to 5 days* (see below)
    3. DO NOT "check it each day" by placing the battery in. Leave it be to dry completely. This takes time. Replacing the battery to check it can only damage it more (moisture + electrical current = disaster).
    4. If the device is warm after the drying period, allow it to cool to room temperature before placing the battery back in.
    Suggestions on drying your BlackBerry in a warm place (open, with the battery out):
    *Place the BB in a container of dry UNcooked rice, and then you might also place it in any of the locations mentioned below.
    *On top of any dry heat emitting electronic component: TV cabinet or CRT, LCD, cable TV/Satellite converter box or plasma monitor
    *On the dashboard of your car on a sunny day
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Trackpad Button Not Working and More...

    Hi,
    As of last night my trackpad button just stopped working. No slow degradation of clicks or anything....it just stopped. As in I couldn't click anything on screen....the trackpad movement was absolutely fine...just no click ability.
    So, my immediate thoughts were "it's a mechanical problem...gonna have to replace it. I know, I'll use a USB mouse for now." So, I plug it in and the left mouse button does not work. This is a brand new mouse....but just for the sake of it I tried another one from my PC with left and right buttons on it.....same problem.
    I knew that it couldn't be mechanical because surely the mouse clicks would have worked ok. It had to be a problem with the OS or the firmware that drives it. So, I first reset the PRAM, reset the PMU and even opened up the Open Firmware screen on boot-up and 'reset-all' in there. No joy.
    I then booted up from CD....same problem.
    I 'Archived and Installed' new version of OSX....same problem.
    I have now completed erased my hard drive and installed a completely clean version of OSX.....and I get the same no click situ.
    Before I go chaging the trackpad (which actually involves changing the entire top plate) has anyone got any ideas as to what this problem might be??
    And has anyone experienced a broken trackpad button that also effects the way a USB mouse clicks?

    Hey there,
    Did you get this problem fixed?
    I am having the exact same problem.
    Only I just re inserted the start up install disk and the track pad and mouse worked fine.
    But now I'm logged back into OSX again the problem is back.

  • Flash Player And adobe reader not working and downloads don't work

    I have IE 8 and windows vista and everything has worked great for 2 years until 2 or 3 weeks ago.  At that time my flash player stopped working so I could no longer get videos , streaming stock quotes, weather map loops, etc and when I go to websites that use Flash (i.e. Piaaz Hut) it wouldn't work.  Also, at that same time my adobe reader stopped working properly and I can't view mosy PDF Files.
    I have gone through many of the posts on this forum and have tried many of the fixes, but none have work for me.
    I tried to uninstall the Flash Player, but I didn't use the Adobe uninstaller.
    Whenever I try to update or load the Flash player, a dialog box with the globe tossing papers to the folder appears and then after a few seconds I get the the message that IE can't install_flash_player_ax.exe from fp download.adobe.com, and then a message that says IE was not able to open this internet site. The requested site is either unavailable or cannot be found.
    In control panel programs I have listed
    Adobe AIR      no size
    Adobe Flash Player 10 active X           no size
    Adobe Reader 9.3     141mb
    Macromedia Shockwave player      no size
    In Tools i have the following add ons and they are all enabled
    Shockwave Flash object 10.0.42.34
    Adobe PDF Link Helper
    Adobe PDF Reader
    Macromedia Shockwave Active X Control 10.1
    As I said I've already attempted a number of the fixes on this forum, but so far no luck.
    Does anyone have any suggestions on what else I might try?
    Thanks

    Ok, I tried to download the firefox browser but IE wouldn't let me download it.  My friend downloaded it from their computer to a flash drive and I loaded it to my computer from the flash drive.  The download of Firefox from the flash drive worked, and now I'm using Firefox & both my adobe flash player and my adobe reader are working just great.
    However, neither the flash player nor the reader are working if I use IE, so I guess I will just have to use Firefox as my browser.
    I'm going to mark my question as answered since I really don't care that I have to use Firefox instead of IE,although I can't understand why it works using Firefox but not using IE.
    Thank you so much for your assistance in walking me step-by-step through this problem until I was able to reach a satisfactory solution.

  • SOLVED!--Media Buttons not working and TVAP will NOT uninstall

    I have  a A660D-STNX2 running WIN 7 sp 1.
    The media buttons have stopped working and all threads concerning this have one reinstalling TVAP.  Trying that has not changed functionality.   I believe it is because I cannot uninstall TVAP.  Uninstall gives a an immediate error of RegDBGetItem failed (1) . Which I think means the registry does not contain the item to be removed.
    Any ideas will be appreciated.
    UPDATE!!
    Was able to restore backup of registry,  then could uninstall TVAP.  Installed updated TVAP (from web site) and buttons were assigned wrong,  went back to orginal TVAP from Toshiba Application Installer ({start}-{my toshiba}-{tai})
    All is well now.

    Hi mate,
    Wow, thats really good work! :)
    Im pretty sure that this would be interesting and very useful for other Qosmio X305-708 owner!!!

  • Curve 9380 answering button not working and automatic calls without making any call

    Hi I am using Blacbuerry Curve 9380, i am facing the following issue. pls help me 
    1. Answering button in not working at all.
    2. Without my knowledge automatic dialling & calls are made
    3. Frequent Mobile restart - while in phone calls, after phone call disconnect, while opening mails, opening msg.
    And I dont have any other application or software. other than Whatsapp, Facebook, twitter (occasionaly only will use) and ucbrowser.

    Did you perform a hard reset yet?
    Perform a Hard Reset
    A hard reset is similar to restarting a computer that stops responding. A hard reset closes all running BlackBerry applications, restarts the BlackBerry smartphone operating system, and restarts the hardware components of the BlackBerry smartphone, including the wireless transceiver. A hard reset does not delete any settings or data on the BlackBerry smartphone.
    To perform a hard reset, complete the following steps:
    Turn the BlackBerry smartphone off.
    Remove the battery.
    Reinsert the battery.
    Wait for the BlackBerry smartphone to turn on.
    Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

  • IPod home and lock button not working and tried assesive touch

    All of a sudden I clicked my home button and nothing happened so I tried again and nothing happened, then I pressed the lock button and nothing happened either. Yet it was still letting me touch the screen. I've tried assesive touch or whatever it's called but that won't let me do anything either! Help! Bit please don't tell me to get it repaired.

    Try:
    - iOS: Not responding or does not turn on
    - Also try using this program to place the iPod in recovery mode
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

Maybe you are looking for

  • MacBook to CRT TV... is it possible?

    Hi all, I have a 13" MacBook that I purchased in January 2010. I also have a very, very old CRT TV with an RCA port. I would like to hook up my laptop to the TV to watch YouTube videos and Netflix "watch instantly" videos on my TV screen. After some

  • Help - Inkwell transfers only the letter A into Remote Desktop.

    Hello, I use Microsoft's remote desktop over a VPN to use my servers at work (terminal services). It works great in every aspect except when I try to write using inkwell. When I start to write with my stylus the yellow paper window opens and accepts

  • Distribute cost center data change pointer

    HI I need to distribute cost center data through change pointers Can anyone please tell me the steps i need to follow please dont give links, but would be helpful if some1 can tell me step by step and how to do testing, ie which tables i need to chec

  • Every single page I open on Firefox never fully loads.

    The content loads, but the blue circle is constantly spinning on the tab of every website I open. It's not my internet connection because Firefox works on my brother's macbook, and everything else internet related works absolutely fine. Just Firefox

  • Can anyone help me with an unlocked Cingular treo 680??

    Hi there,... help! I have an unlocked Cingular treo 680 - I live in Australia (bought it in L.A) - and I'm now trying to access the web using my data plan. I'm with the Three network, and they connect to the web using a proxy server, Cingular only su