You could try using Google Notifier for Mac as well. It's definitely not ideal, but it sort of solves the problem. Just choose the Gmail Flui.app in "Compose to" in preferences.
On Oct 29, 9:56 am, Henry Bridge <[email protected]> wrote: > can't figure out a good solution to this unfortunately. you can > change the last line from: > > window.location = window.location + "&tf=1"; > > to: > > window.open(currentLocation + "&tf=1", "Compose"); > > which will open a new window for the compose, but it won't prevent the > maingmailpage from changing too. to get back to the maingmailpage > in the main window, you can always press command-shift-h. I'll update > if I think of anything more elegant. I don't know why fluid isn't > respecting the "open pages from other programs in new window" pref. > > On Oct 8, 8:23 pm, Steve <[email protected]> wrote: > > > Thanks Henry!! This works great except I can't get out of the compose > > view. It loads the new email in the main window and if I hit send it > > shows "message sent" and if I hit discard it basically does nothing. > > How do I either get it to load the new email screen in a tab or make > > it go back to the inbox correctly? > > > On Oct 6, 8:54 pm, Henry Bridge <[email protected]> wrote: > > > > I was also annoyed by this issue and couldn't find a solution, so I > > > wrote a userscript as you suggested. Below is the source, hope it > > > works for you: > > > > // ==UserScript== > > > // @name FluidGmailComposeFixer > > > // @namespace http://fluidapp.com > > > // @description FixesFluid'sgmail compose link > > > // @include https://mail.google.com/mail/* > > > // @author Henry Bridge > > > // ==/UserScript== > > > > (function () { > > > if (window.fluid) { > > > var currentLocation = window.location.href; > > > if (currentLocation.indexOf("fs=1") != -1 > > > && currentLocation.indexOf("&tf=1") == -1){ > > > window.location = window.location + "&tf=1"; > > > } > > > } > > > > })(); > > > > you'll need to change the @include line if you're not forcing https or > > > if you're using apps for your domain. > > > > enjoy! > > > > Henry > > > > On Sep 11, 8:33 pm, Matthew Farrow <[email protected]> wrote: > > > > > Hi, all - new toFluidbut I love the idea. I am currently trying to > > > > use aGmailFluid.appas mydefaultmail client in 10.6.1, and > > > > _almost_ everything works. The big problem I'm having at this point > > > > is mailto: links. > > > > > Here's the scenario: I have myGmailFluid.appopen (in the dock, > > > > behavior is set to maintain last window on close to preserve web > > > > content,) and I click on a mailto: link in Firefox. If I have Firefox > > > > set to useGmail(thedefaultFirefoxGmailsetting changes mailto: > > > > links tohttps://mail.google.com/mail/?extsrc=mailto&url=%s) then it > > > > works fine, but it opens up aGmailtab in my browser. If I set > > > > Firefox'sdefaultmail toGmail.app(FluidSSB,) then it opens the SSB > > > > up with the mailto: link directly. The SSB window shows the loading > > > > screen forGmailbut never gets to the compose window. > > > > > The URL thatGmail.appis trying to load is: > > > > >http://mail.google.com/mail?view=cm&fs=1&[email protected] not > > > > working. > > > > > If I let Firefox load upGmailin a new tab, the URL loaded is: > > > > >https://mail.google.com/mail/?view=cm&fs=1&tf=1&source=mailto&to=prob... > > > > - works fine. > > > > > I'm not a programmer, and I'm utterly lost on user scripts. Can I > > > > just use a script to change the URL's from the first case to the > > > > second? If so, I'll need help writing the script. -- You received this message because you are subscribed to the Google Groups "fluidapp" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/fluidapp?hl=en.
