copy to a system clipboard

hi…

I’m working on a project for android devices …

I need to copy a text from InputField (unity 4.6) to another application like (note,browser or …)

i searched a lot but all the codes if found copy just in the application.

thanks …

A bit late but maybe this will help:
public static string clipBoard { get { return GUIUtility.systemCopyBuffer; } set { GUIUtility.systemCopyBuffer = value; }