Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I have a image open-able in Fireworks and I was told to use it as a Joomla Template.
I'd like to have some tips on how to begin programming it.
Thank you.
You probably shouldn't do this in fireworks. Making a Joomla template requires knowledge of at least HTML, CSS and a bit of PHP. If you know how to build websites in general, you can find tutorials on how to build Joomla templates on their wiki.
If you have no experience in making websites what so ever, you really shouldn't start by making a template for a CMS. You can't simply use an image as a template.
I don't know who told you to do this, but from the way you ask this question, I must admit I think you are in way over your head! :S
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Working on this desktop application, every thing is going great. Had some troubles her and there, but fixed every single on of them.
The only problem is that my app look ugly, that is what my boss thinking.
Done some research found javaFX but a lot of forums calling it dead or dying
is true ??
And if not any one has a good tutorial on it
JAVAFX
I liked it a lot, but I do fear they came a bit late to the show. It is also relative complex (but nicer than swing, I find) compared to web frontend frameworks
On the last devoxx conference, Oracle profiled javaFX as a platform for mobile. Maybe it has a chance there.
For tutorials: just google....
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Hi i am new to java and facing difficulties in learning methods and their parameters , tell me the best way of memorizing all methods,interfaces names etc
Use an IDE. Code completion is a wonderful thing. In eclipse I love to type syso ctrl-space and watch System.out.println() magically appear. I love to hover my mouse over a method and have the java docs popup and tell me what it does and what it needs.
Use google. Use stackoverflow. Use github. Use your own code once you've written enough stuff.
Also realize those of us who've been coding for decades still have to look some of this stuff up. So you're not alone.
It also helps to use cheetsheets:
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I like the question formatting of stack overflow.
I am building a discussion forum kinda app in javafx.
Please guide me how can I do the same there?
StackOverflow uses Markdown formatting.
There are a few 3rd party components which allow authoring and rendering of Markdown in JavaFX. You could adapt these for your forum application. Listed in no particular order:
Brain Low: JavaFX Markdown Viewer
Markdown Pad FX
Flowdown
MarkdownFX
I have not used any of the above projects.
Also there are many HTML based Markdown editors, so you another option is to embed a Markdown HTML Editor in a JavaFX WebView, though I think a native JavaFX solution would probably be preferred if you can get that to work well for you.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am an amateur java program developer and was wondering if anybody knows how to write a web browser in java if possible.
If you need a component to render HTML, JEditorPane in the javax.swing library is capable of doing it for basic HTML. You could mock browser behavior by adding an input for entering a URL, getting markup, and setting it to the editor pane. Tracking URL history and that sort of thing would be up to you, and it could be a decent project for learning a lot about Swing, event handling, concurrency, etc...
If you're looking at building your own rendering engine for HTML, CSS, and JavaScript... that's a much larger problem.
http://docs.oracle.com/javase/7/docs/api/javax/swing/JEditorPane.html
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am just learning java. I just want to make a simple application to access a web-site.
there is a website onto which i want to log-in through java:
and then interact with it through my interface, basically after log in, i would be writing in some text boxes and sending it.
I tried many places to do it, studied HTTP protocol but still cant make it.
can someone help me out?
Accessing a web site, logging in and interacting with forms on it is somewhat complex work, so it might not be the best choice for a first java project.
But if you want to do it, you should probably use Apache HttpComponents/HttpClient.
There are useful examples at the above link as well, which may help you get started.