A possible bug in the Accordion scripts

I've encountered what may be a bug in the handling a single
apostrophe in the tab of an accordion panel. When I use '
in the tagged element content displayed in the accordion tab, the
character appears in the tab but any processing of the panels
stops. When I remove the ' everything is fine. When I swap
' for " (or any other special character) this
also works. So I'm thinking the single quote is affecting the
javascript somewhere along the line.
I'm using the 1.4 release of Spry.
BTW, all special characters in the panel content work just
fine. It seems to be only the tab that is affected when the content
there contains this single quote mark special character.
Unless I'm totally out to lunch or this is one of those magic
things that self-corrects the minute you ask someone a question
about it (I hate when that happens).
Thanks for any help you can give me.

Hi solsenkp,
I'm not seeing the problem. Can you post some sample markup?
--== Kin ==--

Similar Messages

  • Is this a possible bug on the Facebook app for iPhone?

    I tend to suffer from slight paranoia regarding security online and on my phone. I'll try to explain the worry I'm having as best I can.
    Basically, I had a personal video on my phone, (nothing horrible don't worry), but it's of a nature that would be embarrassing to be seen by other people.
    So this video was the latest thing I had recorded/taken with my phone. I went onto the Facebook app on my iPhone to post an older picture I had to my page.
    When I saw that this video was still on my phone, I panicked and worried that it could somehow get posted to my page without me actually posting it e.g. a bug whereby the last picture or video taken would go onto your Facebook without you actually selecting it or posting it. So I deleted it while still on the grid page where you choose your photos/videos and so it disappeared when I went back to the app.
    Can anyone with 100% honesty tell me one way or another if this is possible? If I haven't explained it enough let me know and I'll explain it further. Again, please be honest cos it's the best thing for me. Thanks.

    It may be in Facebook, but Facebook doesn't consider it a bug; it's the way Facebook works. If you gave the app permission to view your photos it gives Facebook access to ALL of your photos. To put your mind at ease go to your Facebook page on your computer and see if it's there.
    If you are concerned about privacy online you probably shouldn't have a Facebook page

  • Possible bug in the arch NFS server package?

    i run the nfs server on my arch box, exporting to a debian box and an arch laptop. whenever the arch server reboots lately, the shares don't automatically remount properly on the clients. they're listed in mtab, but if i ls or try to access the directories, i get a permission denied error. i have to manually unmount the shares and then remount them again to be able to see/use them.
    the reason i think this is an arch package problem is because i set up a share on the debian box to share with arch, and that worked perfectly. when i rebooted debian as the server, the shares were automatically remounted on the arch client, and when i rebooted arch, the shares were again mounted properly on reboot.
    it's possible i'm doing something wrong with permissions, but it seems unlikely because 1) everything was working fine for a long time until recently, when i started noticing the behavior,  2) all the permissions on the shared directory are identical to the ones on the arch shared directory, all user name UIDs are the same, same groups and GIDs, etc., 3) the shares mount perfectly well manually from the command line, and 4) i set up the debian share/exports, etc. in about 2 minutes with no problem at all, while dealing with this problem on arch for 2 days now, after changing options and going over everything multiple times until my head is spinning. it just seems unlikely that a configuration is wrong, although i guess anything is possible. i can provide all that permissions/group info, fstab info, /etc/exports info, etc. if anyone wants to take a closer look at it.
    so until this is sorted, i wondered if anyone else is having this problem, or if anyone had any ideas of something i might be overlooking. again, everything *seems* to be set up right, but maybe there's some arch specific thing i'm overlooking. thanks.

    Ok out of pure fustration I just grabbed the gentoo init script. Installed start-stop-daemon, modified the script to run as #!/bin/bash, stuck it in /etc/rc.d, rebooted and everything works, I can reboot my computer and clients reconnect. Or restart daemon and they reconnect.
    Heres the script I am using.
    #!/bin/bash
    # Copyright 1999-2005 Gentoo Foundation
    # Distributed under the terms of the GNU General Public License v2
    # $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfs,v 1.14 2007/03/24 10:14:43 vapier Exp $
    # This script starts/stops the following
    # rpc.statd if necessary (also checked by init.d/nfsmount)
    # rpc.rquotad if exists (from quota package)
    # rpc.nfsd
    # rpc.mountd
    # NB: Config is in /etc/conf.d/nfs
    opts="reload"
    # This variable is used for controlling whether or not to run exportfs -ua;
    # see stop() for more information
    restarting=no
    # The binary locations
    exportfs=/usr/sbin/exportfs
    gssd=/usr/sbin/rpc.gssd
    idmapd=/usr/sbin/rpc.idmapd
    mountd=/usr/sbin/rpc.mountd
    nfsd=/usr/sbin/rpc.nfsd
    rquotad=/usr/sbin/rpc.rquotad
    statd=/usr/sbin/rpc.statd
    svcgssd=/usr/sbin/rpc.svcgssd
    mkdir_nfsdirs() {
    local d
    for d in /var/lib/nfs/{rpc_pipefs,v4recovery,v4root} ; do
    [[ ! -d ${d} ]] && mkdir -p "${d}"
    done
    mount_pipefs() {
    if grep -q rpc_pipefs /proc/filesystems ; then
    if ! grep -q "rpc_pipefs /var/lib/nfs/rpc_pipefs" /proc/mounts ; then
    mount -t rpc_pipefs rpc_pipefs /var/lib/nfs/rpc_pipefs
    fi
    fi
    umount_pipefs() {
    if [[ ${restarting} == "no" ]] ; then
    if grep -q "rpc_pipefs /var/lib/nfs/rpc_pipefs" /proc/mounts ; then
    umount /var/lib/nfs/rpc_pipefs
    fi
    fi
    start_gssd() {
    [[ ! -x ${gssd} || ! -x ${svcgssd} ]] && return 0
    local ret1 ret2
    ${gssd} ${RPCGSSDDOPTS}
    ret1=$?
    ${svcgssd} ${RPCSVCGSSDDOPTS}
    ret2=$?
    return $((${ret1} + ${ret2}))
    stop_gssd() {
    [[ ! -x ${gssd} || ! -x ${svcgssd} ]] && return 0
    local ret
    start-stop-daemon --stop --quiet --exec ${gssd}
    ret1=$?
    start-stop-daemon --stop --quiet --exec ${svcgssd}
    ret2=$?
    return $((${ret1} + ${ret2}))
    start_idmapd() {
    [[ ! -x ${idmapd} ]] && return 0
    ${idmapd} ${RPCIDMAPDOPTS}
    stop_idmapd() {
    [[ ! -x ${idmapd} ]] && return 0
    local ret
    start-stop-daemon --stop --quiet --exec ${idmapd}
    ret=$?
    umount_pipefs
    return ${ret}
    start_statd() {
    # Don't start rpc.statd if already started by init.d/nfsmount
    killall -0 rpc.statd &>/dev/null && return 0
    start-stop-daemon --start --quiet --exec \
    $statd -- $RPCSTATDOPTS 1>&2
    stop_statd() {
    # Don't stop rpc.statd if it's in use by init.d/nfsmount.
    mount -t nfs | grep -q . && return 0
    # Make sure it's actually running
    killall -0 rpc.statd &>/dev/null || return 0
    # Okay, all tests passed, stop rpc.statd
    start-stop-daemon --stop --quiet --exec $statd 1>&2
    waitfor_exportfs() {
    local pid=$1
    ( sleep ${EXPORTFSTIMEOUT:-30}; kill -9 $pid &>/dev/null ) &
    wait $1
    case "$1" in
    start)
    # Make sure nfs support is loaded in the kernel #64709
    if [[ -e /proc/modules ]] && ! grep -qs nfsd /proc/filesystems ; then
    modprobe nfsd &> /dev/null
    fi
    # This is the new "kernel 2.6 way" to handle the exports file
    if grep -qs nfsd /proc/filesystems ; then
    if ! grep -qs "^nfsd[[:space:]]/proc/fs/nfsd[[:space:]]" /proc/mounts ; then
    mount -t nfsd nfsd /proc/fs/nfsd
    fi
    fi
    # now that nfsd is mounted inside /proc, we can safely start mountd later
    mkdir_nfsdirs
    mount_pipefs
    start_idmapd
    start_gssd
    start_statd
    # Exportfs likes to hang if networking isn't working.
    # If that's the case, then try to kill it so the
    # bootup process can continue.
    if grep -q '^/' /etc/exports &>/dev/null; then
    $exportfs -r 1>&2 &
    waitfor_exportfs $!
    fi
    if [ -x $rquotad ]; then
    start-stop-daemon --start --quiet --exec \
    $rquotad -- $RPCRQUOTADOPTS 1>&2
    fi
    start-stop-daemon --start --quiet --exec \
    $nfsd --name nfsd -- $RPCNFSDCOUNT 1>&2
    # Start mountd
    start-stop-daemon --start --quiet --exec \
    $mountd -- $RPCMOUNTDOPTS 1>&2
    stop)
    # Don't check NFSSERVER variable since it might have changed,
    # instead use --oknodo to smooth things over
    start-stop-daemon --stop --quiet --oknodo \
    --exec $mountd 1>&2
    # nfsd sets its process name to [nfsd] so don't look for $nfsd
    start-stop-daemon --stop --quiet --oknodo \
    --name nfsd --user root --signal 2 1>&2
    if [ -x $rquotad ]; then
    start-stop-daemon --stop --quiet --oknodo \
    --exec $rquotad 1>&2
    fi
    # When restarting the NFS server, running "exportfs -ua" probably
    # isn't what the user wants. Running it causes all entries listed
    # in xtab to be removed from the kernel export tables, and the
    # xtab file is cleared. This effectively shuts down all NFS
    # activity, leaving all clients holding stale NFS filehandles,
    # *even* when the NFS server has restarted.
    # That's what you would want if you were shutting down the NFS
    # server for good, or for a long period of time, but not when the
    # NFS server will be running again in short order. In this case,
    # then "exportfs -r" will reread the xtab, and all the current
    # clients will be able to resume NFS activity, *without* needing
    # to umount/(re)mount the filesystem.
    if [ "$restarting" = no ]; then
    # Exportfs likes to hang if networking isn't working.
    # If that's the case, then try to kill it so the
    # shutdown process can continue.
    $exportfs -ua 1>&2 &
    waitfor_exportfs $!
    fi
    stop_statd
    stop_gssd
    stop_idmapd
    umount_pipefs
    reload)
    # Exportfs likes to hang if networking isn't working.
    # If that's the case, then try to kill it so the
    # bootup process can continue.
    $exportfs -r 1>&2 &
    waitfor_exportfs $!
    restart)
    # See long comment in stop() regarding "restarting" and exportfs -ua
    restarting=yes
    svc_stop
    svc_start
    echo "usage: $0 {start|stop|restart}"
    esac
    exit 0

  • Is it possible to change the Presets Scripts Folder Location?

    Hi,
    I work with Photoshop on a daily basis for my job, but my company has the C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Presets\Scripts folder admin-locked (due to it's location in the Program Files folder. I've already asked IT, but they told me that they are unfortunately unable to give me access to that folder because my user profile can't be given admin-rights (due to company policy). I'd really like to change the location of the scripts folder so that I can add some scripts of my own to be able to use in Photoshop.
    Is this possible or is there any sort of workaround?
    Thank you all in advance!

    You can always use browse to go to a different location - I know it's not ideal, but it does tend to remember that folder once you navigate to it.  I would push your IT people about getting you access to that folder.  I also work in for a company that severely limits access to program files, but I made my case that I need to have access to the Photoshop subfolders to do my job.  They should be able to grant you access to just that folder.

  • Possible bug with the registration verification code, some follow up

    About this post I made earily,
    https://bbs.archlinux.org/viewtopic.php?id=187286
    > I ran into this problem several times before.
    I mean that I finally made a successful registration after dozens of trying
    in the last two or three years time span.
    I just don't know what went wrong, and never get around to search for the solution.
    Luckily I figure it out today.
    And I rushed in to report it, hoping it will be fixed,
    And no more people will be put off by this again.
    After some search, I see I am not alone:
    "" List of titles:
    Can not register in bbs.archlinux.org
    Registration question
    Arch Forum User Registration is Broken
    [solved] Forum registration bug
    Arch forum registration question
    Forum account registration form problem
    Problem Registering for Forum -> date -u +%W$(uname)
    Forum registrations from Hawaii
    Forum registering issues, again
    Unable to register unless running linux
    Forum registration question does not work if DST is enabled
    It seams that Time Zone and DST are causing a bigger problem than it should be.
    May be a not time-related Registration Captcha will server us better.

    Scimmia wrote:If you have your timezones set up correctly, this shouldn't be an issue at all.
    I don't know if it has been fixed, but when I tried to register 2 years ago, it continuously failed, even though I was quite sure I had entered everything correctly.  On a whim, I decided to check the box that said daylight savings time is in effect.  When I did that, my registration went through.  So while "shouldn't be an issue" is technically true, it was an issue for me.  I had to provide incorrect information in order to successfully register, and I only managed to do so by grasping at straws.
    For the record, daylight savings time is never in effect in Hawaii.

  • Possible Bug in "The Rules"

    After logging-in through the firewall, regardless of whether I am logged into the forum or not, when I click on the link in;
        "Welcome to Lenovo's Discussion Community - Please note The RULES when posting."
    I get a log-in window requiring user name and PW. Closing the window brings an Authorisation failed message, using the FW PW everything is fine.
    I know the rules are also in the Welcome forum, but I would hope most potential / new members will click on this link.
    Andy
    PS. This post has been marked as having URL and IMG, does the IMG come from the fact I copied and pasted the "Welcome" text?  
    Message Edited by andyP on 11-27-2007 04:45 PM
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

    Mark_Lenovo wrote:
    I don't encounter this issue with the rules, but have from time to time in other areas.  I expect this will cease to be an issue after Friday when the password protections are removed.
    You may not encounter this as you have admin rights, if it doesn't dissapear after Friday I'm sure I, or another member who has experienced this, will let you know.
    Mark_Lenovo wrote:As to your note above, the community management section heading was an error by applying permissions at the board vs category level.  I believe it should now be resolved.  Good catch - Thanks!
    Yes, is resolved.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Possible bug with iTunes 11 ?? (with Smart Playlists)

    Hi folks
    New to Apple Support, but after upgrading to iTunes 11 earlier today (on my Mac Mini) I've discovered a potential bug / difference in the way it operates compared to earlier versions. Can someone else try something similar and see if they get the same result - I think I read somewhere that v11 is not available on Windows yet, so I cant compare what happens there
    I've imported all our CD's into iTunes, and we've set up several Smart Playlists (SP). Using the Rating setting for the songs, we can break them up into groups, eg
    Rating 0 = not yet processed
    Rating 1 = not interested in listening to again
    Rating 2 = kids songs (for our children)
    Rating 3 = christmas songs
    Rating 4 = songs i like, but my wife probably wouldnt
    Rating 5 = songs we both like - good for background music etc
    Using Home Sharing to our iPad's rocks !!
    Now, onto the bug.
    Using the SP that has just songs with Rating 0, I could play any song, set the Rating to whatever, and naturally once set, that disappears from the SP
    In all earlier versions of iTunes, playback would continue with the next song, so I could set that Rating, etc etc. Worked really well to churn through a chunk of songs in say 15 minute blocks
    With iTunes v11, playback stops as soon as I set the Rating.
    How can you help ?????????? Set up a smart playlist with whatever criteria you like - make sure you have a number of songs returned and ensure Live Updating is set, have a song playing, and make that song no longer valid for that SP. Anyone doing this in earlier versions of iTunes should have the next song begin, and if this is a bug, then those using iTunes 11 will have playback stop
    Sorry for the long post, but in order to determine a potential bug, you need to describe the situation and how to test it.
    Thanks for reading
    PS I'm on a 2010 Mac Mini with OSX v10.7.x (whatever the current release of that is) and just upgraded to iTunes 11

    Soo, maybe it isnt possible bug, but the way Apple have changed iTunes when going to v11. Stooopid
    Anyway, found this link about downgrading to an earlier version. I've just completed it and found one or two "errors" in the method, which I'll detail below
    http://www.emacconsulting.com/apple/itunes/downgrade-itunes-11-to-itunes-10-7/
    In the latter part of the instructions
    11) Open your iTunes Music Folder.
    If you never moved your iTunes folder it’s located here:
    Your HD/Your User/Music/iTunes
    Or go to the Finder type:  Command + Shift + G
    Paste this into the the dialog:  ~/Music/iTunes
    If you moved it to another hard drive, you will know where to locate your iTunes folder.
    12) Open the “Previous iTunes Libraries” folder.
    13) Find the most recent copy of the “iTunes Library 2012-xx-xx.itl” file.
    Normally it will the last file at the bottom of the list.
    14) Drag a copy of the file into the iTunes folder.
    15) Delete the “iTunes Library” file.
    16) Change the name of the “iTunes Library 2012-xx-xx.itl” to ”iTunes Library” with no .itl extension.
    In #11, I simply went to "My HD"/Users/"My User"/Music/iTunes
    Copied the latest .itl and moved it up a directory level
    The old file in #15 is called "iTunes Library.itl" - which I renamed, and renamed the copied version back to "iTunes Library.itl" = though I do have extensions showing, some people may not and hence wont see the .itl
    Anyway all is fixed in my world, and when I launched v10.7, it asked me if I wanted to upgrade to v11 - I said No and not to prompt me again. Playcount issue is resulved, as is changing SmartList criteria with playback continuing
    Apple - please correct these bugs before releasing any new versions of iTunes... you've made a very large number of people unhappy

  • Is it possible to change the colour of box in script from black to blue

    Hi,
    Is it possible to change the colour of box in script from black to blue  or some other colour and background colour also...if so how....
    Thanks.

    No..
    It is not possible in scripts..
    In scripts u cannot use colors..
    In smartforms u can do that..
    reward if it helps u..
    sai ramesh

  • Is it possible to configure a smartform in QGA3 instead of the standard script QM_INSP_RESULT.

    Is it possible to configure a smartform in QGA3 instead of the standard script QM_INSP_RESULT.

    Hello ,
    I'm afraid not , the program for the transaction is admitting only Sapscript format , even the BADI
    QG_INSP_RESULT_PRINT allow to switch to a SAPscript form
    Regards

  • Possible bug, at least serious problem, in the AS3.0 event architecture

    Event bubbling causes a compiler error when it should not.
    High up in the display list, a
    listener has been added for TypeBEvent which extends
    TypeAEvent.
    Lower in the display list, a
    different object dispatches a TypeAEvent, and sets bubbling to true
    (and possibly, cancellable to false).
    A Type Coercion error (#1034)
    results! The listener receives the bubbled event which is of the
    same type as the base class of the handler event type. The event
    object "cannot be converted" to the TypeBEvent it is
    receiving.
    Circumstances
    This situation came up in a real Flex project, where a video
    player that had been loaded as a module within another module
    dispatched a PROGRESS ProgressEvent, and a listener had been added
    to the higher level module for its ModuleEvent PROGRESS event,
    ModuleEvent subclasses ProgressEvent. The video player bubbled its
    event, and the compiler threw this error: "TypeError: Error #1034:
    Type Coercion failed: cannot convert
    flash.events::ProgressEvent@1f2de0d1 to mx.events.ModuleEvent."
    This compiler error does not make sense from a developer
    perspective, because it means any class lower on the display list
    can break the player (not the program, the player) simply by
    dispatching an event.
    Our team lost a great deal of (expensive) time trying to
    locate the source of this problem, since nothing about the compiler
    error – including the stack trace! – indicated the
    high-level class. In fact, the module developer didn't know
    anything about the high-level class which was compiled to a swc
    library, and the event being dispatched was in the flex class
    library, so neither end of the problem was very visible. Because
    the error only pointed to the video player class the developer
    naturally went into the flex classes first and tried to solve the
    problem in their scope before finally giving up and bringing the
    problem to others on the team.
    Truly a case where the software defeated team workflow.
    Our conclusion
    We love the new event framework but, this seems to come
    pretty close to qualifying as a bug. The high-level event listener
    simply should NOT have received, then choked the player on the
    bubbled base-class event. It should either receive it or not. If it
    did receive the event, the code in the handler could check whether
    the event target was appropriate... but instead the player breaks
    and does not provide any clue as to where, it only indicates the
    dispatching class as a culprit. Even short of fixing the problem,
    improving the error message so that the receiving event handler is
    clearly implicated would be a start.
    Again I am of the opinion that this compiler error should not
    take place at all because the top class subscribed specifically to
    the subclassed event type. A bubbled event that breaks the player
    due to an unrelated listener is just a huge black hole, especially
    when multiple developers are working on different tiers of a
    program.
    Could we get a reply from someone at Adobe on this issue?
    Thanks very much,
    Moses Gunesch

    If you create a metadatatype with a single metdata block, and you reference that in your vm/cm cell attribute using a *one* based index, Excel seems to see the link and it honors it when saving the spreadsheet.
    So, I ended up with something like:
    <c ... cm="1"/> (I'm dealing with cell metadata, but the concept is equivalente to value metadata)
    <metadataTypes count="1">
      <metadataType name="MyMetaType" .../>
    </metadataTypes>
    <futureMetadata count="1" name="MyMetaType">
      <bk>
        <extLst><ext
    uri="http://example" xmlns:x="http://example"><x:val>87</x:val></ext></extLst>
      </bk>
    </futureMetadata>
    <cellMetadata count="1">
      <bk><rc
    t="1" v="0"/></bk> <!-- this is what gets referenced as cm=1 on the cell -->
    </cellMetadata>
    Hope this helps. 

  • What are the changes / enhancements / or possible bugs in LR 5 Auto Tone

    Can anyone explain what, if any, changes, enhancements, or possible bugs were introduced in the functionality of Auto Tone since LR ver. 5.0. The reason I ask is that I get different results for the Exposure and Contrast adjustments when applying Auto Tone (using ver. 5.3) from the results  (using ver.5.0) shown in the book "Adobe Photoshop Lightroom 5 CIB" in the "Using Quick Develop in the Library module" section, step 4 on page 37. (This difference in results between LR versions was confirmed by the authors of LR5CIB.)

    I'm not sure about any new bugs but the radical exposure mis-calculations have been improved. I had photos that were over exposed to 5 (and even 10, believe it or not) that were exposed to a more appropriate 2 or so following the improvements (in Lr5.2 if memory serves). It's also less likely to radically underexpose.
    Enjoy, (in my opinion, it's much better)
    I think there may have even been further improvement in Lr5.3 but I can't swear to it - seems to preserve a little more contrast than in 5.2 - could be my imagination..
    Rob

  • Is it possible to make the top tab in the accordion widget remain open constantly?

    I'm looking to use the accordion widget as a secondary navigation in my site's sub pages. I've noticed other websites doing this successfully and one site inparticular has their top accordion panel always open.
    This allows them to have their three main calls to action always accessible for the visitors to select.
    I've tried implementing this but it doesn't seem to be possible?
    Is there any way to access the code for the widget to see if I can tweak this to work?

    hello, you can set "about:newtab" as your homepage:
    [[How to set the home page]]

  • Are you aware of a possible bug in version 3.6.23? In the browser, for example, "two/" appears with the slash through the "o". Is this a known bug?

    Are you aware of a possible bug in version 3.6.23? In the browser, for example, "two/" appears with the slash through the "o". Is this a known bug?
    When the same text is view in another browsers it appears correctly as "two/".
    I've checked, and the same problem appears in Firefox on another computer.
    The two answers received so far have not provided an answer: is this a known bug in Firefox?
    Thank you.

    You are on a Mac and that is a [http://en.wikipedia.org/wiki/Kerning kerning] problem. Don't you see the same problem in other applications if you choose the same font, font-weight and font-size.
    I only find one other kerning [https://support.mozilla.com/questions/789254 question] here -- it is marked unsolved. I find it strange that Firefox got involved with this at all rather than leaving such things to the operating system and font metrics.
    Does the problem go away with "command+0" (zero) which resets [http://kb.mozillazine.org/Zoom_text_of_web_pages zoom level] to normal. If you mess with the font sizes in your preferences because you want larger print that would have the same effect.
    Also found this one recently reported for [https://support.mozilla.com/questions/892222 Firefox 7 in ubuntu 11.04] which appears much worse. If it involves Firefox and specific operating systems it becomes a lot harder to diagnose who or what is responsible.

  • Is it possible to trace the mouse event using java script in indesign cs3?-request urgent

    Hi friends,
    am writing js for indesign cs2, i want to know the things whether it is possible for tracing the curse position in indesign application using javascript? i need it to know for both cs2 and cs3
    thanks in advance
    by
    subha

    to Subha:
    I definitely do not know enough to answer your question.
    But on June 14, 2007, Dave Saunders started a topic
    (this forum) titled "Am I making progress".
    Posts 23 and 32 there could be helpful, but I may
    have misunderstood your phrase "tracing the
    cursor position".
    Roger Purves

  • Is adding easing on the accordion panel possible?

    Hello! I am using the accordion panel but I would like to control the speed that the menus drop down and up. Right now it is rather instantaneous. I've searched around and can't find anything on it. Any advice on how to do this?
    Thank you!
    Larry

    At current stage we cannot control the speed directly from Muse , but you want apply some custom code to achieve this.
    Thanks,
    Sanjit

Maybe you are looking for

  • I can't do anything!!!

    Hi all I've installed Designer9i on my computer. The repository lies on a remote database. Connection on the repository works very well, but I can't perform any operation on it. I get the message: RME-00020: Internal API error - ORA-00600: internal e

  • Runtime Repositioning components in swing

    Hi all, i want to reposition the components at run time, (like in netbeans) please suggest or any idea how can i do it. i want to crate a tool like netbeans (drag and drop components facility) using swing. thanks daya

  • Time capsule abd apple tv

    how to directly stream movies from time capsule to apple tv without using pc and iTunes

  • Help: matrix report grid lines missing for null values only on server side

    Hi, I created a matrix report in pdf format. The output in great when run through report builder locally, it renders all necessary details. However, after the report being moved into AS server, the report does not show grid lines for null values. It

  • IDOCs processing - MM or FI invoice - if docum is complete- post else park

    Hello, i load xml file into idoc (edi_data_incoming) -  in the file are MM and FI invoices. But now i need to process these idocs. If idoc could be posted (idoc has every mandatory data) then post idoc else park document. I need to know how to check