the command for full screen never works
The group you are posting to is a
Usenet group . Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
From:
clarkbai <clark... @googlemail.com>
Date: Wed, 30 Jul 2008 03:20:55 -0700 (PDT)
Local: Wed, Jul 30 2008 6:20 am
Subject: the command for full screen never works
I try the Command for full screen view.
However, it does not work. Anyone can tell why?
Rookie, never mind:)
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Vebjorn Ljosa <vebj... @ljosa.com>
Date: Wed, 30 Jul 2008 08:23:54 -0400
Local: Wed, Jul 30 2008 8:23 am
Subject: Re: [carbon-emacs:1076] the command for full screen never works
clarkbai <clark
... @googlemail.com> writes:
> I try the Command for full screen view.
> However, it does not work. Anyone can tell why?
More detail would be helpful. What exactly are you doing, and what happens (if anything)? This should work: (set-frame-parameter 'fullscreen 'fullboth)
If you put the following in your ~/.emacs.el, you can toggle fullscreen with M-Ret.
(defun toggle-fullscreen () (interactive) (set-frame-parameter nil 'fullscreen (if (frame-parameter nil 'fullscreen) nil 'fullboth)))
(global-set-key [(meta return)] toggle-fullscreen)
Vebjorn
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
clarkbai <clark... @googlemail.com>
Date: Wed, 30 Jul 2008 07:52:49 -0700 (PDT)
Local: Wed, Jul 30 2008 10:52 am
Subject: Re: the command for full screen never works
I checked the preceding posts, and try to set my 'fullscreen'. But it
still doesn't work.
'mac-toggle-mac-window' seems to happen nothing.
I also copy the codes you give, but.....- -! still
Any idea?
Bai
On Jul 30, 1:23 pm, Vebjorn Ljosa <vebj... @ljosa.com> wrote:
> clarkbai <clark
... @googlemail.com> writes:
> > I try the Command for full screen view.
> > However, it does not work. Anyone can tell why?
> More detail would be helpful. What exactly are you doing, and what
> happens (if anything)?
> This should work:
> (set-frame-parameter 'fullscreen 'fullboth)
> If you put the following in your ~/.emacs.el, you can toggle fullscreen
> with M-Ret.
> (defun toggle-fullscreen ()
> (interactive)
> (set-frame-parameter nil 'fullscreen (if (frame-parameter nil 'fullscreen)
> nil
> 'fullboth)))
> (global-set-key [(meta return)] toggle-fullscreen)
> Vebjorn
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Vebjorn Ljosa <vebj... @ljosa.com>
Date: Wed, 30 Jul 2008 10:58:52 -0400
Local: Wed, Jul 30 2008 10:58 am
Subject: Re: [carbon-emacs:1078] Re: the command for full screen never works
clarkbai <clark
... @googlemail.com> writes:
> I checked the preceding posts, and try to set my 'fullscreen'. But it
> still doesn't work.
You need to be more precise. What exactly did you try, and what exactly happened? Did you get an error message?
> 'mac-toggle-mac-window' seems to happen nothing.
That function no longer exists in the summer edition of Carbon Emacs Package.
> I also copy the codes you give, but.....- -! still
First, press M-: (the command key and the colon). Next, On the "Eval:" prompt in the minibuffer, enter (set-frame-parameter nil 'fullscreen 'fullboth)
and press return. This should switch to fullscreen. If it does not, can you please describe exactly what happens?
Vebjorn
P.S. In my previous post, I accidentally left out the nil in the set-frame-parameter form.
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
clarkbai <clark... @googlemail.com>
Date: Thu, 31 Jul 2008 05:41:08 -0700 (PDT)
Local: Thurs, Jul 31 2008 8:41 am
Subject: Re: the command for full screen never works
Thank you Vebjorn. It works now.
Is there a simple way to use fullscreen mode?
Best wishes.
Bai
On Jul 30, 3:58 pm, Vebjorn Ljosa <vebj... @ljosa.com> wrote:
> clarkbai <clark
... @googlemail.com> writes:
> > I checked the preceding posts, and try to set my 'fullscreen'. But it
> > still doesn't work.
> You need to be more precise. What exactly did you try, and what exactly
> happened? Did you get an error message?
> > 'mac-toggle-mac-window' seems to happen nothing.
> That function no longer exists in the summer edition of Carbon Emacs
> Package.
> > I also copy the codes you give, but.....- -! still
> First, press M-: (the command key and the colon).
> Next, On the "Eval:" prompt in the minibuffer, enter
> (set-frame-parameter nil 'fullscreen 'fullboth)
> and press return. This should switch to fullscreen. If it does not,
> can you please describe exactly what happens?
> Vebjorn
> P.S. In my previous post, I accidentally left out the nil in the
> set-frame-parameter form.
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Vebjorn Ljosa <vebj... @ljosa.com>
Date: Thu, 31 Jul 2008 08:46:28 -0400
Local: Thurs, Jul 31 2008 8:46 am
Subject: Re: [carbon-emacs:1080] Re: the command for full screen never works
clarkbai <clark
... @googlemail.com> writes:
> Thank you Vebjorn. It works now.
I'm glad.
> Is there a simple way to use fullscreen mode?
Put the following in your ~/.emacs.el, then evaluate it (or if you don't know what that means, just restart emacs). You can them press Command and Return in order to toggle full-screen mode. (defun toggle-fullscreen () (interactive) (set-frame-parameter nil 'fullscreen (if (frame-parameter nil 'fullscreen) nil 'fullboth)))
(global-set-key [(meta return)] toggle-fullscreen)
Vebjorn
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
clarkbai <clark... @googlemail.com>
Date: Thu, 31 Jul 2008 10:12:40 -0700 (PDT)
Local: Thurs, Jul 31 2008 1:12 pm
Subject: Re: the command for full screen never works
The thing comes out- -!
;;full screen
(defun toggle-fullscreen ()
(interactive)
(set-frame-parameter nil 'fullscreen (if (frame-parameter nil
'fullscreen)
nil
'fullboth)))
(global-set-key [(meta return)] toggle-fullscreen)
;; Starts the Emacs server
(server-start)
(defun raise-emacs-on-aqua()
(shell-command 'tell application \"Emacs\" to activate' &"))
(add-hook 'server-switch-hook 'raise-emacs-on-aqua)
For fullscreen the shortcut doesn't work, and then the following
pdfsync is out of order- -!
any idea? Sorry to bother you again and again.
Bai
On Jul 31, 1:46 pm, Vebjorn Ljosa <vebj... @ljosa.com> wrote:
> clarkbai <clark
... @googlemail.com> writes:
> > Thank you Vebjorn. It works now.
> I'm glad.
> > Is there a simple way to use fullscreen mode?
> Put the following in your ~/.emacs.el, then evaluate it (or if you don't
> know what that means, just restart emacs). You can them press Command
> and Return in order to toggle full-screen mode.
> (defun toggle-fullscreen ()
> (interactive)
> (set-frame-parameter nil 'fullscreen (if (frame-parameter nil 'fullscreen)
> nil
> 'fullboth)))
> (global-set-key [(meta return)] toggle-fullscreen)
> Vebjorn
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
plg <plgird... @gmail.com>
Date: Thu, 31 Jul 2008 19:25:16 -0700 (PDT)
Local: Thurs, Jul 31 2008 10:25 pm
Subject: Re: the command for full screen never works
I got it working with the following key binding:
(global-set-key [(meta return)] 'toggle-fullscreen)
Note the apostrophe before the function name.
Very useful function - thanks Vebjorn.
On Aug 1, 3:12 am, clarkbai <clark... @googlemail.com> wrote:
> The thing comes out- -!
> ;;full screen
> (defun toggle-fullscreen ()
> (interactive)
> (set-frame-parameter nil 'fullscreen (if (frame-parameter nil
> 'fullscreen)
> nil
> 'fullboth)))
> (global-set-key [(meta return)] toggle-fullscreen)
> ;; Starts the Emacs server
> (server-start)
> (defun raise-emacs-on-aqua()
> (shell-command 'tell application \"Emacs\" to activate' &"))
> (add-hook 'server-switch-hook 'raise-emacs-on-aqua)
> For fullscreen the shortcut doesn't work, and then the following
> pdfsync is out of order- -!
> any idea? Sorry to bother you again and again.
> Bai
> On Jul 31, 1:46 pm, Vebjorn Ljosa <vebj... @ljosa.com> wrote:
> > clarkbai <clark... @googlemail.com> writes:
> > > Thank you Vebjorn. It works now.
> > I'm glad.
> > > Is there a simple way to use fullscreen mode?
> > Put the following in your ~/.emacs.el, then evaluate it (or if you don't
> > know what that means, just restart emacs). You can them press Command
> > and Return in order to toggle full-screen mode.
> > (defun toggle-fullscreen ()
> > (interactive)
> > (set-frame-parameter nil 'fullscreen (if (frame-parameter nil 'fullscreen)
> > nil
> > 'fullboth)))
> > (global-set-key [(meta return)] toggle-fullscreen)
> > Vebjorn
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Vebjorn Ljosa <vebj... @ljosa.com>
Date: Fri, 01 Aug 2008 11:06:36 -0400
Local: Fri, Aug 1 2008 11:06 am
Subject: Re: [carbon-emacs:1086] Re: the command for full screen never works
plg <plgird
... @gmail.com> writes:
> I got it working with the following key binding:
> (global-set-key [(meta return)] 'toggle-fullscreen)
> Note the apostrophe before the function name.
Yes, of course---that's what I get for writing code blindly! Thanks for pointing it out. Vebjorn
You must
Sign in before you can post messages.
You do not have the permission required to post.