Re: [Flashcoders] Website in an application

2009-10-28 Thread Eric E. Dolecki
You can get headers, tags, etc. not too sure about preventing links from
being clicked though - probably can do that.

On Tue, Oct 27, 2009 at 6:59 PM, Latcho spamtha...@gmail.com wrote:

 I did not know that !
 Looks good.
 Is it also possible to catch referer headers  / link clicks and prevent
 them ?
 Ciao,
 Latcho


 Eric E. Dolecki wrote:

 Just use AIR and an HTML Browser component. Easy-peasy.

 On Tue, Oct 27, 2009 at 5:12 PM, John R. Sweeney Jr
 jr.swee...@comcast.netwrote:



 Thanks, I'll check it out.

 John


 on 10/27/09 4:03 PM, Latcho at spamtha...@gmail.com wrote:



 Google for kiosk browser
 never tested, just found:
 http://samanathon.com/firefox-2s-kiosk-mode/

 Cheers,
 Latcho


 John R. Sweeney Jr.
 Interactive Multimedia Developer


 OnDemand Interactive Inc
 945 Washington Blvd.
 Hoffman Estates, IL 60169
 Office/Fax: 847.310.5959
 Cellular: 847.651.4469
 www.ondemandinteractive.com


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders









 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




-- 
http://ericd.net
Interactive design and development
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-28 Thread Muzak

The HTMLLoader class has a locationChange event:
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/html/HTMLLoader.html#event:locationChange


- Original Message - 
From: Eric E. Dolecki edole...@gmail.com

To: spamtha...@gmail.com; Flash Coders List 
flashcoders@chattyfig.figleaf.com
Sent: Wednesday, October 28, 2009 1:32 PM
Subject: Re: [Flashcoders] Website in an application



You can get headers, tags, etc. not too sure about preventing links from
being clicked though - probably can do that.

On Tue, Oct 27, 2009 at 6:59 PM, Latcho spamtha...@gmail.com wrote:


I did not know that !
Looks good.
Is it also possible to catch referer headers  / link clicks and prevent
them ?
Ciao,
Latcho


Eric E. Dolecki wrote:


Just use AIR and an HTML Browser component. Easy-peasy.

On Tue, Oct 27, 2009 at 5:12 PM, John R. Sweeney Jr
jr.swee...@comcast.netwrote:




Thanks, I'll check it out.

John




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-28 Thread Steven Sacks
By default, all clicked links will be contained within the HTMLLoader instance. 
 You have to explicitly allow links to be opened in the system browser.


As to the rest, you need to talk to a DOM/JS expert. I'm certain that what you 
want can be accomplished because you can inject your own javascript into any 
HTML page that the HTMLLoader loads, and thus have complete control over the 
content of the page.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-27 Thread Henrik Andersson

John R. Sweeney Jr wrote:

Howdy List,

My client wants a touchscreen application. I've done several on 50 plasma
screens before for them using a Flash projector on a PC, but the kink in
this one is the client wants to be able to view the corporate website in the
Flash app. They don't want a browser popping up over the app, but to appear
inside the program. And of course they only want the user to navigate around
the corporate site, not go to other sites, so no access to a url window
either. :)

Suggestion or a place of a reference for a similar project would be GREATLY
appreciated.

Thanks in advance for any advise or help,
John


Sounds like an excellent time to make a projector then. Make it go 
fullscreen and it should be just fine.


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-27 Thread Ian Thomas
Hi John,
   I'd take a look at AIR. It allows you to drop in real HTML
components (using the WebKit engine, the same thing that Safari uses)
controlled from a Flash application.

HTH,
   Ian

On Tue, Oct 27, 2009 at 7:27 PM, John R. Sweeney Jr
jr.swee...@comcast.net wrote:
 Howdy List,

 My client wants a touchscreen application. I've done several on 50 plasma
 screens before for them using a Flash projector on a PC, but the kink in
 this one is the client wants to be able to view the corporate website in the
 Flash app. They don't want a browser popping up over the app, but to appear
 inside the program. And of course they only want the user to navigate around
 the corporate site, not go to other sites, so no access to a url window
 either. :)

 Suggestion or a place of a reference for a similar project would be GREATLY
 appreciated.

 Thanks in advance for any advise or help,
 John


 John R. Sweeney Jr.
 Interactive Multimedia Developer


 OnDemand Interactive Inc
 945 Washington Blvd.
 Hoffman Estates, IL 60169
 Office/Fax: 847.310.5959
 Cellular: 847.651.4469
 www.ondemandinteractive.com


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-27 Thread Latcho

G'day,

Well it's up to you to educate the client since you are an
Interactive Multimedia Developer that knows ( I suppose ) that you can't 
render html sites within flash.
If that corporate site is flash I don't see your problem, just use a swf 
projector.


