Re: Any idea?

2003-11-30 Thread sasa
At 19:08 30. 11. 03, "Diego Landro" <[EMAIL PROTECTED]> wrote:
For the zoom option map the best way would be to use a big image and resize
it as you use the zoom in-out tool, but that way maybe the image is too big
and the app would slow down  a lot because of the big image. If this happens
i guess your best shot would be to use different images for different
degrees of zooming, and you should be careful enough to register these
variations between maps so you can then adjust your coordinates for object
Yes, picture of the map is very big and it slow down any moving and 
resizing. it looks like more pictures will be better solution.

for making n-markers (if i understand quite right what youre trying to do)
your best possibility is to use lists (marker=[m1,m2,m3...]) if youre not
familiar with lists check the lingo dictionary, is quite simple (again, i
Ufff, my english, sorry. Markers are on the map annd they must be buttons. 
For example, i select from database all objects from group museums and have 
34 results with x and y coordinates for display on the map (markers) and 
every dot on the map must be mouse clickable. I can handle more pictures 
and scaling between them and i can use loop:

   repeat with i=1 to GetRecordCount(ValentinaCursor)
   ...
   end repeat
to display dots on the map:

   member("map").image.fill(rect(0,0,20,20).offset(x_koord, y_koord), 
[#color : rgb(255,0,0), #shapeType : #oval, #lineSize : 2])

but i have not any idea how to make them mouse sensitive - when you click 
on some map object you get more information about. Best posibble way is 
that click return some record ID and this is a reason to make sprites on 
the fly not to draw on the image.

Alex  

[To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo.  Thanks!]


Re: Re: QT issues

2003-11-30 Thread Warren Ockrassa
On Nov 30, 2003, at 6:17 PM, <[EMAIL PROTECTED]> wrote:

I am working on a interactive project and I have went to test it online
and the QuickTime .mov files will not show up. I exported out the .dcr
file and it shows up on the preview test; however, when it is live the
.mov files don't display audio or video.I have all the files that are
associated with it uploaded online and Im sure thats not the issue.
Does anyone have any suggestions to fix the problem???
Are the QT files where the shockwave file expects them to be, or did 
you not upload them as well?

Warren Ockrassa | President,  nightwares LLC  [EMAIL PROTECTED]
 nightwares LLC | Consulting  Programming http://www.nightwares.com/
 Author | Director 8.5 Shockwave Studio: A Beginner's Guide
Chapter samples | http://www.nightwares.com/director_beginners_guide/
[To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo.  Thanks!]


Re: Re: QT issues

2003-11-30 Thread Sean Wilson

I am working on a interactive project and I have went to test it online
and the QuickTime .mov files will not show up. I exported out the .dcr
file and it shows up on the preview test; however, when it is live the
.mov files don't display audio or video.I have all the files that are
associated with it uploaded online and Im sure thats not the issue.
Does anyone have any suggestions to fix the problem???
Did you check the "Download if needed" box after highlighting the QuickTime 
xtra in the "Modify -> Movie -> Xtras" dialog? If not you should do this 
and re-publish your movie.

To see if this is your problem you could test it by copying the QuickTime 
xtra to your Shockwave plugin folder. If your video plays properly then 
this is probably the cause. I'm not sure what you mean by "preview test" 
above, so this mightn't be related at all. If you provide system details 
(OS version, Director version) someone could help you locate this folder if 
you're not sure where it resides.

HTH,
-Sean.
[To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo.  Thanks!]


Re: QT issues

2003-11-30 Thread hines5
I am working on a interactive project and I have went to test it online
and the QuickTime .mov files will not show up. I exported out the .dcr
file and it shows up on the preview test; however, when it is live the
.mov files don't display audio or video.I have all the files that are
associated with it uploaded online and Im sure thats not the issue.

Does anyone have any suggestions to fix the problem???













[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL 
PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping 
with programming Lingo.  Thanks!]


Re: Any idea?

2003-11-30 Thread Diego Landro
Well, never done anything of the sort, but here are some ideas.
For the zoom option map the best way would be to use a big image and resize
it as you use the zoom in-out tool, but that way maybe the image is too big
and the app would slow down  a lot because of the big image. If this happens
i guess your best shot would be to use different images for different
degrees of zooming, and you should be careful enough to register these
variations between maps so you can then adjust your coordinates for object
displaying and placing (example: if you use a 100% and a 50% map, then in
the 50% map you should display your objects at object.size/2)
for making n-markers (if i understand quite right what youre trying to do)
your best possibility is to use lists (marker=[m1,m2,m3...]) if youre not
familiar with lists check the lingo dictionary, is quite simple (again, i
don´t know if i understood right what you´re trying to do, i guess it´s that
you have one set of variables and you want to use many sets and not just
one, then lists is the way to go)
Diego Landro
- Original Message - 
From: "sasa" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, November 30, 2003 8:50 AM
Subject:  Any idea?


> I want to make one CD ROM  project - dinamic map of the city with city
> objects which are shown dinamicly on the map from database.(Valentina). I
> have a problem how to make map of the city with zoom option. Is it one big
> image or to make it from many small images, or something else. I have done
> similar thing with one image and one object.
>
> In database I store x and y location of object and then position a marker
> sprite on selected object. If i have more objects to show, how to make
> n-markers? I can draw oval on bitmap but there is a problem to detect
mouse
> click on one of them and which one and call display_more_information
> function or miaw.
>
> Did someone have done something similar or have idea how to do this?
>
> Thanks, and sorry for my english
> Alex
>
>
> [To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email
[EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is
for learning and helping with programming Lingo.  Thanks!]
>
>
> -- 
> Incoming mail is certified Virus Free.
> Checked by AVG Anti-Virus (http://www.grisoft.com).
> Version: 7.0.203 / Virus Database: 261.3.2 - Release Date: 27/11/2003
>
>



-- 
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.203 / Virus Database: 261.3.2 - Release Date: 27/11/2003

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL 
PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping 
with programming Lingo.  Thanks!]


Any idea?

2003-11-30 Thread sasa
I want to make one CD ROM  project - dinamic map of the city with city 
objects which are shown dinamicly on the map from database.(Valentina). I 
have a problem how to make map of the city with zoom option. Is it one big 
image or to make it from many small images, or something else. I have done 
similar thing with one image and one object.

In database I store x and y location of object and then position a marker 
sprite on selected object. If i have more objects to show, how to make 
n-markers? I can draw oval on bitmap but there is a problem to detect mouse 
click on one of them and which one and call display_more_information 
function or miaw.

Did someone have done something similar or have idea how to do this?

Thanks, and sorry for my english
Alex 

[To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo.  Thanks!]


test

2003-11-30 Thread Pranav Negandhi
...bzzz...ppphffftppfft...

Pranav Negandhi
concept-I
www.cimultimedia.com
[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL 
PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping 
with programming Lingo.  Thanks!]