user506710
user506710

Reputation:

Developing GUI for program

I have developed a java program as a part of my homework and have to build "really good" GUI for it as is the demand.

I would like to know if I can develop a flash based gui and then run my java code behind it since I have learnt flash before ??

Since I have some time constraint I don't think I would be able to implement full dragabble features using swing and java applets.

Please do suggest the best way I should complete my GUI in period of 2-3 days.

Thanks a lot....

Upvotes: 0

Views: 307

Answers (1)

Hovercraft Full Of Eels
Hovercraft Full Of Eels

Reputation: 285405

The "standard" way to do this is to create a Swing GUI which can be very basic or quite complex, and no, don't try to do this with flash as it will be difficult if not impossible to mesh this with your current Java code. If you already know some Swing coding, this can be do-able within 2-3 days.

You can find the Swing tutorials here: Swing Tutorials

Upvotes: 3

Related Questions