Way to hide file path when TOC clicked?

Following great info from this site, I've managed to get rid
of the actual file location that displays at the bottom of the
screen when the pointer is hovered over a page in the TOC.
Though when I click a page, the full path displays until I
move the pointer outside of the highlight.
Any thoughts?

Thanks esdebon for your response. I have tried to get it to work and keep getting compiler errors. Nothing happens when i click on the movie clip. button was converted to a movie clip and I added the actionscript but to no avail. This is the error I am getting while testing:
Scene=Scene 1, layer=low, frame=1, Line 1
Statement must appear within on/onClipEvent handler
Scene=Scene 1, layer=low, frame=1, Line 3
The class or interface 'MouseEvent' could not be loaded.
In your second response does "
image2.addEventListener(MouseEvent.MOUSE_OVER, hideImages) // to mouse over event
image2.addEventListener(MouseEvent.MOUSE_OUT, hideImages) // to mouse out event"
replace "
image2.addEventListener(MouseEvent.CLICK, hideImages)
image3.addEventListener(MouseEvent.CLICK, hideImages)
image4.addEventListener(MouseEvent.CLICK, hideImages)"
for each image? Two lines compared to one in the original line of code?
Also does this stay the same for the first image?
image1.addEventListener(MouseEvent.CLICK, hideImages)
function hideImages(e:MouseEvent):void{
     e.target.visible=false;

Similar Messages

  • How to validate the file path when downloading.

    Hi
    How to validate the file path when downloading to Presentation or application Server.

    hiii
    you can validate file path by following way
    REPORT zvalidate.
    TYPE-POOLS: abap.
    DATA: w_direc TYPE string.
    DATA: w_bool TYPE abap_bool.
    w_dir = 'c:\Myfolder\'.
    CALL METHOD cl_gui_frontend_services=>directory_exist
    EXPORTING
    directory = w_direc
    RECEIVING
    result = w_bool
    EXCEPTIONS
    cntl_error = 1
    error_no_gui = 2
    wrong_parameter = 3
    not_supported_by_gui = 4
    OTHERS = 5.
    IF NOT w_bool IS INITIAL.
    WRITE:/ 'Directory exists.'.
    ELSE.
    WRITE:/ 'Directory does not exist.'.
    ENDIF.
    regards
    twinkal

  • I downloaded an update for my Safari web browser to "snow leopard". When I click on the .dmg file, a window opens up with a .pkg file but when I click on the .pkg file I get a prompt saying that it doesn't know what program to open it with. with a

    I downloaded an update for my Safari web browser to "snow leopard". When I click on the .dmg file, a window opens up with a .pkg file but when I click on the .pkg file I get a prompt saying that it doesn't know what program to open it with.

    I suspect if you're trying to open a file in 08 that's been opened in 09 the file has been updated to 09 and will not open in 08.

  • How can I locate my iTunes library files. When I click on my itunes icon the message appears, "The file iTunes Library.itl." cannot be found because it was created by a newer version of iTunes."

    How can I locate my iTunes library files?  When I click on my iTunes icon rather than my iTunes files I receive, " The file iTunes Library.itl." cannot be read because it was created by a newer version of iTunes."  I have already tried to update my iTunes program.

    Had same problem and solved it without having to reinstore any music or movies:
    1. Delete old Library file
    2. Go to the 'Previous iTunes Libraries' folder and copy one of the earlier files - note, they have a date extension, e.g. 'iTunes Library 2011-11-01'.
    3. Paste this file in your iTuners folder and rename file by removing the date extension -  'iTunes Library'
    You should have all your music and paylists in tact, unless it was a really old previous file.

  • Forefox won't start in windows XP: I get the message that windows "cant' find the exe file" even when I click from the program file, rather than the shortcut.

    Forefox won't start in windows XP: I get the message that windows "cant' find the exe file" even when I click from the program file, rather than the shortcut.

    Delete the current Firefox shortcut on the desktop and create a new desktop shortcut via the right-click context menu on the Firefox.exe program (Send to > Desktop)

  • Folder or File path when f4 option on selection screen is clicked

    can any one please let me know if there is a function module which can fetch folder name form the directory path when f4 option of selection screen field is selected. Currently I am able to get the file name using FM F4_DXFILENAME_4_DYNP but the requirment is like I have to select either folder name or the file name depending on user selection.

    HI
    use the following
    FORM GETFILE.
      CALL FUNCTION 'WS_FILENAME_GET'
       EXPORTING
        DEF_FILENAME           = ' '
         DEF_PATH               = '.'
        MASK                   = ' '
        MODE                   = ' '
        TITLE                  = ' '
       IMPORTING
         FILENAME               = TXT_FILE
        RC                     =
      EXCEPTIONS
        INV_WINSYS             = 1
        NO_BATCH               = 2
        SELECTION_CANCEL       = 3
        SELECTION_ERROR        = 4
        OTHERS                 = 5
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    <b>TMP_GUI_DIRECTORY_LIST_FILES</b>
    Retrieve all of the files and subdirectories on the Presentation Server (PC) for a given directory.
    Example:
    data:  lc_directory         like bdschko16-target_dir value 'C:\TEMP\',
           lc_filter(20)        type c default '.'.
           li_file_count        type i,
           li_dir_count         type i,
           ltab_dir_table       like sdokpath occurs 0 with header line,
           ltab_file_file_table like sdokpath occurs 0 with header line.
    call function 'TMP_GUI_DIRECTORY_LIST_FILES'
      exporting
        directory        = lc_directory
        filter           = lc_filter  importing
        file_count       = li_file_count
        dir_count        = li_dir_count
      tables
        file_table       = ltab_file_table
        dir_table        = ltab_dir_table
      exceptions
        cntl_error       = 1
        others           = 2.
    regards vijay

  • Anyone have an easy way to hide an image when clicked?

    Hi,
    I have an image where I need each text box/arrow to delete once clicked. Surely there is an easier way than creating millions of frames? Is it possible to do it with a button? The person using the animation needs to click the right ones that would lead to them dissappearing.
    This was mocked up in photoshop. Only the photo would be brought into flashes library.
    Thanks in advance.

    Thanks esdebon for your response. I have tried to get it to work and keep getting compiler errors. Nothing happens when i click on the movie clip. button was converted to a movie clip and I added the actionscript but to no avail. This is the error I am getting while testing:
    Scene=Scene 1, layer=low, frame=1, Line 1
    Statement must appear within on/onClipEvent handler
    Scene=Scene 1, layer=low, frame=1, Line 3
    The class or interface 'MouseEvent' could not be loaded.
    In your second response does "
    image2.addEventListener(MouseEvent.MOUSE_OVER, hideImages) // to mouse over event
    image2.addEventListener(MouseEvent.MOUSE_OUT, hideImages) // to mouse out event"
    replace "
    image2.addEventListener(MouseEvent.CLICK, hideImages)
    image3.addEventListener(MouseEvent.CLICK, hideImages)
    image4.addEventListener(MouseEvent.CLICK, hideImages)"
    for each image? Two lines compared to one in the original line of code?
    Also does this stay the same for the first image?
    image1.addEventListener(MouseEvent.CLICK, hideImages)
    function hideImages(e:MouseEvent):void{
         e.target.visible=false;

  • Windows Server 2008 R2: Different file associations when double-clicking vs. right-click - open

    I have a basic .xml file on my Windows 2008 R2 desktop. I have set the file association for .xml files to Adobe FrameMaker 12. When I double-click the .xml file, it opens with FrameMaker. When I right-click -> open the .xml file, it opens with Notepad.
    I need the .xml file to always open with FrameMaker, even when I use right-click -> open. How can I set this up for all users on a Windows 2008 R2 server?
    Thank you!
    -Nicole

    Hi Nicole,
    Thank you for posting in Windows Server Forum.
    When you double-click on a file in Windows explorer, the Windows shell looks up the extension of the file in the registry to see if the extension is registered. If the extension is not registered, Windows displays the Open With dialog box, allowing the
    user to choose an application to associate with the file type. If the extension is registered, Windows calls the ShellExecute() function with a command of "open." It also passes the name of the file that was double-clicked as a command line parameter. 
    Associations go further than simply opening a file, though. If you right-click on a text file (.TXT) in Explorer you will see two items at the top of the context menu. The first is named Open. Choosing this menu item is the same as double-clicking the
    file in Explorer. When you choose Open, NOTEPAD.EXE will be started with the selected file loaded (assuming a default Windows installation). The second menu item is called Print. Clicking this menu item will cause the file to be printed without displaying
    Notepad at all.
    There is some registry setting for the application association to take place, you can edit them under following path.
    HKEY_CLASSES_ROOT\Test App File
    (Quoted from below article)
    More information:
    Using file associations
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Full file Path when using FormFile in struts

    hi,
    i am uploading an excel file. All is doing fine but whatever file is selected by user by clicking the browse button, its does not retreive full path it retreives only the file name selected......
    JSP page
    <html:form action="uploadFile.do" method="POST" enctype="multipart/form-data">
         <html:file property="fileName" title="Browse" />
         <html:hidden property="methodtoinvoke" value="uploadFile" />
         <html:submit value="submit" />
    </html:form>when i retrieve this filename and convert it to String its only shows file name and not the full path, as a result it always pick this file name from the current working directory.
    how can i get the selected file path ????
    Pls help
    thanx

    What would do a server side program that processes the file upload do with the client side path of the file?
    The server side process (your Action class) would receive a stream of bytes (multipart data) that contains the file's contents as well as other info like size, content type etc.
    ram.

  • See file path when opening a file is CS

    I have wondered this for some time. When I open/place a file into CS, it will by default open to the most recent files and folders accessed. Sometimes I have more than one folder by the same name (one on server, one on my desktop for example). I often would like to double check the path where these files are located. But the path does not show up when opening a file from the application. Show path bar is only visible when you access the files straight from the finder. Is there any way to see the path from "open or place"? I often have to re-establish the path to ensure I have the right one.

    Update your video card driver from the GPU maker's website.

  • What is the correct way to format file paths and names in the structapp file?

    I am trying to create a structured application to export fm files as xml, and probably read the xml back to fm.
    In the structured application file (structapp), I need to specify the locations of the various files (DTD, read/write, template, etc). I would like to place these files on a shared server so others can use the same structapp file (that is, a cop of it). What is the correct way to format the file paths and names? Can folders folder names and file names have spaces in them? I tried the following, for example:
    \\serverName\shareName\folder 1\folder 2\file name.dtd
    I use the same format for the template file and the read/write rules file.
    When I try to save an fm file to xml, FrameMaker says that it cannot read the DTD; however, the resulting xml file appears to be well-formed. The DOCTYPE element in the resulting xml is formatted with forward slashes and spaces replaced with %20.
    I tried using forward slashes and replacing spaces with %20, but then I get an error about reading the read/write rules.
    NOTE: I have another structured application to read xml into fm. This application does not have a DTD file. The template and read/write rules files are specified as above. Except for complaining about a lack of a DTD, the application works fine; it even applies an XSLT in the process. Again, when I DO add a DTD to this latter application, I get the same complaint about not being able to read the DTD.
    I am using fully patched FrameMaker 9 in Windows XP.
    Thanks,
    Van

    Hi Van,
    The XML parser and FrameMaker are not the same thing. The Error Log says which component created which message. The XSL processor is another option that can throw messages. The "\\server\path\some.dtd" syntax in structapps.fm seems to be fine for some tools, as Internet Explorer with XML tools successfully finds the DTD which appears as "//server/path/some.dtd" in the XML. But apparently Xerxes, the XML parser bundled with FrameMaker, does not like this notation.
    If you have a path with a drive letter, "H:\path\some.dtd", FrameMaker turns that into "file:///H:/path/some.dtd". It seems, Xerces would like to see "file:/" in front of absolute paths.
    This is what I have in structapps.fm:
    Template: \\server\path\projecttemplate.fm
    DTD: some.dtd
    Read/write rules: \\server\path\projectrules.txt
    DOCTYPE: …
    Entity locations
      Entity search paths
        1: \\server\path\
    In the structapps.fm I have the DTD without path information. The resulting XML (without XSL postprocessing) then contains just the file name with a relative path back to the book folder (when saving a book as XML). It therefore requires the DTD to be available at this place. I handle this using an event script that fires for NotePreSaveXml and copies the DTD to the folder of the original document.
    As I always use XSL postprocessing and using XSLT1 it is not possible to have the doctype-system as a parameter I have this in my XSL stylesheet:
    <xsl:output doctype-system="some.dtd" />
    For the resulting XML the DTD is expected to be in the same folder as the XML file. This is handled by the same event script as above, it therefore copies the DTD to the source and the target folder.
    Bottom line: If you want/have to use UNC paths, you have to do some programming to work around a FrameMaker bug.
    - Michael

  • Invalid EFI file path when dual boot

    I'm trying to dual boot arch linux with windows 7.
    I have windows 7 and my plan for partition is
    sda 4:0 128g <- SSD
    ├─sda1 4:1 0 70g 0 part <- windows 7 already installed.
    ├─sda2 4:2 0 4g 0 part <- /swap
    ├─sda3 4:3 0 500m 0 part <- /boot
    ├─sda4 4:4 0 40g 0 part <- /, /usr, /usr/local, /opt
    sdb 2:0 500g <- HDD
    ├─sdb1 2:1 0 150g 0 part <- windows D drive
    ├─sdb2 2:2 0 350g 0 part <- /var, /home, /tmp
    Also, my motherboard supports UEFI boot.
    Following Beginner's guide, I formatted sda2, sda3, sda4, sdb2 typing
    # mkfs.ext4 /dev/sda2
    # mkfs.vfat -F32 /dev/sda3
    # mkfs.ext4 /dev/sda4
    # mkfs.ext4 /dev/sdb2
    and I mounted /boot on sda3.
    After installing grub,  I typed
    # grub-mkconfig -o /boot/grub/grub.cfg
    Then to make windows7 menu on grub, following Linux menu entry , I modified /etc/grub.d/40_custom file as
    #!/bin/sh
    exec tail -n +3 $0
    # Windows 7
    menuentry "Windows 7" {
    set root="(hd0,1)"
    chainloader +1
    Finishing arch installation and rebooting,  I could see the windows 7 section  on grub boot menu,
    but if I choose windows7, it prints error
    error: invalid EFI file path
    press any key to continue...
    Actually, there was one more error message at first line,
    but seeing this error message and reinstalling again and again,
    I think something was twisted, and now I can't boot windows either...
    So I'm reinstalling windows.
    What is the correct way to dual boot windows and arch?
    Last edited by hermite (2015-02-04 00:54:00)

    It looks like your Windows system was booting in non-EFI mode and so does not have a bootloader on the EFI system partition.
    When you have re-installed Windows, check the partition table from the Arch ISO (`parted -l`) -- if there is no EFI system partition (type EF00) then you should install Arch in non-EFI mode (don't use FAT for /boot) and install GRUB using:
    # grub-install --target=i386-pc --recheck /dev/sda
    https://wiki.archlinux.org/index.php/Be … therboards

  • Is there a way to locate file path of a font used in text layer?

    I delivered a file to a client and there is a missing text layer dependency.
    I thought I delivered the correct font for the text layer but there is an issue somewhere...perhaps multiple versions of the font on my system..or slight
    difference in the font name. The project loads without the error on my system.
    Is there a method within After Effects to obtain a file path for the font I am using? ..or at least a way to get more detailed information
    about the font itself?...I mean beyond what is available in the font selection window.
    I need to locate the exact font in the exact folder After Effects is pulling it from.

    even better..I did a search within Fontbook for comparable file name..as I don't add and remove fonts constantly
    and discovered the font and also discovered why there was confusion in AEFX..the font had been generated in
    Fontographer and it's file name did not match error prompt or collected file report
    that was better than suffering through the 100's of possible results I was getting in Finder.  And Fontbook also provided the path to the exact font used...
    ..feeling a bit silly...but I think this will work.

  • How to specify the database file path when create FDM application

    Dear All,
    How to specify the database file path (MSSQL) when create FDM application?
    Right now, all data file are placed in the D:\ . I want to specify the database files (log and mdf file) in other place. How to do it?
    Thanks.

    Where is the highS2.xml located on the disk? If you add it to your project you should set its Build Action to Content and its Copy To Output Directory to Always in Visual Studio:
    Please remember to close your threads by marking helpful posts as answer once your issue has been solved and then start a new thread if you have a new question.

  • Is there a way to hide the screen when recording on ipad2

    Basically I want to hide my screen when I'm recording. A fake screen, my home screen as long as its not showing the what I'm recording while in the process of recording.

    Tap the Power button to turn the screen off.
    Depends on what app you are using to record if it will work this way.

Maybe you are looking for

  • Iphone 5s restarting & other issues-HELP

    Hello there, I bought my iPhone 5S, after owning an iPhone 5. I have to say I like my iPhone 5 better. Does anyone else with the iPhone 5S have problems with lots of apps, even apps that come with the phone, just automatically closing or having probl

  • Problem with creation of a file in a process chain

    Hello dears, I included a abap program in a process chain. This abap program allows to create a file in a directory. I'm using the function module GUI_DOWNLOAD for this. 1/ When I execute the program in SE38, it creates the file in the directory. 2/

  • Where to place java code in webdynpro for communicating between views

    Hi Friends, Where should I put the Java code on click of button for the action. I can out in init() method, or in teh onActon methods. I think suppose I have two views view1 and view2 on click of one button on view1, user shoudl see results on anothe

  • Playlist folder Question

    Hi can anyone tell why i cant copy a playlist from one playlist folder to another playlist folder? if i drag and drop a playlist it show the green + sign but just moves the playlist any ideas Thanks Ronny

  • Driver for hp 54730D?

    i'm searching for a gpib-driver for the oscilloscope hp 54720D. i'm using labview 5.0.1 and 6.i. can somebody help me.