If it is html you will need a third party tool that locks all features of an OS and browser down and 
that let's you stay where you want the user to be (at the corporate location).


Google for kiosk browser
never tested, just found:
http://samanathon.com/firefox-2s-kiosk-mode/

Cheers,
Latcho




John R. Sweeney Jr wrote:

Howdy List,

My client wants a touchscreen application. I've done several on 50 plasma
screens before for them using a Flash projector on a PC, but the kink in
this one is the client wants to be able to view the corporate website in the
Flash app. They don't want a browser popping up over the app, but to appear
inside the program. And of course they only want the user to navigate around
the corporate site, not go to other sites, so no access to a url window
either. :)

Suggestion or a place of a reference for a similar project would be GREATLY
appreciated.

Thanks in advance for any advise or help,
John
 


John R. Sweeney Jr.
Interactive Multimedia Developer


OnDemand Interactive Inc
945 Washington Blvd.
Hoffman Estates, IL 60169
Office/Fax: 847.310.5959
Cellular: 847.651.4469
www.ondemandinteractive.com


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

  


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-27 Thread John R. Sweeney Jr
Thanks, I'm looking into AIR right now.

John



on 10/27/09 3:29 PM, Ian Thomas at i...@eirias.net wrote:

 Hi John,
I'd take a look at AIR. It allows you to drop in real HTML
 components (using the WebKit engine, the same thing that Safari uses)
 controlled from a Flash application.
 
 HTH,
Ian


John R. Sweeney Jr.
Interactive Multimedia Developer


OnDemand Interactive Inc
945 Washington Blvd.
Hoffman Estates, IL 60169
Office/Fax: 847.310.5959
Cellular: 847.651.4469
www.ondemandinteractive.com


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-27 Thread John R. Sweeney Jr
It already is a projector and as such, you can't put HTML websites inside.

But thank you anyway.

John


on 10/27/09 2:50 PM, Henrik Andersson at he...@henke37.cjb.net wrote:

 Sounds like an excellent time to make a projector then. Make it go
 fullscreen and it should be just fine.


John R. Sweeney Jr.
Interactive Multimedia Developer


OnDemand Interactive Inc
945 Washington Blvd.
Hoffman Estates, IL 60169
Office/Fax: 847.310.5959
Cellular: 847.651.4469
www.ondemandinteractive.com


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-27 Thread John R. Sweeney Jr
Thanks, I'll check it out.

John


on 10/27/09 4:03 PM, Latcho at spamtha...@gmail.com wrote:

 Google for kiosk browser
 never tested, just found:
 http://samanathon.com/firefox-2s-kiosk-mode/
 
 Cheers,
 Latcho


John R. Sweeney Jr.
Interactive Multimedia Developer


OnDemand Interactive Inc
945 Washington Blvd.
Hoffman Estates, IL 60169
Office/Fax: 847.310.5959
Cellular: 847.651.4469
www.ondemandinteractive.com


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-27 Thread Eric E. Dolecki
Just use AIR and an HTML Browser component. Easy-peasy.

On Tue, Oct 27, 2009 at 5:12 PM, John R. Sweeney Jr
jr.swee...@comcast.netwrote:

 Thanks, I'll check it out.

 John


 on 10/27/09 4:03 PM, Latcho at spamtha...@gmail.com wrote:

  Google for kiosk browser
  never tested, just found:
  http://samanathon.com/firefox-2s-kiosk-mode/
 
  Cheers,
  Latcho


 John R. Sweeney Jr.
 Interactive Multimedia Developer


 OnDemand Interactive Inc
 945 Washington Blvd.
 Hoffman Estates, IL 60169
 Office/Fax: 847.310.5959
 Cellular: 847.651.4469
 www.ondemandinteractive.com


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




-- 
http://ericd.net
Interactive design and development
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] Website in an application

2009-10-27 Thread Latcho

I did not know that !
Looks good.
Is it also possible to catch referer headers  / link clicks and prevent 
them ?

Ciao,
Latcho

Eric E. Dolecki wrote:

Just use AIR and an HTML Browser component. Easy-peasy.

On Tue, Oct 27, 2009 at 5:12 PM, John R. Sweeney Jr
jr.swee...@comcast.netwrote:

  

Thanks, I'll check it out.

John


on 10/27/09 4:03 PM, Latcho at spamtha...@gmail.com wrote:



Google for kiosk browser
never tested, just found:
http://samanathon.com/firefox-2s-kiosk-mode/

Cheers,
Latcho
  

John R. Sweeney Jr.
Interactive Multimedia Developer


OnDemand Interactive Inc
945 Washington Blvd.
Hoffman Estates, IL 60169
Office/Fax: 847.310.5959
Cellular: 847.651.4469
www.ondemandinteractive.com


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders






  


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders