• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Unexpected Match Name Searchecd For in Group (29:0)

New Here ,
Mar 22, 2007 Mar 22, 2007

Copy link to clipboard

Copied

I get this error:
Unexpected Match Name Searchecd For in Group (29:0)

when I call this Method:
ERR(suites.StreamSuite2()->AEGP_GetStreamName(streamH, TRUE, stream_nameZ))

that call is in this function:
static A_Err ProcessStream(
AEGP_StreamRefH streamH,
A_char *stream_nameZ)
{
A_Err err = A_Err_NONE;
ERR(suites.StreamSuite2()->AEGP_GetStreamName(streamH, TRUE, stream_nameZ));
}

it is being called from this function

static A_Err recursiveCrawl(...)
{
A_Char stream_nameAC[AEGP_MAX_ITEM_NAME_SIZE] = {'\0'};

/*...*/
ERR(suites.StreamSuite2()->AEGP_GetNewLayerStream(S_my_id, layerH, AEGP_LayerStream_SOURCE_TEXT, &streamH));
ProcessStream(streamH, stream_nameAC, out);

}

Any thoughts? I am running through the whole project and getting all of the text layers and writing them out to XML. So recursiveCrawl has a for loop, it's getting the number of layers, etc etc etc... I have 7 itmes in 3 comps and I can varify that in processStream (I wrote out 7 items to my file) but when I attempt to che the stream name so I can get the value of the text, I get this error:Unexpected Match Name Searchecd For in Group (29:0)
TOPICS
SDK

Views

5.8K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 22, 2007 Mar 22, 2007

Copy link to clipboard

Copied

Nevermind.. I got it figured out.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Apr 02, 2007 Apr 02, 2007

Copy link to clipboard

Copied

Great!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 04, 2008 Jan 04, 2008

Copy link to clipboard

Copied

Care to elaborate what the problem was?
I'm getting the same error with the 'ProjDump' sample from the sdk...

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 20, 2008 Mar 20, 2008

Copy link to clipboard

Copied

I'm also getting this same message (After Effects error: internal verification failure, sorry! {unexpected match name searched for in group} (29 :: 0)) from this call in ProjDump: ERR(suites.StreamSuite2()->AEGP_GetStreamName(streamH, FALSE, stream_nameZ));

It doesn't happen on every project. I haven't figured out what in my project is causing it. Has anyone figured this one out yet?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 21, 2008 Mar 21, 2008

Copy link to clipboard

Copied

The Problem is, that you're trying to access a stream that is not actually there (for instance, accessing the stream of scale-keys for a camera would probably cause that). What helped for me as a quick fix for the Projdump project was to at first check for camera and lights and ignore them.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 05, 2010 Aug 05, 2010

Copy link to clipboard

Copied

I am trying to save a .aep file but I am getting this same message, and it won't let

me save.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 05, 2010 Aug 05, 2010

Copy link to clipboard

Copied

hi tina.

are you just trying to save an AE project normally? (ctrl + s)

or are you trying to export the project using some plug-in?

i need to know more about the situation at hand to be able to help.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 21, 2008 Mar 21, 2008

Copy link to clipboard

Copied

Here's a little code snippet on how to do this, hope it helps:

// layer object type
AEGP_ObjectType ltype;
suites.LayerSuite5()->AEGP_GetLayerObjectType(layerH, &ltype);

if(ltype == AEGP_ObjectType_CAMERA || ltype = AEGP_ObjectType_LIGHT) {
// ... skip to next
}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jul 03, 2012 Jul 03, 2012

Copy link to clipboard

Copied

LATEST

Hi there:  I have been getting this error too when I try to save an AE project (normal save: control+S); so there's no way to save the project and quit, you can only force quit out of AE.   Any suggestions what to do?  (AE CS5.5 on Mac 10.7.4 if that helps)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines