LevelHelper - Interact With Code

Hi,

Ive created a level with physics and now i want to implement things such as the accelrometer and touch.

I cannot seem to find an API for LevelHelper no matter how hard I try to look.

Can anyone point me in the write direction? I tried the following code as an example and it doesnt seem to work…

[code]
CCSprite* myChicken = [lh spriteWithUniqueName:@“chicken”];
myChicken.opacity = 90; [import]uid: 173546 topic_id: 31023 reply_id: 331023[/import]

I believe the LevelHelper you are speaking of is under “3rd party tools” [import]uid: 75779 topic_id: 31023 reply_id: 124040[/import]

It is that’s why I posted in this section of the Forum.

Have I posted in the wrong area?

If so, please accept my apologies.

Chris [import]uid: 173546 topic_id: 31023 reply_id: 124042[/import]

Nah, you’re fine… though usually if I have a question with LH or SH i ask on their forum. The code you posted looks more like coco2d then Corona. Below would be how to get a sprite with Corona/LH. “loader” would be the name of the loader instance you created(you did do that, right?)
[lua]myChicken = loader:spriteWithUniqueName(“chicken”)[/lua]

[import]uid: 147305 topic_id: 31023 reply_id: 124048[/import]

I believe the LevelHelper you are speaking of is under “3rd party tools” [import]uid: 75779 topic_id: 31023 reply_id: 124040[/import]

It is that’s why I posted in this section of the Forum.

Have I posted in the wrong area?

If so, please accept my apologies.

Chris [import]uid: 173546 topic_id: 31023 reply_id: 124042[/import]

Nah, you’re fine… though usually if I have a question with LH or SH i ask on their forum. The code you posted looks more like coco2d then Corona. Below would be how to get a sprite with Corona/LH. “loader” would be the name of the loader instance you created(you did do that, right?)
[lua]myChicken = loader:spriteWithUniqueName(“chicken”)[/lua]

[import]uid: 147305 topic_id: 31023 reply_id: 124048[/import]