Pop-up messages?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

Pop-up messages?

John Chludzinski
Is there a prescribed/canonical method for having a message-box pop-up for a collection of Seaside sessions?  ---John

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Pop-up messages?

Lukas Renggli
> Is there a prescribed/canonical method for having a message-box pop-up for a
> collection of Seaside sessions?  ---John

Can you give an example? I don't quite understand what you want to do ...

Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Pop-up messages?

John Chludzinski
In reply to this post by John Chludzinski
> Can you give an example? I don't quite understand what you want to do ...
>
> Lukas

I have a suite of apps, one of which is a presentation (slide) app, and I want to sent all those listed as attendees (of the meeting) a pop-up message reminding them the meeting is about to begin.  ---John

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Pop-up messages?

Lukas Renggli
On 1 February 2010 17:16, John Chludzinski <[hidden email]> wrote:
>> Can you give an example? I don't quite understand what you want to do ...
>>
>> Lukas
>
> I have a suite of apps, one of which is a presentation (slide) app, and I
> want to sent all those listed as attendees (of the meeting) a pop-up message
> reminding them the meeting is about to begin.  ---John

You can do that with the comet package (see the examples). Or by
regularly polling (say every 5 seconds) from the website.

Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Pop-up messages?

John Chludzinski
In reply to this post by John Chludzinski
> You can do that with the comet package (see the examples). Or by
> regularly polling (say every 5 seconds) from the website.
>
>Lukas

I'm using Comet to push both slides and chat messages.  I thought
there might be some time-tested code (i.e., a method) for CTPusher,
something akin to WAComponent>>lightbox:) that I could use to push a
heads-up message (a pop-up message) to all sessions that share a given
instance of CTPusher.  ---John
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Pop-up messages?

Lukas Renggli
aPusher javascript: [ :s | s alert: 'Hello World' ]

On 1 February 2010 20:52, John Chludzinski <[hidden email]> wrote:

>> You can do that with the comet package (see the examples). Or by
>> regularly polling (say every 5 seconds) from the website.
>>
>>Lukas
>
> I'm using Comet to push both slides and chat messages.  I thought
> there might be some time-tested code (i.e., a method) for CTPusher,
> something akin to WAComponent>>lightbox:) that I could use to push a
> heads-up message (a pop-up message) to all sessions that share a given
> instance of CTPusher.  ---John
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>



--
Lukas Renggli
http://www.lukas-renggli.ch
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Pop-up messages?

John Chludzinski
In reply to this post by John Chludzinski
> aPusher javascript: [ :s | s alert: 'Hello World' ]

Thanks!
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside