Adobe Flex in an email? - apache-flex

Is it possible to host a very basic trust, Adobe Flex application in an email?

It is technically possible to do something like this, but modern email clients are extremely sensitive to anything that could be used for malicious purposes and Adobe Flex would count as "executable code".
If you're looking for a guide on what you can and can't use in email clients, Campaign Monitor has a good overview of CSS for Email.
Otherwise, I think the best that you'll be able to do is email out a link to a page that had the Flex app embedded in it.

Related

share content from mobile app in flex

I am developing a mobile app using flex 4.5
I want to let the user share a plain text using any of the apps available in his device (whatsapp, facebook, skype, bluetooth, ..). How can I do that? I know how to email, sms and call. But don't know how to share.
Please help
Air does not have native support for this feature, however you can use it with the navigateToURL method, but its still very clumsy.
You need to use Android SDK Share Intent URL's to access the native share menu's.
more info here: Air Share Intent

Import mails from asp.net site to Outlook?

I have an asp.net app where the user edits a table that generate some reports, and then mails them to his providers.
The client wants to edit this pregenerated emails from Outlook.
There is no Exchange Server.
Should i let download the reports generated, and then use outlook automation from the client side? Can I generate a (.pst?) file that the user could import using Outlook? Or maybe there is completely another way to solve the problem?
It depends on the level of "editing" required.
One of the things you may want to look it is the VSTO tools to write an outlook plug-in.
Beth Massi has a good blog article on "data controls within outlook add-ins"
http://blogs.msdn.com/b/bethmassi/archive/2009/12/21/build-wpf-data-controls-for-outlook-addins-easily-with-vs2010.aspx
There is also a lot of tutorials of the things that can be achieved through VSTO add-ins.
Msdn Article 1
Msdn Article 2
Msdn Article 3
Line Of Business Applications in VSTO
Of course these may not be of use to you depending on your circumstances, we would probably need more information on things like:
Format of the Report
editing being performed
Is the report embedded in the email body, or is it an attachment?
Hope this helps
Pete

How to put ads on a flex based application?

Can you please tell how can we place ADS (whether Google Adsense or others) on a website completely designed in FLEX?
The easiest way is to not have your site COMPLETELY in flex. Otherwise you can have your flex ap use the AdSense API http://code.google.com/apis/adsense/featuresbenefits.html and make SOAP calls to it.
Other ad servers, like OpenX can also be handled this way (via their API) in flex. I don't know that any of them support cool stuff like AMF but OpenX is open source and in PHP so you could use the Zend Frameworks support of AMF to add that kind of functionality.

facebook chat in silverlight

I have a silverlight application and i want is that my application should ask for the user name and password and the client should be able to start chat with their facebook friends.Could this be done? and if so then is there sample code available
This is the question of what kind of API Facebook provides. There aren't any inherent issues here if Facebook exposes this sort of functionality to third parties. I'm not an expert in this, but reading the facebook documentation should help you out.
http://developers.facebook.com
Also maybe check out these links:
http://wiki.developers.facebook.com/index.php/LiveMessage.send
http://wiki.developers.facebook.com/index.php/Fb:chat-invite
It looks like some folks developed a framework to more easily interop facebook with .net based technologies:
http://facebooktoolkit.codeplex.com/
Here they are discussing the LiveMessage stuff:
http://facebooktoolkit.codeplex.com/Thread/View.aspx?ThreadId=62384
People did facebook chat clones on the web, and in standalone apps (http://www.faceoffim.com/), so at least in principle it's certainly doable.

are there any ASP.NET with Voice Recording sample codes?

I am wondering if there is any codes sample for ASP.NET with Voice recording.
Ok, Basically, i want to create a web page that allow user to click a record button and record his voice thru his/her microphone and then convert it into mp3 file, then i want to click PLAY button to play what was recorded.
I have searched google alot and cannot find any codes that code do just that.
I have seen site that can do just that and it is using FLASH with RoR (i think).
Is there any way to record voice using ASP.NET?
I dont care if it need to combine with FLASH with ASP.NET, as long as it is possible.
Thanks.
EDIT:
Stephen M. Redd,
Appreciate your input. Yes, i know there is no simple way to accomplish what i am asking for. I also have researched and google alot on this question. Yes,I have come to know the best way to do this is through using FLASH with either FMS or RED5 (open source).
So i am trying to figure out how to write a simple FLASH (.swf) that i can record voice and then save into mp3 format to RED5 server.
Do you know or can you provide any directions to what i am asking above?
1) Tutorial on Microphone class in FLASH (i am reading some basic implementation from a book called "FLASH Actionscript in a classroom", which doesnt tell me how to record voice but ONLY how to use microphone object in FLASH)
2) Tutorial on how to setup and use RED5 (FMS is NOT an option due to its cost)
3) how to integrate 1) and 2) with asp.net and javascript (if there is any flashvars that the FLASH microphon .swf i can access so that ASP.NET can be used with javascript)
Thanks.
EDIT 2:
I cant consider to accept an answer BECAUSE none of them has provided a good answer.
Take a look on my question and read the comments i got, and you will see that my question was NOT being provided a good answer.
My question is to find a web-based Audio/Voice recorder so that the users can record their voice on the site.
To better convey what i exactly asked for, take a look at www.snapvine.com or www.pubclip.com . Both of them provide a way for users to record their voice right on the webpage.
So, i am looking for a FLASH component (.swf) similar to what they offer to integrate with my site.
EDIT 3:
This voice/microphone recording thing seem to be a challenging project for most developers.
I guess this means i am all alone.
I think this is something that would have to be done with Flash.
This guy appears to have some examples of doing voice recording in Flash, with code samples:
http://fms.denniehoopingarner.com/
There is no simple way to do this kind of thing. Standard web technologies based on HTTP and HTML just don't have the features. HTTP doesn't work well with moving audio data, and HTML and Javascript are not able to talk directly to the hosting OS or hardware resources like the microphone.
There are 3rd party browser plug-ins and applets that you may be able to use via a web application to do this kind of thing.
Most people use Flash and the Flash Media Server to do audio input via the web.
There are also some Java applets that have similar capabilities such as the ListenUp SDK (I have not used this, so it isn't an endorsement).
There is a lot of discussion on this topic related to Microsoft Silverlight, but as I understand it voice and camera inputs from the client side are not supported as of Silverlight 2, though it may get put into Silverlight 3. There is a good bit of information about how to use the necessary Flash bits within a Silverlight application though. For more info on that, check out this post.
ASP.net is a Server-Side Technology, but voice recording is done Client side. So regardless if you use ASP.net, PHP, Ruby on Rails or Cobol, you can't do it directly.
What you need is a Client-Side Application that works together with the Server Side to accomplish this. I do not know if Silverlight can do Microphone recording, but Flash can. This is apparently quite easy using the Flash Media Interactive Server, but normally you should be able to do this without, i.e. just by having a Flash Application doing the recording and then Uploading it to the server.
Hi Sam in Silverlight 4 it is possible to record voice from microphone and webcams.
Just follow the blog.
http://blog.ondrejsv.com/post/Audio-recorder-Silverlight-4-sample.aspx
Good Luck

Resources