ActiveDen

Classic Memory - with XML

  • Has been a member for 4-5 years
  • Bought between 10 and 49 items
pixelman says
Purchased

hi animike is it possible to use keyboard instead of a mouse for interactive? 10x

2 years ago
Author
animike animike replied

sorry, no.

2 years ago
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
daf says
Purchased

I really like the file and am able to get everything working correctly. Can you tell me what to change so when you have clicked on two cards that don’t match, the cards display longer before they flip back?

Thanks!

2 years ago
Author
animike animike replied

in CardFlip.as edit line 199:

main.noMatch(1100,main.firstPick.id, main.secondPick.id);

change the 1100 (which currently represents 1.1 seconds) to a larger number.

2 years ago
  • Has been a member for 4-5 years
  • Bought between 10 and 49 items
pixelman says
Purchased

Hi animike i would like to ask 2 questions:

1. is it possible to add a “flip-sound” into it. Like a “swosh” when I turn a card…

2. is it possible to add a “winning” sound when there is a match between pair of cards

thanks

2 years ago
Author
animike animike replied

Both are possible, but it would take a lot of customization on your end.

2 years ago
Purchased
pixelman pixelman replied

hi animke, i found an easy way to solve this, just adding a sound file to library, than adding “Identifier” for linking the file, (in the library panel, right click on the file > properties > check v on “export for action script” and “export in first frame” leave “export for runtime sharing” unchecked, now just add any name to the Identifier i choose correct1 for the right answer repeat the same process for wrong match of cards.

than open the AS code (around line 203) add to the code

//if you got it right function yesMatch(pause) { var now = getTimer(); this.onEnterFrame = function() { if (getTimer()-now>pause) { delete this.onEnterFrame; recedeCards(); _root.firstPick = undefined; _root.secondPick = undefined; // sound if you got 2 cards right correctSound = new Sound(this); correctSound.attachSound(“correct1”); correctSound.start(0); } }; } //if you got it wrong function noMatch(pause, first, second) { var now = getTimer(); this.onEnterFrame = function() { if (getTimer()-now>pause) { delete this.onEnterFrame; returnFlip(first); // sound if you got 2 cards wrong errorSound = new Sound(this); errorSound.attachSound(“error2”); errorSound.start(0); } }; }

That’s it!

Pixelman

2 years ago
Author
animike animike replied

Awesome! I regretted writing “a lot of customization” when I responded. haha

Glad you were able to figure it out. Thanks for posting your solution.

2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
epascual22 says
Purchased

Hi Animike!

I purchased the game and changed everything for customization. All went smoothly. The memory.swf works when I run the movie. However, as soon as I transfer just that particular file to my server, it does not work. Can you please guide me on how to post this particular flash game to my site? I am using wordpress. I usually just import the swf file and it works. However with this one, not sure because it may be the XML and JS, I will need extra guidance.

Thank you, Evan

2 years ago
Author
animike animike replied

it is probably a path issue… not finding the xml and/or the swf for your project… you may need to change where the swf is looking for the xml. sorry i cannot offer any more guidance than that. i don’t work with wordpress at all.

2 years ago
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
juank2 says
Purchased

Hi

I change de code of de DistortImage.as and I get this DistortImage.as, line 22 Syntax error.

1. Open the ActionScript file called “DistortImage” 2. Go to: http://www.flashsandy.org/blog/distortimage-20-the-fastest-way-to-freely-distort-image-with-flash-in-actionscript.html 3. Scroll down a few lines until you see the box with the code in it. 4. On the top left of the box, there is a link “PLAIN TEXT ”. Be sure you click this and then copy all the code. 5. Replace ALL THE CODE in the original file with this new copied text 6. Edit the following (approx 195) line: c.beginBitmapFill( texture, sM, false, false ); and set the last parameter to true. It should look like this:

c.beginBitmapFill( texture, sM, false, true );

7. Save and close the file. It is the classic memory game you loved to play when you were a kid. The best part about it is dynamic via XML . Lots of great variables to customize via XML

Thanks

2 years ago
Author
animike animike replied

First thing you should try is quitting and reopening flash and try the file again…If you are still having issues shoot me an email through my profile.

2 years ago
Purchased
Default-user juank2 replied

I already did what you say to me and it continues putting an Syntax error.

2 years ago
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
juank2 says
Purchased

Hi the DistortImage.as is not working it send a sintax error and I copy an follow the intructions

2 years ago
Author
animike animike replied

Hmm. Not sure what to say. Have you restarted your computer? Are you sure you have the latest Distort file?

2 years ago
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
juank2 says
Purchased

Hi the DistortImage.as is not working it send a sintax error and I copy an follow the intructions

2 years ago
Author
animike animike replied

sent you an email. thx.

2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
  • Spain
grdar says
Purchased

Hi, I purchased the game with the intent to change the endMovie MC (so I could translate the text into spanish) and found upon publishing the fla, that the resulting swf doesnt work as the one that is included in the download zip does.

Whenever I run the swf, it reads only one of the random bg.jpgs, and the cards dont show up at all.

In fact, I tried publishing the FLA without editing ANYTHING (technically by doing this I should end up with the same swf I get in the download swf, right?) and I still get the same error, always a random background, but the cards never show up. What am I doing wrong?

2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
  • Spain
grdar says
Purchased

Please disregard my previous post, I figured out I hadn’t set up my DistortImage.as class file, all works like a charm now. Thanks for a great flash. :)

2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
plumdesignbuild says
Purchased

Hi Animike-

I recently purchased Classic Memory and I keep getting this message when I test the movie in Flash 8: 175: Syntax error. 175. var sM = {};

Total ActionScript Errors: 157 Reported Errors: 100

Can you help?

2 years ago
Author
animike animike replied

Hmm. did you update the Distort ActionScript file? I’ve never heard of that error.

2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
plumdesignbuild says
Purchased

If you mean this: \b c.beginBitmapFill( texture, sM, false, true ), yes I did.

2 years ago
Author
animike animike replied

Just realized that you aren’t showing up as “purchased” for this file. Why is that?

2 years ago
Author
animike animike replied

just read that there is a bug with buyers ribbons.. Contact me through my profile and I can send you files that I know work.

2 years ago
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
  • United Kingdom
TolputtKeeton says
Purchased

Hi I am getting a syntax error when i try and publish the movie.

The syntax error is on line 22.

Any help please????

2 years ago
Author
animike animike replied

did you resolve this? i believe you sent me an email.

2 years ago
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
  • United Kingdom
TolputtKeeton says
Purchased

No this isn’t resolved, how do i fix the file???

2 years ago
  • Has been a member for 2-3 years
  • Exclusive Author
  • Bought between 100 and 499 items
Kalle says
Purchased

hello, it is possible to combine two different images

maybe

images/men.jpg images/woman.jpg

or

images/rightfoot.jpg images/rightschoe.jpg

I mean 2 images with different names

1 year ago
Author
animike animike replied

yes, there is another version… shoot me an email through my profile and I’ll hook you up… just go back and rate the file you purchased. :)

1 year ago
  • Has been a member for 2-3 years
  • Exclusive Author
  • Bought between 100 and 499 items
Kalle says
Purchased

Thanks animike for this great product, good ideas ! I llike your products :o)

1 year ago
by
by
by
by
by