Quantcast
Channel: Adobe Community: Message List
Viewing all 150094 articles
Browse latest View live

Re: ajax does not work on a real device

$
0
0

Look at the confgi.xml file and the proper access tags are set. You can search this form for them


Re: Fillable Form is no longer fillable

$
0
0

May be that the fields are locked.

Re: Premiere Renders clip EXCEPT for a single frame

$
0
0

If you really want to render it (but as previously said, you shouldn't need to do so), Edit > render entire work area (or something like that. I'm not at my editing computer now.).

Re: Downloading Older Versions of Photoshop Elements

Find an XRef backwards - not successfull in all cases

$
0
0

Dear Friends,

Again I have probably a weird idea: Add a cross reference in front of a footnote reference which points to that footnote.

See the FM document (FM15).

The cross reference text to be inserted is just an ellipsis. Then the whole construct (ellipsis + FN reference) will receive a character format to indicate the 'hotspot'.

Obviously I'm struggling with finding the stuff (nothing, cross-ref ellipsis, another crossref very far) in front of the FN reference.

The script first collects the FN refs of the document in an array, which allows me easy handling them back to front, thus not destroying locations of the FN anchors by inserting the ellipsis XRefs.

Most time the script works correctly, but in this test it fails at the FN anchor 3). It finds the ellipsis behind! It seems that the Find in line 67 does not search backwards but forwards.

Output of the script in first run:

Fn string =5)     XRef is there:false
Fn string =4)    oTL.offset=51 oTextItem.offset=281 dOffset=-230    XRef is there:false
Fn string =3)    oTL.offset=50 oTextItem.offset=51 dOffset=-1    XRef is there:true                   <<< why?
Fn string =2)    oTL.offset=310 oTextItem.offset=281 dOffset=29    XRef is there:false
Fn string =1)    oTL.offset=214 oTextItem.offset=310 dOffset=-96    XRef is there:false

Output of the script in the second run is absolutely weird. None of the present ellipsis XRefs is found and hence new ellipsis XRefs are inserted!

Fn string =5)    oTL.offset=284 oTextItem.offset=214 dOffset=70    XRef is there:false
Fn string =4)    oTL.offset=54 oTextItem.offset=284 dOffset=-230    XRef is there:false
Fn string =3)    oTL.offset=50 oTextItem.offset=54 dOffset=-4    XRef is there:false
Fn string =2)    oTL.offset=316 oTextItem.offset=50 dOffset=266    XRef is there:false
Fn string =1)    oTL.offset=217 oTextItem.offset=316 dOffset=-99    XRef is there:false

The script is not that long - but obviously I make a bad mistake somewhere - with the evaluation of the text locations. Can anyone spot this ? You must know that we currently have some heat here in Switzerland - so my brain may be somewhat out of order.

// HandleFootnote.jsx
#target framemaker
main ();

function main () {
var nNotes, oDoc;
  oDoc = app.ActiveDoc;  nNotes = EnhanceInDoc (oDoc);  alert ("Number of footnotes handled: " + nNotes);
}

function EnhanceInDoc (oDoc) { //=== enhance footnotes in current document ===================
// Arguments oDoc   Current document
// Returns   Number of Footnote refs which got an XRef to the footnote
var bOK, aFnList = [], docStart, foundTR, j, k, lFnRef, lenFnList, nNotes=0,     sXRefFmt = "zfnref-footnote-reference", oEFN, oFindParams, oLocation, oFnTI,     oLocation, oObject, oPage, oTextItem, oTL, oTL1, oTL2, oTR, tloc;      aFnList.length = 0;                             // clear array  docStart = oDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;  tloc = new TextLoc (docStart, 0);  oDoc.TextSelection = new TextRange (tloc, tloc); // essential  oFindParams= GetFindParameters (7, "");     // Find footnote anchor  foundTR = oDoc.Find(tloc, oFindParams);  while (foundTR.beg.obj.ObjectValid()) {      aFnList.push(foundTR);                        // fill array for next 'step'    tloc = foundTR.end;      foundTR = oDoc.Find(tloc, oFindParams);    }   lenFnList = aFnList.length;   if (lenFnList < 1) {    return null;                                  // common situation for new document  }
// ---------------------------------------------- Insert link to footnote -------------------------  for (j = lenFnList-1; j >=0; j--) {             // handle in reverse order to keep locations  oFnTI = oDoc.GetTextForRange (aFnList[j], Constants.FTI_FnAnchor);  for (k = 0; k < oFnTI.length; k++) {      oTextItem = oFnTI[k];          oObject = oTextItem.obj;                      // object Fn     oTL   = oObject.TextLoc;                      // Location of the footnote anchor (beg)
$.writeln ("Fn string =" + oObject.FnAnchorString);    bOK = CheckXRef (oDoc, oTL, sXRefFmt);
$.writeln ("\tXRef is there:" + bOK);    if (bOK) {      break;                                      // already an XRef inserted    } else {      lFnRef  = oObject.FnAnchorString.length;      InsertXRef (oDoc, oTL, sXRefFmt, oObject, lFnRef);      nNotes += 1;                                // statistics, quick answer    }  }
}  return nNotes;
} //--- end EnhanceInDoc  

