• Comunidad global
    • Idioma:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Comunidad dedicada para hablantes de japonés
  • 한국 커뮤니티
    Comunidad dedicada para hablantes de coreano
Salir

What is command ID for Fit up to 100%?

Comprometido ,
Sep 22, 2019 Sep 22, 2019

Copiar vínculo al Portapapeles

Copiado

Hi everyone!

I use Kbar. So I want command id for Fit up to 100%.

Not short cut (shift + /), But command id.

Please help! Thank you!

 

Vistas

762

Traducir

Traducir

Informe

Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines

correct answers 1 respuesta correcta

Defensor , Sep 22, 2019 Sep 22, 2019

I do not think there's a Menu Command for it. However, here's a snippet you can link to kBar button to do just that.

(function setMagnification() {
	var magnificationValue = 1;

	isRetina() && magnificationValue /= 2;
	app.activeViewer.views[0].options.zoom = magnificationValue;

	function isRetina() {
		var command, result;
		if (isMac()) {
			command = 'system_profiler SPDisplaysDataType | grep Resolution';
			result = system.callSystem(command);
			return /retina/i.test(result);
		}

		return
...

Votos

Traducir

Traducir
Defensor ,
Sep 22, 2019 Sep 22, 2019

Copiar vínculo al Portapapeles

Copiado

I do not think there's a Menu Command for it. However, here's a snippet you can link to kBar button to do just that.

(function setMagnification() {
	var magnificationValue = 1;

	isRetina() && magnificationValue /= 2;
	app.activeViewer.views[0].options.zoom = magnificationValue;

	function isRetina() {
		var command, result;
		if (isMac()) {
			command = 'system_profiler SPDisplaysDataType | grep Resolution';
			result = system.callSystem(command);
			return /retina/i.test(result);
		}

		return false;
	}

	function isMac() {
		return $.os.indexOf('Mac') !== -1;
	}
})();

Votos

Traducir

Traducir

Informe

Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Comprometido ,
Sep 22, 2019 Sep 22, 2019

Copiar vínculo al Portapapeles

Copiado

Hey Tomas! 

I can set magnification!

I use your script, Roll it, Slice it up and Flow!

Very Very Helpful.

Thank you so much!

Votos

Traducir

Traducir

Informe

Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Defensor ,
Sep 22, 2019 Sep 22, 2019

Copiar vínculo al Portapapeles

Copiado

MÁS RECIENTES
That cool! Thanks Kenji. I'm happy you find them usefull. Cheers.

Votos

Traducir

Traducir

Informe

Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines