Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7172915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:42:54+00:00 2026-05-28T15:42:54+00:00

MAJOR EDIT I have restructured my question to be more appropriate and less arbitrary,

  • 0

MAJOR EDIT
I have restructured my question to be more appropriate and less arbitrary, but the basic message still holds.

What I want to do is make some text appear without an associated window in any of the following languages: Java, C or python. It would just be the text that I want to appear completely overlaid on whatever you happen to currently have on your desktop. It would be overlaid on all programs, etc.

Any recommendations/starting points on how to do this?

OLD POST
I’ve heard rumors that it’s possible to use assembly to make “images” appear (I don’t know what they’d actually be considered, what I heard was that my friend professor made a semi-transparent, green dollar bill sign appear and bob up and down on the lower right side of the screen)

So my question is:

Are there any assembly commands/series of commands to make things appear on your screen?
Can anyone point me in the direction to use assembly to interact with what appears on the screen?
Is it possible to have an independent symbol appear without a window associated with it? Or alternatively, is it possible to make the background window completely transparent while still keeping the image intact?
How difficult would it be to create an assembly program which makes text appear in this manner? (i.e. overlaid whatever you currently have on your screen without opening it’s own window)

NOTE if you would like to provide any examples, which would be greatly appreciated, I am currently on a mac so my computer only interprets AT&T syntax

OLD POST

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T15:42:55+00:00Added an answer on May 28, 2026 at 3:42 pm

    Ultimately you DO create a window, you just set its background to transparent. Drop this code into a file called test.java and give it a shot – just tried it out on Mac OS 10.7 and it works. (The text shows up black near the top left corner of the monitor – you have to look carefully to see it.) Note that according to this post you do need Java > 1.6.

    import javax.swing.*;
    import java.awt.*;
    public class test extends JWindow{
        public test(){
            super();
            this.setSize(500, 400);
            this.setLocation(50, 50);
    
            setBackground(new Color(0,0,0,0)); // this is the critical line - that fourth 0 represents alpha (or opacity)
    
            setAlwaysOnTop( true );  // keeps it in the foreground so you don't click away from it - note that clicks on the transparent part DO pass through to the desktop, at least on Lion
    
            JLabel testLabel = new JLabel("Floating text hah");
            this.add(testLabel);
    
        }
        public static void main(String[] args){
            System.out.println("Sup");
            test t = new test();
            t.setVisible(true);
        }
    }
    

    Hopefully this puts you on the right path.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

major edit of a tumbleweed, may remain a tumbleweed... If I have a list
I have some major performance issues when asking a specific nhibernate question. I have
Major Edit: I misread the article! The comment was in regards to the finalize
EDIT: Now a Major Motion Blog Post at http://messymatters.com/sealedbids The idea of rot13 is
// Major edit, sorry in bed with back pain, screwed up post One of
I have a JQuery/Ajax update. It correctly updates in all major browsers, however, dealing
EDIT: Here's a link to show you my sample code: http://www.singingeels.com/jqtest/ I have a
According to what's new in .NET 4 : major configuration elements have been moved
I have a photo sharing website that the user can edit their picture privacy.
I'm building an architecture with inheritable generics and parent-children relations. I have one major

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.