Anyone get imapidle to work?

http://www.tuaw.com/2007/11/07/imapidle-simulates-push-email-on-the-iphone/#comm ents
anyone get this app to work?
i can't it to work at all. i'm using .5 against gmail set the port to 993 enabled ssl rebooted and still nothing. i see the preference pages but it doesn't seem to do anything other than show that. when i click save it doesn't respond in any way.
i downloaded it via installer.app and the version i got was .5.
thanks,
s

Did you have any luck getting vss to work?
I have the same issue.
I sort of had it working for a minute, but am not sure exactly what I need for the project path etc to not get all the errors.

Similar Messages

  • DataTipFunction  anyone get this to work??

    I am trying to pass in some info using dataTipFunction when I
    create a chart but the object being passed to Javascript is empty.
    Anyone get this to work??
    Eric Haskins

    please define your problem exactly. du you get a compile error? a runtime error?
    please use the code tags, and rename your static member Array to thomething else as a classname.
    kind regards

  • HT1203 It jus doesn't work...! Did anyone get this to work?

    I'm struggeling getting this to work: I want to share our music on 4 accounts on 1 iMac (Lion).
    Moved iTuned Media to /Users/Shared, changed the Preferences to reflect this, but the songs don't appear in iTunes.
    Anyone? Please?

    I had the same problem.  Even though it reads like a 2nd alternative, it is actually a continuation of the first step.
    To listen to another account's music files
    Open iTunes.
    From the iTunes menu, choose Preferences.
    Click Advanced.
    Deselect the option to "Copy files to iTunes Media folder when adding to library file."
    Click OK.
    From the File menu, choose Add to Library.Note: Windows users can also choose Add Folder to Library to add a folder of songs.
    In the window that opens, navigate to the location where the other user's music is saved (the iTunes Media folder in this example).
    Click Open.
    Repeat these steps for each account that is listening to shared music.
    When another user on the computer imports new music from CD, repeat steps 6 through 8 to add the music to your library."
    After you do this to each account, everything should work fine.

  • Outlook 2007 - Can anyone get this to work?

    Just wondering if anyone had success with this, it's really frustrating that the Oracle connector doesn't work with Outlook 2007.

    I've tried to get this to work on several machine configurations (Office 2007 with and with out Office 2003) using the latest Connector for Outlook on Windows XP and Windows Vista and was still unable to get it to work. I'm 100% convinced that Oracle needs to work on this ASAP and I'm even more astonished and perplexed that Oracle have not provided a solution for their customers. This has pushed me to the point where MSExchange, even Novell are being consider as a permanent alternative. Let's face it, Exchange does seem that they finally got their act together and offers a lot of flexibility for Mobility.
    I've spent about 80+ hours on this and have permanently given up until I hear back from the Oracle developers, who doesn't seem to have a solution readily available to give provide. I'm interested in anyone's comments about their conversations with Oracle.

  • [solved] graphlab / graphlabapi, anyone get this to work?

    edit3: I'm marking this as solved, as it basically seems to work for me for now. I decided not to upload the packages to the AUR because graphlab is broken with the current version of openmpi and depends on a libjson library that I'm not at all familiar with and nobody else here seems to use. If these aren't good reasons not to submit the packages I'll happily submit and maintain them. I'll maintain the PKGBUILDs on github for now https://github.com/sveitser/pkgbuilds .
    I'm trying to use graphlabapi ( www.graphlab.org ) on arch linux. I'm planning on using this quite a bit in the future so my goal is to create an AUR package eventually. I managed to build it successfully but the compiled application does not seem to work properly. I posted an issue on their google code page ( http://code.google.com/p/graphlabapi/is … tail?id=41 ), but was wondering if anyone here managed to get it to work.
    If anyone wants to give it a shot, AFAIK the following will install the necessary pacman dependencies:
    pacman -S --needed apache-ant jdk7-openjdk mercurial cmake openmpi
    edit: I also put a symlink named "python" to "python2" in my PATH before "/usr/bin" because otherwise the build system would detect python3 and the build failed at some point. Probably not a proper workaround but I think it seems to do the job for now.
    edit2: Found a way to tell cmake to choose python2. See below.
    Build instructions are basically:
    hg clone https://code.google.com/p/graphlabapi/
    cd graphlabapi
    ./configure -D PYTHON_EXECUTABLE=/usr/bin/python2
    cd release # or "cd debug" for quicker build using less RAM
    make -j 4
    The release build needs a lot of memory so they suggest not to use more concurrent make threads than the system memory in GB. I also run into the same issue if I build the debug build. The build takes a long time due to all the dependencies that will be installed locally. At the moment they don't seem to check for an existing boost installation on the "default" branch so boost will be installed locally even if it is available system wide.
    The tcmalloc dependency fails to build with glibc 2.16 so I patch the file
    deps/tcmalloc/src/libtcmalloc/src/base/linuxthreads.cc
    with respect to the graphlabapi base directory with
    196c196
    < static void SignalHandler(int signum, siginfo_t *si, void *data) {
    > static void SignalHandler(int signum, siginfo *si, void *data) {
    as suggested here http://code.google.com/p/gperftools/iss … akechanges and then run make again
    make -j 4
    Upon which the build succeeds. However when I try to run the examples or tests I mostly get no output and the programs just hang.
    I've been struggling quite a bit and any help or pointers would be greatly appreciated. Thanks!
    Last edited by sveitser (2012-07-24 06:39:18)

    edit: Unsetting CXXFLAGS before executing "make" seems to let the build complete. Not sure if that's a good idea but I 'think' cmake sets it appropriately anyway.
    After successfully compiling the package I created a PKGBUILD that I thought should work but it aborts on error during the "make" step. When I run "make" from a terminal in the corresponding directory the compilation succeeds.
    The PKGBUILD (also here https://github.com/sveitser/pkgbuilds/t … raphlab-hg ) is
    # Maintainer: Mathis Antony <[email protected]>
    pkgname=graphlab-hg
    pkgver=4197
    pkgrel=1
    pkgdesc="GraphLab is a new parallel framework for machine learning."
    arch=('i686' 'x86_64')
    url="http://www.graphlab.org"
    license=('apache')
    depends=('openmpi' 'python2' 'jdk7-openjdk' 'boost')
    makedepends=('cmake' 'mercurial' 'apache-ant')
    options=()
    source=(tcmalloc.patch)
    md5sums=('11bc88f68b4dcf214255a3b7de1f8ede')
    _hgroot=https://code.google.com/p
    _hgrepo=graphlabapi
    build() {
    cd "$srcdir"
    msg "Connecting to Mercurial server...."
    if [[ -d "$_hgrepo" ]]; then
    cd "$_hgrepo"
    hg pull -u
    msg "The local files are updated."
    else
    hg clone "$_hgroot" "$_hgrepo"
    fi
    msg "Mercurial checkout done or server timeout"
    msg "Starting build..."
    rm -rf "$srcdir/$_hgrepo-build"
    cp -r "$srcdir/$_hgrepo" "$srcdir/$_hgrepo-build"
    cd "$srcdir/$_hgrepo-build"
    ./configure -D PYTHON_EXECUTABLE=/usr/bin/python2 \
    --prefix=/usr
    cp "$startdir/tcmalloc.patch" patches/
    sed '/ExternalProject_Add(libtcmalloc/a \
    PATCH_COMMAND patch -N -p0 -i ${GraphLab_SOURCE_DIR}/patches/tcmalloc.patch || true' \
    CMakeLists.txt > CMakeLists2.txt
    mv CMakeLists2.txt CMakeLists.txt
    cd release
    unset CXXFLAGS
    make
    package() {
    cd "$srcdir/$_hgrepo-build"
    make DESTDIR="$pkgdir/" install
    and the tcmalloc.patch file
    --- src/base/linuxthreads.cc 2012-07-23 02:21:30.946086243 +0800
    +++ src/base/linuxthreads.cc 2012-02-03 05:36:23.000000000 +0800
    @@ -193,7 +193,7 @@
    /* Signal handler to help us recover from dying while we are attached to
    * other threads.
    -static void SignalHandler(int signum, siginfo_t *si, void *data) {
    +static void SignalHandler(int signum, siginfo *si, void *data) {
    if (sig_pids != NULL) {
    if (signum == SIGABRT) {
    while (sig_num_threads-- > 0) {
    The error I get when running makepkg is
    [ 27%] Performing patch step for 'libjson'
    patching file JSONOptions.h
    patching file makefile
    patching file Source/JSONDefs.h
    [ 27%] No update step for 'libjson'
    [ 28%] No configure step for 'libjson'
    [ 28%] Performing build step for 'libjson'
    makefile:173: *** recipe commences before first target. Stop.
    make[2]: *** [../deps/json/src/libjson-stamp/libjson-build] Error 2
    make[1]: *** [CMakeFiles/libjson.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    I think the problematic makefile is src/graphlabapi-build/deps/json/src/libjson/makefile. Line 173 is:
    170 # Usage check
    171 ifdef CXXFLAGS
    172 ifdef BUILD_TYPE
    173 $(error CXXFLAGS and BUILD_TYPE are mutually exclusive)
    174 endif
    175 endif
    but I'm thinking that if this were indeed to cause the error I should see the corresponding error message.
    Last edited by sveitser (2012-07-23 09:38:15)

  • Anyone get GNOME Shell working in Virtualbox yet?

    The latest version of Virtualbox came out today and it's supposed to have 3D support for GNOME 3 now and I've heard of some people on other distros getting GNOME Shell working, but I'm not having any such luck. I did a fresh install of Arch tonight, just in case, but I still get fallback mode (after upgrading Virtualbox and enabling 3D support, guest additions, etc). This is the error I'm getting:
    [root@sandbox ~]# gnome-shell --replace
    failed to create drawable
    (gnome-shell:1242): Clutter-CRITICAL **: Unable to initialize Clutter: Unable to select the newly created GLX context
    Window manager error: Unable to initialize Clutter.
    It's the same error that someone was getting here a few weeks ago: https://bbs.archlinux.org/viewtopic.php?pid=928760
    However, with the Virtualbox upgrade, it's *supposed* to be running now, so I have no idea... So has anyone got this to work yet?

    djgera wrote:
    In guest:
    ln -s /usr/lib/xorg/modules/dri /usr/lib/dri
    or if the directory /usr/lib/dri is present, then
    ln -s /usr/lib/xorg/modules/dri/vboxvideo_dri.so /usr/lib/dri
    Or use latest virtualbox-guest-additons package.
    Enjoy!
    Somehow, it fails to work for me, don't know why! I just did a fresh install of Arch on a VM inside VirtualBox. Then installed Gnome by pacman -Sf gnome (yeah, conflicts. Had to force!) But, it dropped to fallback mode! Now, how do I get the 3d support?

  • DivX "for Mac" and Safari -- anyone get it to work on Snow Leopard?

    Pardon me for the length of this post --  it's just a very involved question to which DivX has no answers, and I've literally wasted this entire week trying to get the so-called DivX "Bundle for Mac" to work, with absolutely no joy.
    27" iMac Core 2 Duo 3.06 GHz, 12 GB RAM, OS X 10.6.7
    Safari (v. 5.0.5 [6533.21.1])
    Safari Extensions:
    DivX HiQ 2.1.1.94
    DivX Plus Web Player HTML5 <video> 2.1.1.94
    As anyone who has used YouTube in the past year or however long this option has been available, many videos, under the regular YouTube control bar at the bottom of the video window, have an additional option: DivX HiQ, with a blue "play" button with black arrow, and in white text on black, the message "Press play for higher quality video." EVERY SINGLE time, until yesterday (about which more anon) I've selected DivX HiQ, the YouTube screen turns into the gray DivX Plus player window for a few seconds, sometimes I get a brief "Buffering…" message (sometimes not)* (see below), then a window pops up telling me "DivX Plus Web Player could not download the video, please check your internet connection." (screen shots on request).
    I have DL'd AND installed -- several times over the past few days -- DivX for Mac, version 7.3 (right up-to-date as of 11-30-10 -- great support for the Mac OS), with little or no success or noticeable results. Finally, yesterday, it somehow (I thought) installed correctly: at least instead of nothing whatsoever happening after the install, this time I was whisked magically away to <<http://www.divx.com/en/software/download/installed/mac?os=mac>> where I was rather breathlessly informed "Congratulations! You can now enjoy the highest quality digital video | divx.com." Well, this was something new -- this was the first time I'd ever gotten this far. Then I was shown many movies, promising new marvels:
    The first movie informed me "You have successfully installed DivX software." This WAS something new. Then it told me about the "DivX Plus Web Player… Now Featuring: DivX HiQ… Boost web video quality and performance… … Look for the DivX HiQ Button on your favorite video sites… see better quality and performance with a simple click… Try it out on your favorite sites… YouTube. Vimeo. And more.
    Then I played the NEXT movie, all about the DivX Plus Player, and here I TRULY saw something I'd never seen before: *a DivX Plus Player window, that actually said " Connecting… Buffering: … " and then -- mirabile dictu! -- an actual video began to play, and actually continued to play, with no stops, fits, or error windows, right up until the end. This WAS something new under the sun. It continued, extolling the manifold virtues of "DivX to go," which was of no use to me. The next video was about the DivX Plus Codec Pack, and the video told me about the wonderful things DivX could do in Windows 7, if I was brain-dead enough to USE Windows 7. Useless info, but that video, too, opened up the way I believe the *HiQ videos are supposed to open up in YouTube, for example: "Connecting… Buffering: …," and then actually opening and playing. BTW, I hate to sound like a troglodytic Luddite, but I have no idea what "MKV" video is.
    The final video, which ALSO opened up the way I believe the *HiQ videos are supposed to open up in YouTube, for example: "Connecting… Buffering: …," spoke to me about the manifold joys of DivX Plus converter, which ALSO requires the DivX Player application, and since the DivX Player application (v.7.2 (build 10_0_0_184, Copyright © 2006-2009 DivX, Inc.), which, I was given to understand, was actually a PART of the DivX software I had finally "successfully installed" (according to divx.com's delirious greeting), has never worked, none of what all these videos talked about was going to do me much good. HOW has it never worked, you ask? It has never worked in this way: I click on the DivX Player app icon, the DivX Player window opens, and the Mac OS beach ball spins merrily away, and spins, and spins, and spins -- at this point, I usually go to the kitchen for another cup of the strengthening coffee and the hopefully headache-reducing ibuprofen. When I come back, the beach ball is still spinning, so, resignedly, I go to the "Force Quit" command, where, invariably, I see the message "DivX Player not responding," and, resignedly, I force quit it. Again. This scenario has occurred without variation every single time I've tried to open the DivX Player application. It has never actually opened correctly, it has always shown up in the "Force Quit" window with the comment "DivX Player not responding," and I have always had to Force Quit it.
    Now Here's what may be termed the icing on the cake: fairly well buried in the "DivX for Mac" install package is a pdf "read me." Among many other fables is THIS whopper:
    "For online video tutorials visit the following URL in your web browser: http://go.divx.com/mac/tutorials"
    I did just that, and though the link works, there IS no page on the DivX site for "Mac tutorials." When you click on the link, you get redirected to "http://support.divx.com/faq/view/supportFAQen100/video_tutorials_main." Except for a video tutorial under "DivX Converter_ -- for which I have no use -- entitled "How To Edit Your DivX Converter for Mac Output Settings," and these two: "How To Export To DivX In Final Cut Pro for Mac," and "How To Export To DivX Using QuickTime On A Mac" -- neither of which do me the slightest bit of good, since A) I don't use, nor can I afford, Final Cut Pro, and B) what good would it to to export ANYTHING to DivX when the DivX Player for Mac does not, and has never, done anything but hang until Force Quitted?
    A brief digression on that very subject of "hanging:" there's a little section in the obscure "DivX for Mac" pdf that reads:
    "5. Known issues
    Network connection is lost during download
    A lost network connection in the middle of a download may hang the DivX Player For Mac. If this occurs, you may 'Force Quit' the DivX Player For Mac by simultaneously clicking command-option-escape and selecting the application from the list or by right-clicking the icon in the dock and selecting 'Force Quit.' You may then resume the download by re-launching the DivX Player, selecting 'Download Manager” from the File menu and clicking 'Resume.'"
    Wonderful advice, if I could ever get to the point where I was actually downloading something, but since MY particular edition of DivX Player for Mac saves me all that bother by hanging immediately upon launch, DivX has very kindly saved me the trouble of having to go through all that "Force Quit" - "Resume" nonsense. Of course, I never get to download anything or use the DivX Player on YouTube or anywhere else, so that's a bit of a downside.
    So back to the putative "Mac tutorials" on the non-existent "http://go.divx.com/mac/tutorials" page: other than the three totally non-germane examples I cited above, there is nothing that I can find on the re-direct page (http://support.divx.com/faq/view/supportFAQen100/video_tutorials_main) that is the least concerned with the usage or behavior of any component of DivX on a Macintosh computer. That's certainly not uncommon, but for a company that purports to sell products that actually work on the Mac OS X platform, EVERYTHING about the DivX site is so totally Windows-centric, one would be inclined to believe that DivX is not even aware the Mac OS X platform exists. For example, here's the list of tutorials under "DivX 101 - Learn How" on the page that, according to the DivX for Mac Read Me, was supposed to solve all my problems with running DivX on a Mac:
    Featured Video Tutorials
    How to register your PS3 for DivX VOD playback
    How do I make DivX player my default video player?
    How to register your DivX Certified device with the DivX Plus Player
    How to stream DivX Plus HD (MKV) files to your Xbox 360
    How to use the DivX Plus Converter
    Featured Text Guides
    DivX Plus Converter for Windows User Guide
    DivX Plus Player for Windows User Guide
    DivX Codec 5.x User Guide
    DivX Codec 6 and Virtual Dub Guide
    It's wonderful that DivX has tutorials dealing with XBox360 and PS3, but the Mac seems to have been lost in the shuffle -- I think, from an aesthetic point, the guy in the sideways hat and the emphasis on animé and "blow 'em up" games in what few tutorials are actually there pretty much sums up DivX's idea of their market focus. Maybe they're right, but if this "free" version, that so far I have not been able to get to work as advertised on my 27" iMac, is supposed to entice any Mac user into forking over even the piddling $20.00 for the "Pro" version, the "free" version isn't DivX any "gotta have it" favors.
    Now for the final mystery: I have two Safari -- v5.0.5 (6533.21.1) -- extensions from DivX:
    1. DivX HiQ 2.1.1.94, which is supposed to allow you to watch videos on YouTube, Vimeo, etc. in the DivX Player for Mac, but refuses to work when enabled: EVERY SINGLE time I've selected DivX HiQ, the YouTube screen turns into the gray DivX player window for a few seconds, then an error window pops up that says "DivX Plus Web Player could not download the video, please check your internet connection."
    2. DivX Plus Web Player HTML5 <video> 2.1.1.94, the little blurb in the Safari Extensions window for which says "Increase performance and video formats for your HTML5 <video>
    Clicking on the "by DivX, Inc." link in the Safari Extensions window of either of these extensions takes me to http://www.divx.com/en/software/divx-plus/web-player
    "High-quality video shouldn’t stop at your browser. DivX Plus® Web Player gives you the best web video performance around, even on sites using Flash®. The latest feature, DivX HiQ™ beta, lets you replace the default Flash player on popular sites for improved performance. Of course you can still watch stunning DivX® and DivX Plus HD (MKV) videos right in your browser, and even enjoy MKV features like multiple audio tracks, subtitles and 5.1 channel AAC audio."
    That's all well and good, but, not when it doesn't work. I don't know what the story is with these Safari Extensions: a manual (unfortunately the only way you can do it), category by category search of Apple's "Safari Extensions Gallery" turns up NO information about these extensions, neither does -- as far as I can tell -- a search of the DivX site. Am I supposed to use BOTH extensions? Neither? One or the other? Which? So far, if I use them, I get the HiQ option in YouTube (and elsewhere), but when I click on it, I get the error message above, and the window reverts to the usual plain old YouTube window. If I disable the DivX Safari extensions, I don't even get the HiQ option.
    Has ANYONE gotten the DivX for Mac Bundle v7.1, or even the DivX Plus Web Player for Mac, v2.1.1, to actually work on a Mac running OS X 10.6.7?
    If so, PLEASE tell me how you got it to work.
    I'd gladly for over the 20 bucks for this product if it actually worked, but not until it does.
    Bart Brown

    Well, I can start banging my head against the brick wall again.
    "I have never knowingly come across Divx in any shape or form. YouTube uses either Flash or HTML5."
    I don't understand how you can make that statement, considering the discussion you participated in at:
    https://discussions.apple.com/message/12210423#12210423
    under: Apple Support Communities > Mac OS & System Software > Safari > Discussions
    DivX Web Player and Safari
    ...from July 2009 to September 2010, sections of which you copied and pasted verbatim into this discussion, for example:
    "Klaus1
    Somerset, UK
    Level 7 (22,700 points)
    Re: Plug-ins
    Jul 12, 2009 2:09 PM (in response to Martin Alper)
    "...In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/"
    And on September 4, 2010:
    "Klaus1
    Somerset, UK
    Level 7 (22,700 points)
    Helpful AnswerRe: DivX Web Player and Safari
    Sep 4, 2010 5:31 AM (in response to Philippe Pauwels)
    You should read this support page http://perian.org/#support in case you need to delete older codecs. In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/"
    And, in reply to Philippe Pauwels response to the above post:
    Philippe Pauwels
    Level 1 (0 points)
    Re: DivX Web Player and Safari
    Sep 4, 2010 6:28 AM (in response to Klaus1)
    Hi,
    Thanks for your answer. After some more experimenting, i finally got it to work ... However, not every embedded DivX movie will play.
    I just deleted another codec in the Macintosh HD/Library/Quicktime folder. (One of the codecs mentioned on http://perian.org/#support was still in the folder). Before I had only deleted the files whose name has "DivX" in it.
    I did NOT install the DivX Web Player plugin.
    Now some DivX videos play, some don't... So maybe I should re-install the DivX Web Plugin? But the Web Plugin never worked for me ... If I re-install it, won't I go back to where I started?
    You replied, 10 minutes later:
    Klaus1
    Somerset, UK
    Level 7 (22,700 points)
    Re: DivX Web Player and Safari
    Sep 4, 2010 6:38 AM (in response to Philippe Pauwels)
    It could be that your previous DivX player was out of date.
    As Perian says, you need both.
    First, I certainly wish you (or my search of Apple Discussions, which, inexplicably, did not turn up this discussion) had referred me to this discussion before -- it would have saved a LOT of time.
    Now, to your reply to Philippe Pauwels:  "As Perian says, you need both." Both WHAT, exactly?
    From the initial release of Perian 0.5, September 29, 2006, to the latest release, Perian 1.2.2 - Tuesday, April 13, 2011, there is not a single mention of DivX in the entire 2006 to 2011 version history. The only information on the Perian support page regarding DivX is the paragraph that states, in part, "Please consider removing obsolete QuickTime Components: ...DivX, DivX Decoder..."
    Can you please tell me what you mean by "Perian says, you need both," in regard to putative DivX Extensions, Plug-Ins, Components, whatever?
    Finally, on July 12, 2009, you posted, in a reply to martin Alper, a list of  "the downloads and the settings you need in order to view/hear/play pretty much everything that the net can throw at you." Taking into consideration that it's 2 years later and most versions have newer updates -- including Mac OS X itself -- some items are no longer among us, and some NEW ones have shown up. could you please update or comment on this list, for the benefit of all sufferers?
    Thank you very much,
    Bart Brown
    Your list as of July 12, 2009, taking into consideration your wise caveat that "nothing in life carries a guarantee!:
    The setup described below has proved repeatedly successful on both PPC and Intel macs, but
    It is known to work in the great majority of cases with Safari 3 and 4, QT 7.4.x, 7.5.x and 7.6 and OS 10.4.11 and 10.5.7.
    Download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 11.1 for Mac from:
    http://www.versiontracker.com/dyn/moreinfo/macosx/15540
    Flip4Mac WMV Player from http://www.telestream.net/flip4mac-wmv/overview.htm (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlas h
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.
    It is suggested that you first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.
    You should also ensure that you have downloaded and installed the correct version for your Mac of Security Update 2009-001 (and for Tiger only, 2009-002). (N.B. Security Updates require both a restart and a permission repair.)
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    There is an additional 'fix' you could try if you are having problems with Flash and Quicktime, depending on which type of Mac you have:
    On Intel Macs, make sure that you are not running Safari in Rosetta. You can check this, and change it, in the Get Info window.
    On PPC Macs, go to the Hard Disk/Library/Internet Plug-Ins folder, and drag the file 'QuickTime Plugin.webplugin' to the desktop. Quit and restart Safari. If things have improved you can trash that file. If they haven't put it back, as the lack of this plug-in can cause QT content in some widgets to cease functioning.
    And there is an additional kid on the block: SilverLight. Microsoft has created their own version of what a replacement for Flash could be. You can read more about it here:
    http://silverlight.net/
    So, if you go to any sites that have been designed for this new Silverlight stuff, you can download the plug-in from here (but make certain that you are downloading SilverLight v.1.0 for OS X (10.4.8 upwards) if you are using a PPC Mac. Version 2 only works with Intel Macs:
    http://silverlight.net/GetStarted/
    Recommendation: Close all applications before installing any of the above, repair permissions, reboot, and repair permissions again.
    Thanks again
    Bart Brown
    PS: You wrote "It is a pity you chose a camera that produces video in that format! As you have discovered it is incompatible with iMovie." Uhh, I don't know where this question came from -- more stray copying and pasting, perhaps? I have no camera, and am not trying to do anything pertinent to this discussion with iMovie.

  • 802.1x TMobile Hotspot, Anyone get it to work?

    There seems to be a whole thread dedicated to 802.1x systems set up at Colleges and Universities and a whole mess of information that may or may not apply. I wanted this thread to be solely dedicated to getting 802.1x to work with TMobile Hotspots.
    I haven't had any success as of yet (12+ Hours sitting at Starbucks fooling with it). Anyone come up with a working solution for TMobile?

    This is REALLY close, I used it as part of my exploring to get it working while I set there prepping for a meeting tomorrow, so here's the tweaks:
    1. Do use the "User" domain in the 802.1x profile, call it "T-Mobile" connect to tmobile1x (it's a hidden SSID) and select the TTLS option, and change it to PAP and set the identity to "anonymous"
    2. Then use Join Network, tell it tmobile1x, WPA2 Enterprise, and select the T-Mobile profile you created under user in the 802.1x box below the username/password.
    3. Put in your login & pw.
    And that should get you rolling, amazing what fiddling and reading for nearly 2 hours will do for you
    -CB

  • Anyone get shuffle to work in iOS7 slideshow?

    (Apologies for double-post in iPhone and iPad forums, but not everyone will read both.)
    My devices are out of support so Apple will not troubleshoot for me.Yes, there is a slider to turn shuffle on and off in settings, but since my forced upgrade to iOS7, slideshows do not shuffle. Not on the iPad, not on the iPhone, no matter the slider position, one photo or many selected.
    Now wondering, after finding many complaints about this: has anyone, anywhere gotten a 'Photos' app slideshow to shuffle since the update to iOS7?
    Trying to figure out if this is a bug with iOS7, or just the iOS7.0.6 update.

    Made a little progress through kind help from the iPad forum:
    https://discussions.apple.com/message/24978851#24978851
    it appears that slideshows accessed via different ways (the word slideshow at the top of an album view on the iPad vs the slideshow icon when an individual image is selected on iPad/iPhone) work differently.  The slideshow from the word slideshow follows the toggle from settings to shuffle or not the slideshow icon does not follow the toggle rule.  This is a bug, not a feature, since there does not seem to be a functional way to get to that 'Slideshow' function on the phone. 

  • XPS M1530 - Anyone Get OpenGL Acceleration Working?

    I've got Photoshop CS4 up and running on my laptop, but no matter what video settings/drivers I use, I'm unable to get the harware acceleration working so Photoshop uses the video card to speed up operations. I've got the NVIDIA GeForce 8600M GT with the latest drivers from Dell.
    Anyone else get acceleration working with their XPS laptop, or 8600M video card?

    [newsreader autoquote deleted by forum host]
    I don't have that setup here, but I have a suggestion, try getting the
    driver from the NVIDA web site rather than Dell. Dell my not be posting
    the true latest driver.
    John Passaneau

  • Does anyone get this to work on WinXP?

    I found a bunch of threads on this topic, but none of the recommended fixes have worked for me.
    Here's my setup:
    The Mac is a Dual 867 G4 (MDD), running OS 10.4.5. Uses Airport to connect wirelessly to a Linksys 4-port WAP.
    The printer is an HP Laserjet 1300 connected to the Mac via USB. Printer sharing is enabled on the Mac, and the model is selected.
    The PC is running Windows XP Pro SP 2. All recommended updates applied. Connects via a Linksys USB Wireless to the same WAP. Had previously configured network printing from the XP machine to the Mac, but it was always an arduous task.
    I downloaded and installed Bonjour before removing the old queue. Ran the Bonjour Printer Wizard, which saw the printer. I selected the drivers already present, set it to the default printer, and got the "Error: You do not have sufficient access to your computer to connect to the selected printer" message.
    Found the KB article that told me to dump the old printer queue, and I deleted both the older icons for this HP printer. Still got the message. Remembering the wisdom of Dogbert, I shut-up and re-booted. Still get the message.
    Made sure I was running as administrator, and I am. Found a thread where someone suggested checking Administrative Tools > Local Security Policy > Local Policies > User Rights Assignment to see that "Load and unload device drivers" was present and available to Administrators. It is. Still get the error.
    Found another KB article that mentioned SP2 is a problem because it turns on Windows Firewall by default. So I went into that control panel, and added Bonjour as an Exception app, then created a new port TCP 5353 to open that up in the firewall.
    I still get the error.
    What else can I look at? What am I missing?
    And is "Bonjour" a re-christened "Rendezvous?"
    Thanks for any help...

    Hi Buzz_kill:
    I have Bonjour configured on my Windows XP SP2 machine and I'm able to connect and print to a shared printer on my Mac.
    In one of the KB articles, it suggests the following: For Service Pack 2 systems
    If you've installed Service Pack 2 on your system, you can use Bonjour for Windows to reconfigure the firewall automatically afterwards—you should not manually reconfigure this setting. To do this:
    1. Go to the Control Panel and click Add or Remove Programs.
    2. Select Bonjour from the list, then click Change/Remove.
    3. Choose Repair, then follow the onscreen instructions.
    If repairing doesn't resolve the issue, try uninstalling and reinstalling Bonjour.
    1. Go to the Control Panel and click on Add or Remove Programs.
    2. Select Bonjour from the list, then click Change/Remove.
    3. Choose Remove, then follow the onscreen instructions.
    4. Reinstall Bonjour for Windows by downloading the program from the Apple website, or install it from the media on which it came.
    The other suggestion that I have is:
    If you are using a router, you really don't need a firewall on any machine. To see if it's the firewall on your XP macnine that is causing the issue, turn off the Windows XP firewall. Sounds simple doesn't it, but to actually turn off the windows firewall, select it from your control panel, select Advanced, and uncheck all of the connects and click ok.
    Give that a shot and let us know how/if it works.
    Oh, Bonjour is the same client as before, it was just renamed due to naming issues.

  • Virtual PC and ActiveSync (for a Windows phone): anyone get it to work?

    I am currently using Virtual PC 7.0, running Windows 2000, and am trying to get ActiveSync to recognize my USB-connected Windows Mobile 5.0 phone (Sprint PPC-6700).
    ActiveSync installs okay, but it fails to detect the phone when it's connected via USB.
    When I click on the USB icon at the bottom of the VirtualPC window, the Mobile Phone is listed as being connected. Also, when I look in My Computer (within Windows), a mobile phone device is present). However, ActiveSync cannot seem to "see" that the phone is connected.
    Any thoughts?
    (I am aware that both Mark/Space Missing Sync and PocketMac are working on Windows Mobile 5.0 versions of their products; however, at this time, only Windows Mobile 2.0 devices are supported).
    Thanks!

    Just want to add to this...it was resolved the Advanced tab is very important on mail.app.
    The Advance tab authentication must match what the Exchange server/Active Directory is using.
    For us NTLM is what we need to use.
    Also we found that one exchange server had a bad installation while another had no problem connecting via mail.app.
    Thus the installation is going to be looked at.

  • Can anyone get these to work??!!??!!  Airports don't work well together

    I have two airport expresses. I bought the second one to extend the range of my existing airport network. Both airports work fine when configured as a standalone main base station. But, when I set one up to be a remote/relay station, performance on both devices suffers. I know some decline in internet speed is expected, but mine slows to a crawl . . . like less then 10kb/sec. Plus, my wireless range does not appear to be extended at all.
    Additionally, airtunes performance is horrible. I can't get a song to play for much more than ten seconds before it cuts out, pauses, and then starts up again 20 seconds later. It really seems like the connection is just cutting out, both in airtunes and internet, every few seconds.
    I have already documented my problems in more detail in this thread: http://discussions.apple.com/thread.jspa?threadID=989979
    Any advice??

    Be aware that each WDS link cuts the available bandwidth in half.
    It could be that you are experiencing RF interference from other devices operating at 2.4 GHz. Have you tried using a different channel? You can change the channel until you find a channel which works better or you run out of channels.
    KB 58543, AirPort: Potential sources of interference

  • Can anyone get lion to work with the older intel core duo iMacs?

    Has anyone been able to get Lion to run on the older Intel Core Duo iMacs?

    http://osxdaily.com/2011/04/08/hack-mac-os-x-lion-for-core-duo-core-solo-mac/

  • Mail.app and Exchange 2007 with Rollup 3 ... anyone get it to work?

    Spent way too much time on this...
    After finding our our Exchange 2007 server didn't have the legacy components installed to ensure WebDav would work, we can now connect to our Exchange 2007 mail server from Microsoft Entourage for all Windows Active Directory accounts.
    For Apple Mail however, this is not the case. Opening mail, the account information does default in accurately (email, userID, exchange 2007 server) when I enter a users password, it says that it is unable to connect to mail server user/password failed.
    If I manually create the account, the same thing occurs, a pop-up appears prompting for a password, which I enter and it comes back saying it isn't valid.
    The password is valid because on the same Mac I open up Entourage and log in.
    Keychain is NOT used and none of the passwords are held because of the headaches this causes.
    Looking for ideas, thinking this is more of an Apple Mail.app bug not working with Exchange than a Microsoft issue.

    Just want to add to this...it was resolved the Advanced tab is very important on mail.app.
    The Advance tab authentication must match what the Exchange server/Active Directory is using.
    For us NTLM is what we need to use.
    Also we found that one exchange server had a bad installation while another had no problem connecting via mail.app.
    Thus the installation is going to be looked at.

Maybe you are looking for

  • Including CMYK profile in InDesign PDF Export

    Hi, I'm trying to export from InDesign a pdf file, which includes embedded profiles both in RGB and CMYK images. There are two linked images in my INDD layout, one embedded with RGB profile and another with CMYK profile. In Output I have the settings

  • Launch WebADI Addin in Excel causes other spreasheets not to be accessible

    Hi Multiple users at my job have an issue where they unable to ALT-Tab or switch between spreadsheets once they have uploaded Journals using Oracle WebADI through Excel 2010. The workaround is to right click the preview of the spreadsheet from the ta

  • Java1.4.2_04 will run on later versions of JRE?

    hi, I am trying to upgrade my server from WindowsNT to Windows2008 where my current Java applications version is 1.4.2_04. Is it possible to run my applications designed in Java 1.4.2_04 on later versions of JRE which are compatible to windows2008 se

  • Transport query views

    I have a workbook containing query views based on multiple queries of different infoproviders. How do I transport workbook/query-views/roles/queries and in what sequence. Thanks

  • "ghost" links in altered data-merged document

    I created a catalog using Data Merge. After it was finished, I was asked to remove seveal of the items. I didn't go back to the database and remerge the document, because I'd already done a lot of minor revisions to the finshed document. After collec