Posts

Object appears wrong frame

hello, i'm making simple drag , drop game several letters. of letters appear in wrong frame , generate error when clicked. i'm attaching example of file i'm working on, if can great ( test2.fla - google drive ). a, b, c fine xyz carry on the  next frame. can done stop this. stop();   var orig1x:number=a1.x; var orig1y:number=a1.y;     a1.addeventlistener(mouseevent.mouse_down, dragtheobject); a1.addeventlistener (mouseevent.mouse_up, item1release);     function dragtheobject(event:mouseevent):void { var item:movieclip=movieclip(event.target); item.startdrag(); var toppos:uint=this.numchildren-1; this.setchildindex(item, toppos); }   function item1release(event:mouseevent):void {      var item:movieclip=movieclip(event.target);      item.stopdrag();        if (pos1.hittestpoint(item.x,item.y)) {        item.x=pos1.x;        ...

Troubleshooting opening the application Adobe Air

Image
hi! i installed application , appears and  error while try open it... deleted application , downloaded again , problem persists. please me!!     More discussions in AIR Bugs and Performance Issues adobe

Naming each slide in a slide presentation. (like nature location) [Duplicate. Locked]

having trouble getting unique name each slide, keeps wanting use name chose slides. help duplicate thread, please reply @ how name each individual slide in presentation, (i.e. nature locations , descriptions)? wants name slide same.   , not reply here. More discussions in Lightroom Classic CC adobe

licensing error

help!!lease!!! ive been using cs3 many years now, , love it. today, odd reason, when tried open program, error window popped saying licensing program has stopped working , should contact id administrator, or adobes customer service help. tried contacting adobe said dont support cs3. can me????? motiy,   these chat services set issues yours (just click still need button straight away):   adobe id , registration support (non-cc, chat open between 5am , 7pm pst on workdays) http://helpx.adobe.com/x-productkb/global/service-c1.html   serial number , activation support (non-cc, chat open between 5am , 7pm pst on workdays) http://helpx.adobe.com/x-productkb/global/service1.html   failing that, please report back, , try alert adobe friend know do. More discussions in Illustrator adobe

Photoshop Elements 10 crashes

re-installed pse 10 disk, have secure serial number , tried find on pages, when open program , click on item says "photoshop elements not responding".  description of error message follows: description:   problem caused program stop interacting windows.     problem signature:   problem event name: apphangb1   application name: photoshopelementseditor.exe   application version: 10.0.0.0   application timestamp: 4e5e8736   hang signature: e538   hang type: 262144   os version: 6.1.7601.2.1.0.256.48   locale id: 1033   additional hang signature 1: e5387c94147c2644897f995b17a30196   additional hang signature 2: fada   additional hang signature 3: fada4ac8a4905cd9c53a6b468060148b   additional hang signature 4: e538   additional hang signature 5: e5387c94147c2644897f995b17a30196   additional hang signature 6: fada   additional hang signature 7: fada4ac8a4905cd9c53a6b468060148b     read our...

Creative Cloud won't launch

so downloaded cc week or ago, launched , installed few programs , messed around photoshop bit. when try open desktop app won't launch @ all, i've tried running program administrator , still won't start. i've looked around @ previous discussions , have tried following instructions, uninstalling program won't launch @ either, i'm kinda stuck here ideas. uninstall cc, https://helpx.adobe.com/creative-cloud/help/uninstall-remove-app.html lastly uninstall cc desktop app, https://helpx.adobe.com/creative-cloud/help/uninstall-creative-cloud-desktop-app.html clean computer of cc files per http://www.adobe.com/support/contact/cscleanertool.html restart computer (don't skip this) reinstall cc desktop app, https://creative.adobe.com/products/creative-cloud using compatibility mode ( https://technet.microsoft.com/en-us/library/bb456979.aspx?f=255&mspperror=-2147217396 ) use desktop app install cc programs/trials More discussions in Creative Cloud Download &...

Photoshop Scripting: How to convert psd image in base64 in jsx to send it on server

i working on photoshop plugin. want convert photoshop psd file in base64 can send on server. following code not running. gives evalscript error. <pre> var filepath = app.activedocument.path + '/' + name + '.png';   //get file buffer   var f= new file(filepath);   f.open();   f.encoding = 'binary';   var buffer = f.read(f.length);   f.close();   //file buffer base64   var base64 = base64encode(buffer);   return base64; </pre> i guess base64encode() function not exists. don't see definition in code , photoshop script core bit old , think doesn't has built-in function that.   you google old school method base64 conversion. like: base64.js/base64.js @ master · davidchambers/base64.js · github   should modifications.   or if have html panel. can send data javascript panel, use native built-in chrome function conversion (.atob) , send data back.   for sending use html panel , make ajax request or somethin...