function CheckXRef (oDoc, oTL, sXRefFmt) { //=== Test XRef at location before FN reference? ===
// Arguments  oDoc:       Document receiving the XRef and containing the target marker
//            oTL:        Text location where the XRef is assumed
//            sXrefFmt:   Cross reference format name assumed
// Returns    true if an XRef exists inserted by InsertXRef. 
//            false if no XRef present or not of this kind. 
// Called by  EnhanceInDoc
var dOffset, foundTR, k, oFindParams, oObject, oTextItem, oXRefTI;  oFindParams= GetFindParameters (8, "");         // find XRef backwards  InitFA_errno ();                                // reset - it is write protected  foundTR = oDoc.Find(oTL, oFindParams);  if(FA_errno === Constants.FE_Success) {         // there may be nothing in front of FN-ref    oXRefTI  = oDoc.GetTextForRange (foundTR, Constants.FTI_XRefBegin);    for (k = 0; k < oXRefTI.length; k++) {        oTextItem = oXRefTI[k];            oObject = oTextItem.obj;                    // object XRef ?       dOffset = oTL.offset - oTextItem.offset;    // Crucial part not yet working correctly
$.writeln("\toTL.offset="+oTL.offset +" oTextItem.offset="+oTextItem.offset +" dOffset="+dOffset);      if (oObject.XRefFmt.Name == sXRefFmt) {     // this may be be a wrapped around XRef!        if (dOffset <= 3 && dOffset >= -1) { return true;} // inserted item is close      }    }  }  return false;
} //--- end CheckXRef

function InsertXRef (oDoc, oTL, sXRefFmt, oTgtObj, lFnRef) { //=== Insert XRef at location ============
// Arguments  oDoc:       Document receiving the XRef and containing the target marker
//            oTL:        Text location Where to insert the  XRef. May be empty, defining only an Insertion Point
//            sXrefFmt:   Cross reference format name from the catalogue
//            oTgtObj:    To where the XRef shall point
//            lFnRef:     Length of the FN reference string
// Returns    -
// Called by  EnhanceInDoc
// Comment    This script handles only reference and target in the same document
// Reference  https://forums.adobe.com/thread/2088696
var oEFN, oHTR, oMarker, oXRef, sXRefID, oFnPgf, oTloc;
//                                                --- Prepare the required information ------------  sXRefID = oTgtObj.id + ":" + oTgtObj.Unique;    // take properties from the oTgtObj  oFnPgf  = oTgtObj.FirstPgf;  oTloc   = new TextLoc (oFnPgf, 0);
//                                                --- Create the Cross reference Marker -----------  oMarker = oDoc.NewAnchoredMarker(oTloc);        // Marker to be inserted in target object   oMarker.MarkerTypeId = oDoc.GetNamedMarkerType ("Cross-Ref"); //Make it a Cross-Ref marker  oMarker.MarkerText = sXRefID;                   // Marker text needs to be unique

//                                                --- Create the Cross reference ------------------  oXRef = oDoc.NewAnchoredFormattedXRef(sXRefFmt, oTL); // Insert a new xref object   oXRef.XRefSrcIsElem = false;                    // Required to make it an unstructured xref  oXRef.XRefFile = oDoc.Name;                     // Required for same file ?  oXRef.XRefSrcText = oMarker.MarkerText;    oDoc.UpdateXRef(oDoc, oXRef);                   //Update the new xref. 
//                                                --- Apply character format to whole construct ---  oEFN = oXRef.TextRange.end;                     // end of XRef  oEFN.offset = oEFN.offset + lFnRef;             // after FN ref string  oHTR = new TextRange (oXRef.TextRange.beg, oEFN);    applyCharFmt (oHTR, "hypertext", oDoc) ; 
} //--- end InsertXRef

function GetFindParameters (iType, sSearch) { //=== set up parameters for various find actions ====
// Arguments iType:   what find to be performed
//                    7  Footnote (anchor)
//                    8  Cross reference, backwards
//           sSearch: what to search for (other types)
// Returns   Parameters for the find method
var findParams, propVal;  findParams = new PropVals() ;  switch (iType) {    case 7: // ---------------------------------- find any Footnoe       propVal = new PropVal() ;        propVal.propIdent.num = Constants.FS_FindWrap ;        propVal.propVal.valType = Constants.FT_Integer;        propVal.propVal.ival = 0 ;                  // don't wrap      findParams.push(propVal);        propVal = new PropVal() ;        propVal.propIdent.num = Constants.FS_FindObject;        propVal.propVal.valType = Constants.FT_Integer;        propVal.propVal.ival = Constants.FV_FindFootnote ;        findParams.push(propVal);        return findParams;    case 8: // ---------------------------------- find any cross reference backwards       propVal = new PropVal() ;        propVal.propIdent.num = Constants.FS_FindWrap ;        propVal.propVal.valType = Constants.FT_Integer;        propVal.propVal.ival = 0 ;                  // don't wrap      findParams.push(propVal);        propVal = new PropVal() ;        propVal.propIdent.num = Constants.FS_FindCustomizationFlags ;        propVal.propVal.valType = Constants.FT_Integer;        propVal.propVal.ival = Constants.FF_FIND_BACKWARDS ;       findParams.push(propVal);        propVal = new PropVal() ;        propVal.propIdent.num = Constants.FS_FindObject;        propVal.propVal.valType = Constants.FT_Integer;        propVal.propVal.ival = Constants.FV_FindAnyXRef ;        findParams.push(propVal);        return findParams;    default:       alert ("GetFindParameters: Case " + iType + " is not defined");      return null;  }
} //---  end GetFindParameters

function applyCharFmt (textRange, name, doc) { //=== Apply character format ========================
  var charFmt = 0;    charFmt = doc.GetNamedCharFmt (name);    if (charFmt.ObjectValid()) {      doc.SetTextProps (textRange, charFmt.GetProps());    }  
} //---  end applyCharFmt

Re: Problem with add-ons

$
0
0

Hi Skylär,

 

Sorry to hear that you're having trouble using plugins in Adobe XD. A few more details would be super helpful like:

 

  • What is the OS and XD version you're using?
  • Is it happening with all the plugins or with just one plugin?
  • What is the name of the plugin that you're trying to download?

 

Please check out this article Issues installing XD plugins and let us know if that works for you.

 

Awaiting your response.

 

Thanks,

Harshika

Re: Forgot the password of PDF file

$
0
0

Not very helpful here. Please don't respond and waste peoples time.

Re: Forgot the password of PDF file


Fading Cloth

$
0
0

Hey guys I'm working on a project right now and I wanted to up my level of realism in my texture. I wanted to know if any of you have found a way to create a faded cloth look.

Ill show you what I mean.

 

194090911490e503162638e5858cd00a.jpg

If you look at the image, I'm trying to create those faded bumps and the faded lines by the edges of the pockets. I'm hoping to find a procedural way to create this because I have a lot to do.

 

Anything Helps

Cheers

Switched from CS6 to CC 19.2 - PDF Drag & Drop

$
0
0

Recently switched from Dreamweaver cs6 where I could drag and drop any local file to any page. Is this feature no longer available in DW CC 19.2? I was able to drag and drop things defined as assets (image, media, etc.) in CC 19.2, but it doesn't appear that pdf's are considered an asset. My typing sucks - so drag and drop is a great feature for me, would rather not type the URL to each PDF document if possible.

 

Thanks for your help.

Re: Very slow RAM preview with good computer specs?!

$
0
0

Thanks for all the info, yes I am new to AE but pretty familiar with it as I use Premiere Pro, I really wish they would combine these programs features to one or the other.

 

Comp size is standard 1080 @ 29.97fps, the time line might be 10-seconds long.  There's  5 layers, and it's nothing more than clip art.  Previewing on the lowest settings still lags and freezes up the program.  I've abonded using it completely and looking for alternatives, for now doing it Premiere Pro is working fine but I wanted more than just the limited transitions PP offers.

 

If it would actually render the short clip maybe I would consider working with the pixelated half previews but you cant even see the actual effects on such a crap resolution, again if it rendered quickly one could check the render and go back to adjust.  This appears to be a problem for sometime that did not exist prior to 2018 and I'm shocked its not addressed.  I want to keep using the Adobe software suite but more and more it's looking like this will be a pain to the point it's not functional and we're not getting a return on our investment s well the lost time is priceless.

Re: Repère rond de flou de profondeur de champ disparu

$
0
0

Option + Commande + Maj au lancement de photoshop n'a pas fonctionné.

J'ai été dans mes préférences et ai cliqué sur "réinitialiser les préférences à la fermeture".

Après avoir relancé les programme, tout est rentré dans l'ordre

Merci beaucoup CIA

 

Can I use the ADE library separately to stamp the page numbers in an EPUB

$
0
0

Can I use the ADE library separately to stamp the page numbers in an EPUB.

I mean is it an open source library, that any one can use?

Re: Noise Reduction altered when I save project?

$
0
0

Correct, really. You can't run NR in Multitrack view - never have been able to.

 

What you have to do is double click on the clip, and it will open the original file it's from in Waveform view (or just the clip if that's all there is), and it's this that NR has to operate on, not the non-destructive version you started with. When you're done with the NR in Waveform view you should save the changes, and then when you revert to Multitrack, the clip/file will be updated, and this should be accurately reflected in the files returned to Premiere.

Re: lightroom shared collection when downloaded loses metadata

$
0
0

You've posted this in the Lightroom Classic user forum... are you able to  see the Metadata in the Library module of  Lightroom  Classic? The url you've provided is a free online reader - if you can see the metadata in Lightroom Classic and can't  see it here you may want check out a different service. What is it that  you are trying to accomplish with the free metadata reader?


先日Creative Cloudを解約しました。その際に気付いたのですが、ここ数ヶ月二重課金されております。しかも、解約に伴う違約金?も二重課金されております。どうなっているんですか?

$
0
0

先日Creative Cloudを解約しました。その際に気付いたのですが、ここ数ヶ月二重課金されております。しかも、解約に伴う違約金?も二重課金されております。どうなっているんですか?

 

今まで気付いていない方が悪いのかもしれないですけど、このまま返金等はないのでしょうか?

特定ファイルを開くと強制終了する

$
0
0

特定のhtmlファイルを開くと、ソフトが強制終了します。

エラー文などは表示されません。

該当ファイル以外は普通に開いて編集できます。

 

PCの再起動、アプリの再インストールは試しましたが解決しません。

また、コピーしたファイルも同じように開けませんでした。

Dreamweaverのバージョンは19.2、

PCはMac OS High Sierra バージョン10.13.6 です。

 

非常に困っていますので、解決策や原因の心当たりをご存知の方がおりましたら

アドバイスをいただけますと幸いです。

どうぞよろしくお願いいたします。

Re: Instalar hoy día Adobe Encore

$
0
0

Con el disco me da error. Ni puedo instalarlo con el modo de compatibilidad..

 

No entiendo por qué Adobe hace esto. Si he pagado por un programa. Aunque no quieran actualizarlo, debería seguir funcionando.

 

 

Y el otro enlace que has compartido no entiendo nada.

 

Gracias.

Re: Get Premiere Pro videos to our website

$
0
0

Another thing you might want to keep in mind.. for scalability and future expansion, is using a database ( like SQL Server) with 'code behind' ( visual basic or C# etc. ).. and asp.net or php…   so that you could build tables with fields that give info to users about what doctors are in their city, country, area code, whatever ( you design the drop down lists the way you want users to search ). Years ago there were fields that allowed for 'links' to websites etc... so if I look up Dr X I see he is in my city, is a specialist of Y, his office address, phone number, and maybe a link to a video of him yappin about stuff ( like your site has now ).

 

???

 

good luck !

 

 

Re: Forgot the password of PDF file

Viewing all 150094 articles
Browse latest View live