Questions tagged [local-shared-object]
34 questions
0
votes
1 answer
Local Shared Object localPath
I'm creating an .swf movie that will store a Local Shared Object on the visitors' machines of a community.
Basically, the .swf movie is part of an add-on for forum communities. By that I mean that I don't know beforehand the full path of the .swf…

Peter K.
- 61
- 13
0
votes
1 answer
Something like cookies in Flash/ActionScript
i need to implement something like a cookie in a flash file....and i dont have a clue about ActionScript.
Basically it is a video with a mute/unmute button. If i mute the video and refresh the browser it is not muted again.So i need to persist the…

Abenil
- 1,048
- 3
- 12
- 26
0
votes
2 answers
How can I programatically determine the location that Flash stores Local Shared Objects
I'm writing some automated acceptance tests for a flash movie (driving the movie using iMacros).
I need to "reset" the test environment before each test run by clearing out the settings flash is storing in Local Shared Objects.
I can do this…

David Laing
- 7,605
- 10
- 33
- 44
-1
votes
1 answer
shared library how to link to a symbol?
I have:
car.cc
#include "car.h"
#include
using namespace std;
extern "C" Car* create_object()
{
return new Car;
}
Car::Car() {
this->maxGear = 2;
this->currentGear = 1;
this->speed = 0;
}
void Car::shift(int gear) {
…

sunset
- 1,359
- 5
- 22
- 35