[O] recurring floating appointments

2012-07-18 Thread Carson Chittom
I'm using the builtin org 7.8.11 in Emacs 24.  In an org file, I have
something like

* Recurring Events
#+CATEGORY: Meeting
** Monthly Third Thursday Meeting
   %%(org-float t 4 3)

This displays on my agenda fine.  However, that particular meeting
always happens at 10:00 AM, and I'd prefer to show it at that time in my
agenda, instead of an all-day event.  I looked through the documentation
for org-float (as well as diary-float in the Emacs manual), and I saw
nothing on assigning a time to a floating event.  I tried doing
something like

%%(org-float t 4 3) 10:00-11:00

but that didn't work.  Is assigning a time like this to an org-float
even possible?  Am I missing something?




Re: [O] recurring floating appointments

2012-07-18 Thread Yagnesh Raghava Yakkala

Hello Carson,

Carson Chittom car...@wistly.net writes:

[…]

 %%(org-float t 4 3) 10:00-11:00

 but that didn't work.

--8---cut here---start-8---
* Recurring Events
#+CATEGORY: Meeting
** Monthly Third Thursday Meeting 10:00-11:00
   %%(org-float t 4 3)
--8---cut here---end---8---

Maybe like this.

Thanks.,
-- 
ఎందరో మహానుభావులు అందరికి వందనములు
YYR


Re: [O] recurring floating appointments

2012-07-18 Thread Carson Chittom
Yagnesh Raghava Yakkala h...@yagnesh.org writes:

 Carson Chittom car...@wistly.net writes:

 %%(org-float t 4 3) 10:00-11:00

 but that didn't work.

 * Recurring Events
 #+CATEGORY: Meeting
 ** Monthly Third Thursday Meeting 10:00-11:00
%%(org-float t 4 3)

 Maybe like this.

Yes, that works great.  Thank you!  I knew I had to be missing something
obvious, since org's documentation is good.