F1 key does not open script reference anymore

Hello Gurus,
I had used Macromedia Flash and an old but good feature does not seem to work any more in Adobe Flash Professional CS6.  This feature is by highlighting a recognized keyword "in blue" in the actions panel followed by the F1 key, a local version of the actionscript reference opens in a different window.  Was this feature removed?  If so really wish to have that back...
Thanks for your time!
Newbie

Yep, that came broken in CS6. You can find the update here: http://www.adobe.com/support/flash/downloads.html#flashCS6

Similar Messages

  • Firefox 3.6.13 does not open new tabs anymore. Ctrl-T, file- new tab , right click new tab no longer works. Why is this?

    No new extensions or add-ons have been installed. And all the features options to open new tabs fail to open a new tab. Can someone tell me how to fix the problem? I'm tempted to downgrade to an earlier version of firefox or reinstall 3.6.13 to see if that fixes the problen.

    disabling/uninstalling firebug and restarting firefox does seem to fix the problem. thanks. The next problem is trying to report the problem to firebug. firefox blocks the https://blog.getfirebug.com/2012/10/09/firebug-1-10-4/#respond web site/page because of its certificate, but does not give you an option to accept the certificate anyway.

  • Illustrator CS6/Maverick does not open SVG(Z) anymore

    After Updating OS X (Maverick) Illustrator CS6 is not able to open .svg and .svgz files with SVG text under the condition, that the fonts not installed on the system.
    Is there any solution available to open such files without installing the fonts?

    Have you used file >> open ro are you double clicking on the .svg .svgz files? Then you want to fix your file associations by doing a commnad I on a .svg file and changing open with, and clicking change all.

  • AIR app does not open anymore after minimizing on windows

    Hi guys,
    I need some help in figuring out a strange issue I am facing.
    I have an AIR app whih is minimizable. When I run it on windows XP and minimize it, it gets minimized. But
    clicking on the task bar does not open the app anymore. The task manager shows that the CPU usage for the app has gone upto 50%
    and it consistently stays over there with out recovering from it.
    Right clicking on it and then trying it to close shows me the windows dialog: "the program is not responding".
    MInimizing and re-opening works fine on MAC.
    Anyone has ideas on what might be happening? Suggestions or pointers on how to debug this?
    thanks,
    Sunil

    It turns out that in one of my UI components, the top level item was a VBox which was using a list of HBox components and the height of each HBox component was set to VBox height /5.
    I modified the height to be set to "100%" for each HBox.
    and everything worked fine.
    I really do not know how it can cause the application to hang earlier.
    thanks,
    Sunil
    Sunil Patro
    video chat: www.tokbox.com/sunil

  • Safari does not open pdf

    Just began to notice that Safari does not open PDF files anymore.  PDF's do not automatically download either.  One solution I checked was to removed anything with PDF from internet plugins in LIBRARY, but I have none.  I was directed to install Adobe Reader. I already have Acrobat Pro installed.  Shouldn't preview be what is needed to view PDF?  Sugestions?

    What I ended up doing was to to follow these dirs:
    ellecee55
    Feb 15, 2013 3:19 PM (in response to phreaky_d)
    Hi,
    I also installed Adobe Reader because an ebook I downloaded wouldn't open without it.
    I then chose Adobe Reader as my default. When I later uninstalled it using the Trash Me app-which usually clears everything out-I couldn't get Preview back as the default.
    I went to the "Library/Internet plug-ins" path and trashed the two Adobe Reader plug ins that were there. I used Secure Empty Trash, and then shut down completely and did not check the box to reopen any windows. Then I restarted the Mac.
    I not only shut down Safari, I closed all applications and shut down the Mac completely being sure to uncheck the "relaunch with windows open" button. When I turned the Mac back on, I opened Safari and went to an online PDF that I had been trying to open previously to test the app. It opened this PDF using Preview and showed it in Safari.
    I then tested using a PDF from my files and it opened in Preview.
    Quit Safari.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type of copy / paste:   /Library/Internet Plug-Ins
    Click Go then move the Adobe PDF Browser plugin from the Internet Plug-Ins folder to the Trash.
    Relaunch Safari to test.
    This worked for me and Safari now reads PDFs as is always did.

  • HT2638 since updating iPhoto it has ceased to open.  i have tried to Hold down the Command and Option keys on the keyboard but it does not work.  iPhoto still does not open

    Since updating iPhoto it has ceased to open.  I have tried to Hold down the Command and Option keys on the keyboard which is the suggested solution to then open a suggested solution to rebuild the library,  but it does not work.  iPhoto still does not open.  can someone please help?
    thank you

    Try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
        Home/Library/ Preferences folder.
    2 - delete iPhoto's cache folder(s):
    Home/Library/Containers/com.apple.iPhoto
    and, if there is one, the
    Home/Library/Caches/com.apple.iPhoto folder
    3 - reboot, launch iPhoto and try again.
    NOTE: For Mavericks, 10.9,  go to your Home folder and use the View ➙ Show View Options menu to bring the this window:
    Happy Holidays

  • Web.show_document does not open browser anymore

    We upgraded our production database over the weekend from 10g to 11g. When it was still 10g, our Forms application used to open a PDF embedded in IE. After moving to 11g, it does not open IE anymore and shows no error messages. Clicking the button with the web.show_document command does nothing. Our test database is also 11g but does not have this problem. What could have gotten wrong?

    I can't explain why it seems to started failing all of a sudden. We often hear comments like this only to later discover that either someone else made changes of which you are unaware or possbily a software update occurred automatically. For example, the JRE version may have been auto-updated.
    As for recoding in an alternative fashion, it will be difficult for me to say specifically because I don't know the app nor do I know your needs. The biggest, and it isn't all that big, deal will be to identify from where the pdf being opened comes from. In other words, does it already exist on the client machine or is it downloaded to the client from the/a server? Also important to know is whether or not the file name is known or not.
    So, if you want to change the code, first figure out how you want the application to complete the task. Here are my suggestions:
    Suggestion 1.
    <blockquote>If the file (pdf in your case) originally resides on a remote server, then leave it there. The document can be opened using a direct url to the file on the remote server. For example:
    WEB.SHOW_DOCUMENT ('http://server/somepath/my.pdf','_blank');If the file lives within the Forms directories, you can even use a relative path rather than the fully qualified one above. For example, if the files live in \forms\java\foo then you can do this:
    -- The exact entry may differ slightly depending on which
    -- Forms version you are using and where you locate the files
    WEB.SHOW_DOCUMENT ('/forms/java/foo/my.pdf','_blank');This makes the application a little more flexable given that you would not need to change the app code if the server name changed. Once the file has been opened on the client side, whatever pdf reader the end-user is using will offer a "Save" option. So if they choose to save the file locally, they can do so as they desire.</blockquote>
    Suggestion 2.
    <blockquote>If, for whatever reason, the file is downloaded to the client or just happens to already exist on the client, you can use WebUtil's CLIENT_HOST (or WEBUTIL_HOST.HOST) command to open the file locally. There are several ways to do this and which method you choose will depend on a few factors. For example, are all the client machines Windows based? I will assume, for this example that the client machines are Windows based. And, because I like to write code as generically as possible, here is a way to open documents on Windows without the need to know which application normally handles it. In other words, you don't need to know that it will be Adobe Acrobat that opens pdf files or that MS Word will open doc files.
    -- In this example, the value of myPathAndFile is the path and filename.
    -- For example, myPathAndFile := 'C:\Users\<USER_NAME>\Documents\foo.pdf';
    CLIENT_HOST('rundll32 shell32,ShellExec_RunDLL '|| myPathAndFile);This is a bit of an old school way of accomplishing the task, but it is very effective and flexiable. Alternatively, you could use CLIENT_HOST to directly call the file, but this may not always work. For example:
    CLIENT_HOST('C:\Users\<USER_NAME>\Documents\foo.pdf');</blockquote>

  • I installed Yosemite yesterday on my 2013 MacBook Pro and Word does not open anymore. Any advice/solution?

    I installed Yosemite yesterday on my 2013 MacBook Pro and Word does not open anymore.v Any advice/solution?

    How to completely remove Office for Mac 2011
    Do it per these instructions, don't just put the apps in the trash.

  • Always Script Editor ... Alt Gr key does not work

    Hi,
    With IE6 in SQL Script Editor
    Alt Gr Key does not work.
    For instance, I cannot type ||
    In fact it's a copy-paste from SQL command (which works well)
    Note Script Editor does not work with Firefox.
    Thank you for any information
    Regards
    JRD120

    You might try this:
    Remove any USB device except mouse/keyboard
    Perform a PRAM-reset (hold ALT-CMD-P-R until you've heard the starting chime 3 times)

  • HELP - iMovie11 project does not open anymore

    I worked for hours saved it on internal and external drive and all but now it does not open anymore (neither internal nor external) . iMovie freezes right at the beginning of opening the project - progress bar at about 10% nothing moves. I just worked on that project several days and cut the video from 3 hours to 50 mins. any ideas?? PLEASE Dont say I need to start all over.
    other projects open all right.
    Message was edited by: framel

    Can you start iMovie from another user account on your Mac? If so, something is corrupted in your User folder, most likely the Plist.
    Try going to <User>/Library/Preferences/ folder.
    Drag com.apple.iMovieApp.plist to your desktop.
    Then restart iMovie.
    If that does not help, the corruption may be in your Project file. In this case, if you are running Time Machine, go back in time to a working version.

  • VI does not open anymore

    I have been working on a VI for a few Months not and it does not open anymore. The last change I did was on a Mixed signal graph
    and now when I try to open the VI LabVIEW freezes at the welcome screen. Any ideas on how to recover this VI will save tons of work.
    Solved!
    Go to Solution.

    Drewski wrote:
    The vi may be in run-on-open mode.  You might try creating a new blank vi and adding the vi to the block diagram and try opening it up from there.
    Good Luck. 
    Why would that freeze LabVIEW when being opened?

  • Pages does not open anymore after the latest update

    I did all suggested problem solving steps, but after the last update Pages does not open anymore.
    It opens a window and immediately crashes again.
    I paid for it, and I used it for my business - and I'm so angry, that there is no support for apps in fact...

    Welcome to the Apple Community.
    Turn off iCloud for Pages on your mobile device at Settings > Pages > Use iCloud > Off.
    Open Pages on your computer and move any documents in iCloud to your desktop for safe keeping.
    Navigate to system preferences > iCloud > Manage and check that Pages documents are not taking any space in the cloud, delete them if they are.
    Enable iCloud syncing for Pages on your mobile device and launch the App.
    If Pages now opens properly, start to add back documents from your desktop one at a time (or in small groups if you have many).

  • Captivate does not open anymore

    Hi everybody,
    Since yesterday morning my Cap7 does not open anymore.
    - I have tried to open the program without opening any projects: failed...
    - I have to tried to open specific project directly: failes...
    When opening projects/the program I can see the loading bar and the the task manager shows me some CPU and working memory usage. The Cap icon also appears in the lower menu bar. But obviously, as soon as the project is fully loaded (so it seems to me), the program is closed and no more processes are visible.
    Background information:
    - Win 7
    - Cap 7
    - in a company environment (last week everything worked without any problems)
    - cannot open Cap in administrator mode
    I could imagine that there have been any updates or whatsoever from out IT department over the weekend. But if this could be the problem, it would be great to have any idea what COULD be the problem.
    Really hoping that you can help as I have to launch course translations in the next days...
    Kind regards!

    Is your company network using virtual My Documents folders or roaming user profiles?  If so, that might be the cause of the issue if there has been a change to the location of your My Documents folder.  Have you recently moved location in the company?
    Since you are unable to open Captivate there's no way to find out where your current Default Locations are.  These are shown on the Preferences > General section.
    Perhaps one of the Adobe reps on this forum can tell you how to find the Captivate log file that will hopefully show where the launch has failed.  In the meantime, contact your IT department, have them remote into your PC and try to launch Captivate using Administrator privileges under their IT admin profile.  If the issue is related to privileges, then they should be able to open it.  If they can, then try and see what the Default Locations are (as mentioned above).  If the default locations are NOT on your hard drive, then change them immediately while the Admin is logged in.

  • After updating Photoshop yesterday the program does not open anymore. Program does not respond

    After uodating Phtoshop yesterday, it does not work anymore. Program does not respomd

    Thanks for your help! I tried your suggestion but only switched off the firewall (although just swichting-off of the firewall may not help). This did not solve the problem.
    But! I was able to solve it! A friend came up with the idea. It was a profile problem. Somehow, the profile information must be damaged (and he explained me, that this ocures sometimes when updating from firefox 3 to 5). I dont know what is going on there. However, after creating a new profile everything was alright and firefox 5 works now!
    If firefox does not open and you want to create a new profile:
    -right click on the firefox icon
    -properties
    -shortcuts
    -check if the "target" is correct (the exe.file is at this place on your machine)
    -if yes: add after the target: [space]-p
    -apply and ok
    -now start firefox, this will open the profile manager
    -create a new profile
    -apply
    -open firefox again and it will work (at least in may case).
    Hope this is a help for all who have the same problem. I am very happy now and looking forward to enjoy firefox 5.
    Thanks a lot! And good luck for everybody trying to solve computer problems!

  • Ever since updating to OS 10.10.3, my iTunes does not open anymore!

    Ever since I updated to 10.10.3, my iTunes does not open anymore.
    I have restarted my computer, and tried to open it again but it did nothing. I installed iTunes again and also did not help. Opening iTunes from the application folder in Finder did nothing, as well as opening it from the launchpad did not help.
    The app does not even bounce up and down in the dock, it just does nothing.
    I think I have tried almost all basic methods. Is there anything else I can do?!
    Please help!
    (MBPR mid 2012)
    Thanks in advance

    Same bro, same. Ever get it fixed?

Maybe you are looking for