Code Monkey home page Code Monkey logo

Comments (11)

marbetschar avatar marbetschar commented on August 19, 2024

Just tested this while being connected to AppleTV using AirPlay. In this setup, COSTouchVisualizer works as expected: It shows the touches while connected using AirPlay and hides them if not connected.

from costouchvisualizer.

joeblau avatar joeblau commented on August 19, 2024

If this is working, should this be closed?

from costouchvisualizer.

marbetschar avatar marbetschar commented on August 19, 2024

Why? The issue is still open. Nothing has been fixed.

from costouchvisualizer.

joeblau avatar joeblau commented on August 19, 2024

Oh i see, sorry I misread the issue. definitely leave this open.

from costouchvisualizer.

marbetschar avatar marbetschar commented on August 19, 2024

from costouchvisualizer.

joeblau avatar joeblau commented on August 19, 2024

Not 100% sure. I haven't looked into it yet, but I'll try and take a look this week.

from costouchvisualizer.

marbetschar avatar marbetschar commented on August 19, 2024

😍

from costouchvisualizer.

marbetschar avatar marbetschar commented on August 19, 2024

Any news on this?

from costouchvisualizer.

joeblau avatar joeblau commented on August 19, 2024

Sorry, been super busy at work and working on a different OSS project that I didn't get a chance to look at this yet. It's still in the queue.

from costouchvisualizer.

bhartsb avatar bhartsb commented on August 19, 2024

I have the same issue. Doesn't work with QT. However, I just went in to COSTouchVisualizerWindows.m anyScreenIsMirrored method and forced it to return YES.

from costouchvisualizer.

nhahn avatar nhahn commented on August 19, 2024

This hasn't been updated in a while, but you can do this:

- (BOOL)touchVisualizerWindowShouldAlwaysShowFingertip:(COSTouchVisualizerWindow *)window {
  AVAudioSessionRouteDescription * asRoute = [AVAudioSession sharedInstance].currentRoute;
  for(AVAudioSessionPortDescription * output in asRoute.outputs) {
    if ([output.portType isEqualToString: AVAudioSessionPortHDMI])
      return YES;
  }
  return NO;
}

Note, this was taken from another StackOverflow post. Ideally, you want this in the actual library instead of relying on the delegate.

from costouchvisualizer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.