Quantcast
Channel: Adobe Community : Discussion List - All Communities
Viewing all 238792 articles
Browse latest View live

music not stopping on video when back button is pressed

$
0
0

Hi I have a video on a scene

 

The video is on its own scene. The video is of file format .mp4 file format. When I import the video to flash a dialogue box loads Select Video

 

Where is your video file?

 

On your computer.

 

I select radio button load external video with playback components.

 

The video has sound on it. On this scene I have added a back button that takes the user to a navigation scene. When the user clicks on the back button the music continues to play. How can I get the video to stop playing when I press the back button.

 

 

I am using actions script 3 code. This is the code for the button.

 

stop();

import flash.events.MouseEvent;

 

bkbtn.addEventListener(MouseEvent.CLICK, backbtnEvent);

 

function backbtnEvent(evt:MouseEvent):void

{

            gotoAndPlay(1,"Navigation");

}

 

 

Capture.png


Why is everything blurry again?

$
0
0

I am making a 300x99 banner for a website, something I have done several times in the past, but when I drag an image onto it, the image is extremely blurry and pixelated. This has happened many times before but I have no clue what I ever do to fix it. What am I missing this time?

Marketo-AEM Integration

$
0
0

Do we have any thing from Adobe for Marketo-AEM Integration?

We have a use case for syncing Email campaigns from Marketo to AEM to enable authoring on AEM. We can build custom implementation using Marketo API's. But need to confirm If we have any such integration planned in future?

Preparing Indesign booklet with .psd graphics for print

$
0
0

I've created a booklet in InDesign that I want to prepare correctly for printing at my local printers. This file contains .psd graphics that on my print drafts at home look a bit low resolution or cracked... Do I need to embed them or do something to make sure that they will be printed exactly like the originals' high resolution format?

Basically, how to prepare the whole file for printing ensuring that I get the correct fonts, high quality .jpg photos and high quality .psd files in it at the final print?

Choppy playback suggestion

$
0
0

Like many others, I've experienced nasty, choppy playback of the PP timeline. The latest cause I discovered (in Windows 10) was that I had the Windows Task Manager active. I had opened it some time ago to monitor cpu and gpu activity to help diagnose the "poor playback" problem. But leaving it active drains resources. I had opened the Resource Monitor option (found at the bottom of the "Performance" tab of Task Manager)... that really affected PP performance on my computer. Closing the Resource Monitor helped quite a bit, but I was still getting choppy playback. Then I completely exited Task Manager (hit Task Manager "File" then "exit"), which almost completely eliminated my remaining choppy playback. I  also use Cineform proxies when editing H264 footage, and set Program Monitor playback resolution to 1/4, or even 1/8 (on 4k footage), which all help as well.

 

Now, if I could only fix the next problem... playback is very slow to begin (CC 2019), often taking 8-10 seconds to start.

AT.js 2.0 Failing To Render Non Global Mbox Activities

$
0
0

Hey All!

 

I am using a script within DTM to load AT.js 2.0. This script is working great for everything, except for non-global mboxes. The only error we're getting is the following:

Screen Shot 2019-04-01 at 2.49.28 PM.png

 

The code we're using is the following:

document.documentElement.style.opacity = '0'; _satellite.notify('handling adobe target: setting opacity to 0',1); function targetPageParamsAll() {   return {     "at_property": "ff2cfff1-2e5d-352d-ee7d-069b592aeecd",     "countryCode": _satellite.getVar('countryCode'),     "currencyCode": _satellite.getVar('customCurrencyCode'),     "daysUntilSailingBooking": _satellite.getVar('daysUntilSailingBooking'),     "daysUntilSailingSearch": _satellite.getVar('daysUntilSailingSearch'),     "destination": _satellite.getVar('destName'),     "loginStatus": _satellite.getVar('loginStatus'),     "pageName": _satellite.getVar('pageName'),     "pageType": _satellite.getVar('pageType'),     "visitNumber": _satellite.getVar('VisitNumber'),     "voyageID": _satellite.getVar('voyageID')   }; } function handleAdobeTarget() {   if(document.readyState == 'complete'){     _satellite.notify('handling adobe target: ready state complete for footer mbox',1);     handleAdobeTargetOnPageLoad()   }   else{     _satellite.notify('handling adobe target: adding event listener for footer mbox',1);     window.addEventListener('load', function(event) {      handleAdobeTargetOnPageLoad()     });   }   document.addEventListener(adobe.target.event.REQUEST_SUCCEEDED, function(e) {     var mboxName = e.detail.mbox     if(!window.hasOwnProperty('dtm_digitalData')){       window.dtm_digitalData = {};     }     if (!dtm_digitalData.hasOwnProperty('_marketingExperiments')) {       dtm_digitalData._marketingExperiments = {};     };     if (!dtm_digitalData._marketingExperiments.hasOwnProperty('responseTokens')) {       dtm_digitalData._marketingExperiments.responseTokens = {};     };     if (!dtm_digitalData._marketingExperiments.responseTokens.hasOwnProperty(mboxName)) {       dtm_digitalData._marketingExperiments.responseTokens[mboxName] = e.detail;     };   });   _satellite.notify('handling adobe target: firing handleAdobeTarget',1);   // _satellite.notify('handling adobe target: firing triggerview',1);   // adobe.target.triggerView(window.location.href)   // document.documentElement.style.opacity = '1';   adobe.target.getOffer({     mbox: 'target-global-mbox',     success: function(offer) {       if(document.readyState == 'complete'){         adobe.target.applyOffer({           mbox: 'target-global-mbox',           offer: offer         });         _satellite.notify('handling adobe target: ready state complete injecting global mbox',1);         _satellite.notify('handling adobe target: setting opacity to 1', 1);         document.documentElement.style.opacity = '1';       }       else{         _satellite.notify('handling adobe target: adding event listener',1);         window.addEventListener('load', function(event) {           adobe.target.applyOffer({             mbox: 'target-global-mbox',             offer: offer           });           _satellite.notify('handling adobe target: injecting global mbox on load',1);           _satellite.notify('handling adobe target: setting opacity to 1', 1);           document.documentElement.style.opacity = '1';         });         setTimeout(function() {           if(document.documentElement.style.opacity != '1'){             _satellite.notify('handling adobe target: timout event has occurred',1);             adobe.target.applyOffer({               mbox: 'target-global-mbox',               offer: offer             });             document.documentElement.style.opacity = '1';           }         }, 3000);       }     },     error: function() {         document.documentElement.style.opacity = '1';            }   });   // page type mbox   adobe.target.getOffer({     mbox: _satellite.getVar('brandID') + '|' + _satellite.getVar('pageType'),     success: function(offer) {       if(document.readyState == 'complete'){         _satellite.notify('handling adobe target: ready state complete for page-type-mbox',1)         adobe.target.applyOffer({           mbox: _satellite.getVar('brandID') + '|' + _satellite.getVar('pageType'),           selector: 'head',           offer: offer         });       }       else{         _satellite.notify('handling adobe target: adding event listener for page-type-mbox',1);         window.addEventListener('load', function(event) {           adobe.target.applyOffer({             mbox: _satellite.getVar('brandID') + '|' + _satellite.getVar('pageType'),             selector: '#page-type-mbox',             offer: offer           });         });       }     },     error: function() {       // analytics call for error would go here                }   }); } function handleAdobeTargetOnPageLoad() {   // global header mbox   if(document.querySelectorAll('.react-component.globalHeader').length > 0){     let mboxName = _satellite.getVar('brandID') + '|globalHeader';     let selector = '.react-component.globalHeader'     document.querySelector(selector).style.opacity = '0';     document.querySelector(selector).classList.add('mboxDefault')     adobe.target.getOffer({       mbox: mboxName,       success: function(offer) {         _satellite.notify('handling adobe target: ready state complete for header mbox',1);         adobe.target.applyOffer({           mbox: mboxName,           selector: selector,           offer: offer         });         document.querySelector(selector).style.opacity = '1';       },       error: function() {         // analytics call for error would go here         document.querySelector(selector).style.opacity = '1';              }     });   }   // footer mbox   if(document.querySelectorAll('.react-component.footer').length > 0){     let mboxName = _satellite.getVar('brandID') + '|footer';     let selector = '.react-component.footer'     document.querySelector(selector).style.opacity = '0';     document.querySelector(selector).classList.add('mboxDefault')     adobe.target.getOffer({       mbox: mboxName,       success: function(offer) {         _satellite.notify('handling adobe target: ready state complete for footer mbox',1);         adobe.target.applyOffer({           mbox: mboxName,           selector: selector,           offer: offer           });         document.querySelector(selector).style.opacity = '1';       },       error: function() {         // analytics call for error would go here         document.querySelector(selector).style.opacity = '1';              }     });   } } if(window.hasOwnProperty('adobe') && adobe.hasOwnProperty('target')){    handleAdobeTarget() } else{   var adobeLoadWatcher = window.setInterval(function () {     if (window.hasOwnProperty('adobe') && adobe.hasOwnProperty('target')) {       clearInterval(adobeLoadWatcher)       handleAdobeTarget()     }   }   ,100); }

Any help or advice would be greatly appreciated!

Still slow exporting PP 2019 on Mac Mojave

$
0
0

I have this issue now for months and I was now looking again if there is a solution now. I think I have read nearly all discussions on that.

 

Is there a solution for the slow exporting issue with PP2019 on a Mojave Mac?

 

My System:

 

Bildschirmfoto 2019-03-04 um 14.52.49.png

 

I tried rendering the same projects on an older iMac from 2013. On my Macbook it takes over 1 hour. On the iMac it is twice as fast. The iMac ist still running on High Sierra with a Nvidia GTX 775M, i5 3,4 GHz and 32GB RAM.

 

- I don't think the RAM makes the difference here.

- I don't use After Effects. Dynamic linking should not be an issue.

- I have deleted all media cache.

- I made a cinebench and the Macbook got a slightly better score than the iMac. I don't think that it is the CPU or GPU power

- I tried software rendering, Metal and OpenGL. Software rendering sucks. Metal and OpenGL both slow.

- I tried a new user on the system. No difference.

 

Is there any solution to this issue? I am willing to buy new hardware, but I don't think that solves the problem.

 

Can anybody help?

 

Thanks

Patrick

Retaking quizzes does not work if click boxes or drag-and-drop interactions are included

$
0
0

I saw a very useful suggestion for a way to reset the quiz so that someone who had passed it could take it again.

 

https://forums.adobe.com/thread/2113044

 

This suggestion makes use of the Javascript command cp.resetQuizData().  It works beautifully if you just use standard quiz question formats. 

 

The problem for me is that most of my quizzes questions are either software simulations (using click boxes or text entry boxes) or drag-and-drop interactions, and the Javascipt command does not seem to work for these kinds of interactions.  If i include any of these interactions in the quiz, the Javascript reset does not seem to reset those interactions.  In fact it is even worse than not resetting them.  All those interactions come out with a zero score even if you answer them correctly on the retake.  They work correctly the first time you take the quiz.

 

I'd appreciate any suggestions you might have about how I can manage this!


Conversion Failure || ExportPDF

mouse tracker

$
0
0

i have a video with a mouse cursor..that i want to cover with a white circle on it. the courser moves alot,

tried to do it with a tracker but b/c the courser moves fast and into different direction it wont track it good

any suggestions?

Premiere 2018 won’t import DV AVI files on my MacBook Pro anymore?

$
0
0

Premiere Pro CC 2018 Version 12.1.0 won’t import DV AVI files with MacBook Pro any more

 

Hi – I’ve just updated Premiere 2018 and I can no longer import DV AVI files. The files just appear greyed out. MOV files are fine though.

 

Last week prior to the update the AVI files were importing without a problem!! Why is this? How can I keep using DV AVI files?

 

The files are:

AVI (OpenDML) (DVCPRO): 13.1 GiB, 1h 1mn

1 Video stream: DV (Sony)

1 Audio stream: PCM

 

Overall bit rate mode: Constant

Overall bit rate: 30.3 Mbps

Recorded date: 2007-01-02 14:51:03.000

 

Video: 24.4 Mbps, 720*576 (4:3), at 25.000 fps, DV (Sony) (PAL) (DVCPRO)

Audio 1 536 Kbps, 48.0 KHz, 16 bits, 2 channels, PCM (Little/Signed)

 

 

Here’s my computer specs:

MacBook Pro (Retina, 15-Inch, Early 2013) Running High Sierra Version 10.13.3

Processor 2.7 GHz Intel Core i7

Memory 16 GB 1600 Mhz DDR3

Graphics Intel HD Graphics 4000 1536

 

Basically just normal DV AVI files I’ve imported many times up until this update. I've got thousands of these files (at one time captured from Mini DV tape) sitting on external HDD's.

 

Any suggestions?

 

Thank you

 

Evan

HelIo, I have an Attachment button but I would like the attachment name to show in a text box. The attachment is mandatory but I'm not sure how to do this. Can you help me please? Thank you. JB.

$
0
0

HelIo, I have an Attachment button but I would like the attachment name to show in a text box. The attachment is mandatory but I'm not sure how to do this. Can you help me please? Thank you. JB.

¿Why can I not access to a meeting in adobe connect mobile if the meeting is programming: Anyone with the URL of the meeting can enter the room?

$
0
0

Why can I not access to a meeting in adobe connect mobile if the meeting is programming: Anyone with the URL of the meeting can enter the room, the system request me login and password.

Design the Photoshop Forum Banner Challenge - Phase 5

$
0
0

Hi All,

 

All four phases of the Photoshop Forum Banner Challenge were awesome!

We're starting a new phase of the challenge for you to share your creative talent with others.

 

Congratulations to the previous winners, we've really enjoyed having a nice looking banner here for the Photoshop community!

 

In case anybody missed the previous challenges --

 

Phase 5: Design! Submit! Vote!

Purpose: Create a fresh Photoshop Forum Banner for the Photoshop forum overview page

DSC_0011.jpg

How to participate:

  1. Download the Template
  2. Submit your Photoshop Forum Banner design by attaching your image in a response to this thread by April 15, 2018.
  3. We’ll then round up all of the submissions and vote for the people's favorite!

  • Image dimensions: 1150px ×150px (72dpi)
  • File type: JPG or .PNG

 

Details: Use the above template design as a starting point for your designs which will help you position your imagery so it won’t be covered by the forum's CSS banner elements:

 

Please keep all submissions Photoshop-related (Photoshop UI is OK to use), safe for work, and use image content you have the rights to (do not use any copyrighted images).

 

Time-frame: Post your design(s) to this thread, and voting will begin in mid April. The chosen winner's design will be featured in the Photoshop Forum overview page, which is seen by over 35,000 people each month!

 

Looking forward to seeing what you come up with. Good luck!

 

Regards,
Sahil Chawla

Adobe photoshop elements 12 - can I convert PDF files to JPG ?

$
0
0

Hello,

 

My wife has a specific need to convert her pdf files to jpegs. She had an older version of Elements which doesnt work on Win10. I'm lookig at PE 12 but want to make sure it will do the ONE thing she needs from this software.

 

Can anyone confirm?

 

Thanks!


Error en adobe premiere aparece a low level exception ocurred in: importerMPEG (Importer:25)

$
0
0

ME SUCEDE ESTO CUANDO EL ARCHIVO ESTA EN .MOV Y AL CONVERTIR TAL ARCHIVO AL MISMO FORMATO (.MOV) YA FUNCIONA

 

 

 

NECESITO UNA SOLUCION A ESTE PROBLEMA, YA REINSTALAMOS, YA FORMATEAMOS PC E INSTALAMOS WINDOWS 10 ( TENIA EL 7) NO HA FUNCIONADO DE NINGUNA DE ESTAS MANERAS, YA ETA ACTUALIZADO, GRACIAS.

Intellectual Property Violation

$
0
0

DSC_9334DawnRunnerA.jpgCan anyone explain to me why this image is in violation intellectual property rights - its a city/waterscape taken in a public place? I can't see any logos or other personal information.

Creative Cloud All Apps Should Include Specified Apps, But System Says 'Not In Your Plan'

$
0
0

We have Creative Cloud All Apps and have allocated the licences, but when the applicable staff log in it says that products (listed in App Apps as included) are 'Not In Your Plan'.

 

Can we have some direction, please?

photoshop cc Rich tool tips missing

$
0
0

Now suddenly, there are no Rich tool tips showing in Photoshop CC 20.0.4

 

[Here is the list of all Adobe forums... https://forums.adobe.com/welcome]

[Moved from CS6 & earlier Creative Suites to Photoshop forum... Mod]

Error when re-entering course on LMS with html5

$
0
0

We are on the latest version (11.0.1.266) of Captivate 2019.   When we exit out of a course and then re-enter through the LMS in Chrome 73.0.3683.86, we get this error and the loading gif just sits there and spins.

 

 

Uncaught TypeError: Cannot read property 'charAt' of undefined

    at cp.QuizState.readNumber (eval at e (CPXHRLoader.js:37), <anonymous>:1972:423)

    at cp.QuizState.readString (eval at e (CPXHRLoader.js:37), <anonymous>:1974:34)

    at cp.PlaybackController.restoreObjectsFromState (eval at e (CPXHRLoader.js:37), <anonymous>:2052:20)

    at Function.cp.resumeValuesFromDataChunk (eval at e (CPXHRLoader.js:37), <anonymous>:1967:460)

    at cp.PlaybackController.RestoreQuizState (eval at e (CPXHRLoader.js:37), <anonymous>:2093:35)

    at Function.cp.NewQuizLibraryInit (eval at e (CPXHRLoader.js:37), <anonymous>:1589:276)

    at Function.cp.CPPreInit (eval at e (CPXHRLoader.js:37), <anonymous>:1597:503)

    at Function.cp.ContinueCPInit (eval at e (CPXHRLoader.js:37), <anonymous>:2923:33)

    at LoadContent (eval at e (CPXHRLoader.js:37), <anonymous>:1966:439)

    at InitializeExecuted (eval at e (CPXHRLoader.js:37), <anonymous>:6196:5)

 

 

Any ideas?

 

John

Viewing all 238792 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>