Tagged Questions

Lingo is Adobe Director scripting language.

learn more… | top users | synonyms

4
votes
4answers
326 views

Any online resources for learning Lingo/Shockwave Director?

I've been doing bits and pieces of work in Lingo while helping a friend with some projects he's working on, but I haven't found any good resources for actually learning the language. I'm sure I could ...
2
votes
4answers
252 views

How can you tell if a language is a “dynamic language”?

I'm trying to get a better handle on what it really means for a language to be "dynamic". I have quite a bit of experience with Lingo, which is the scripting language for the Adobe (formerly ...
1
vote
3answers
628 views

Lingo call to ActionScript not working

I have a Flash sprite in my Director project. Under the Properties of that sprite, under both the Member and the Sprite tabs, it has as its name "Assessment". In my Lingo script, I have the following ...
1
vote
1answer
333 views

Get the BIOS time in LINGO

Can someone tell me how to get the BIOS time in Lingo?
0
votes
0answers
17 views

how to change Shockwave 3D texture in Adobe director?

I want to change texture from a 3D object (W3D file that imported from 3DMAX) with different texture image (external image) but i don't know how. There is some example on internet but i still ...
0
votes
1answer
50 views

Making a 3d Menu in Director or Flash (with selection) possible?

Okay, so I need to do a Director project with a 3D style menu (to clarify, it's a study manual with a human body with several parts to be selected, for example, to study arm muscles you need to click ...
0
votes
2answers
58 views

Dynamic UI window drawing in Flash?

Wasn't sure if this question belongs here, but I'll try. So I'm about to move my project from Director | Shockwave Player (if you ever heard of these) to Flash Player for numerous reasons and while ...
0
votes
1answer
24 views

Using a variable in a message - Lingo

Can anyone tell me if there is a way for me to use a variable within a lump of code, so that code can be looped to send messages to multiple objects? For example, if I have 10 buttons and want each ...
0
votes
1answer
17 views

Directtostage error when playing published application in another computer

I have a Director application that has several modules, but one in particular decided to not work. That is the Video section of the program. So basically when Im developing in Director, everything ...
0
votes
1answer
189 views

how can i make a video/image cube interactive?

im doing a project in adobe director and im looking to make an image/video cube which display an image or video on each side of the cube now i have seen some tutorial on how to make the cube in ...
0
votes
1answer
84 views

How to detect if Windows is 64x or 86x via Lingo (Adobe Director)

Why hello there. I was wondering if its possible to detect if a costumer's Windows is 64x or 86x based via Director. The reason for this is that some Xtras don't work as intended when running on a ...
0
votes
1answer
431 views

Director/Lingo, making an application toggle between fullscreen and windowed?

I recently had a client contact me asking for an update to his project that I used to maintain/develop years ago. It was done using Macromedia Director (now Adobe Director) and Lingo. Since I ...
0
votes
1answer
356 views

DIRECTOR “TCP/IP Socket sever/client”

Would Director be an option for creating a socket client? My client needs to accept server commands; frame rate, start etc. Director seems like it was made for controlling movies. I've got Director ...
0
votes
1answer
56 views

Lingo Filter for Doxygen?

Does anyone know of or have a Lingo filter for Doxygen? I have played with DocMaker, but it introduces dependencies on director and is not a flexible or full featured as Doxygen. -Marty
0
votes
2answers
181 views

Need help with cuepoints (Adobe Director project)!

I have a little problem, there is a cd project done by another developer in Adobe Director. It is in three languages. This project has video files with subtitles... Subtitles attached to video with ...
0
votes
2answers
309 views

Director 11 and Flash with AS 2 communication

I have a Director project with 3 scripts (2 behaviors and 1 movie script). I have the following code in my movie script: on startRecording () --do stuff _movie.script["script2"].passGrade(75, 3, ...
0
votes
2answers
419 views

Swapping information between ActionScript and Lingo

I have a lingo script which runs some data processing for a Flash movie. I can call my Lingo functions from Flash by putting the following inside one of my methods: getURL("Lingo: myMethod"); and I ...
0
votes
2answers
203 views

Comparing dates in Lingo

How do I compare two dates in Lingo? To be specific, I want to know if today's date is after some fixed date. I know I can create the fixed date by using: date("20090101") and I can get the current ...