Why? Where?

YoWindow widget Questions, Suggestions and Bugs
Locked
User avatar
aytacesmebasi
Posts: 14
Joined: Wed Jan 25, 2012 11:13 pm
Name: Aytaç
Location: Bornova, İzmir, Türkiye
Contact:

Why? Where?

Post by aytacesmebasi »

Why the following code does not work ;

Not found this address ; http://localhost/yo/as3widget/yowidget.swf

How can i use on my computer the following code as web page (html)

Code: Select all

<html>
<head>
    <title>Location Chooser and YoWindow weather widget</title>
 
<!-- Location Chooser component -->
    <script type="text/javascript" src="http://js.yowindow.com/js/yolc.js"></script>
<!-- YoWindow widget component -->
    <script type="text/javascript" src="http://js.yowindow.com/js/yowidget.js"></script>
 
    <script language="JavaScript">
 
//To track if commands can be sent to YoWidget
        window.isYoWidgetReady = false;
 
        function onLoad() {
            installLocationChooser();
            installYoWidget();
        }
 
        function installLocationChooser() {
            var place = document.getElementById('location_chooser_place');
//Create YoLocationChooser and keep it as a variable of HTML window
            this.locationChooser = new YoLocationChooser(place);
 
//Subscribe to onLocationChange event
            this.locationChooser.onLocationChange = onLocationChange;
 
/**
lc.open(); - let the user to choose the location, starting on country-level
lc.open("#auto"); - detect location by IP and open it
lc.open("United Kingdom/London"); - open London
*/
            this.locationChooser.open("#auto");
        }
 
/**
Event of YoLocationChooser
It is called every time the location changes.
When location was deselected - node is null
node format
node = {
    @id, // GeoNames id
    @name, // Name from the Geonames data-base
    @p // Population
}
 
Here we reflect selected location in the widget.
*/
        function onLocationChange(node) {
//Do not do anything if location was deselected (node is null).
            if (!node) {
                return;
            }
            var locationId = node['@id'];
 
//You can call yowidget methods only after it gets ready to intercept commands
            var yowidget = document.getElementById('yowidget');
            if (!window.isYoWidgetReady) {
                return;
            }
//Select location in YoWindow widget
            yowidget.setLocationId(locationId);
        }
 
/**
Creates YoWindow widget and adds it to the place-holder "yowidget_place"
*/
        function installYoWidget() {
 
/**
flashvars parameters
See http://yowindow.com/widget_parameters.php
 
I have put some examples in the code, uncomment to see them in effect
*/
            var flashvars = {
                location_id: "auto"
//              landscape: "seaside",
//              background: "#FFFFFF",
//              lang: "de",
//              unit_system: "metric",
//              time_format: "24"
            };
 
/**
Flash parameters
*/
            var params = {
                quality: "high",
                bgcolor: "#FFFFFF",
                allowscriptaccess: "always",
                allowfullscreen: "true",
                wmode: "opaque"
            };
 
            var attributes = {
//Optionally control the color of the copyright text
//              copyright_color: "#0000FF",
//              copyright_link_color: "#FF0000",
 
//id and name of YoWindow widget in HTML DOM
                id: "yowidget",
                name: "yowidget"
            };
 
            YoWidget.embed(
                "yowidget_place", //place-holder id
                700, //width
                394, //height
                flashvars,
                params,
                attributes
            );
        }
 
//This function is called by YoWidget SWF when it is ready for commands
        function yowidget_onReady() {
            window.isYoWidgetReady = true;
            var yowidget = document.getElementById('yowidget');
//Display location selected in Chooser if any
            var node = this.locationChooser.selectedLocation;
            if (node) {
                var locationId = node['@id'];
                yowidget.setLocationId(locationId);
            }
        }
 
    </script>
</head>
 
 
<body onLoad="onLoad();">
 
    <div>
        <span id="location_chooser_place" style="display:inline-block; width:250px; vertical-align:top;">
        </span>
 
        <span id="yowidget_place" style="display:inline-block;">
        </span>
    </div>
 
</body>
</html>
Last edited by aytacesmebasi on Tue Feb 07, 2012 5:35 am, edited 1 time in total.
Hayat bir satranç oyunudur, her adımınızın farklı kombinasyonları farklı olasılıkları vardır buyüzden adım atarken bunları göz önünde bulundurmanız şarttır ama bazende en başta dediğim gibi hayat sadece bir oyundur sonuçta...
User avatar
aytacesmebasi
Posts: 14
Joined: Wed Jan 25, 2012 11:13 pm
Name: Aytaç
Location: Bornova, İzmir, Türkiye
Contact:

Re: Help! My Fault?

Post by aytacesmebasi »

...
Last edited by aytacesmebasi on Tue Feb 07, 2012 5:36 am, edited 1 time in total.
Hayat bir satranç oyunudur, her adımınızın farklı kombinasyonları farklı olasılıkları vardır buyüzden adım atarken bunları göz önünde bulundurmanız şarttır ama bazende en başta dediğim gibi hayat sadece bir oyundur sonuçta...
User avatar
hermanz
Posts: 1892
Joined: Thu Apr 08, 2010 3:21 pm
Name: Herman
Location: Nieuwegein, Netherlands

Re: Help! My Fault?

Post by hermanz »

Hi Aytaç :good:

Do not post the same question more than once . This does not help

Html with flash can not be opened on a local PC
Furthermore, I do not understand your question.

Tell some more what you want.

gr.
Herman :beer:
(Wheather on an I(phone,pad,pod) or Android, YoWindow what else )
User avatar
aytacesmebasi
Posts: 14
Joined: Wed Jan 25, 2012 11:13 pm
Name: Aytaç
Location: Bornova, İzmir, Türkiye
Contact:

Re: Help! My Fault?

Post by aytacesmebasi »

Thanks Herman :)

I want to browser start page design, sory bad english :bad:

Sample start page http://flatmo1.deviantart.com/art/EIGHT ... -212847573
Hayat bir satranç oyunudur, her adımınızın farklı kombinasyonları farklı olasılıkları vardır buyüzden adım atarken bunları göz önünde bulundurmanız şarttır ama bazende en başta dediğim gibi hayat sadece bir oyundur sonuçta...
User avatar
hermanz
Posts: 1892
Joined: Thu Apr 08, 2010 3:21 pm
Name: Herman
Location: Nieuwegein, Netherlands

Re: Help! My Fault?

Post by hermanz »

Hi

Why do you not use Chrome toolbar plugin?



gr.
Herman :beer:
(Wheather on an I(phone,pad,pod) or Android, YoWindow what else )
User avatar
aytacesmebasi
Posts: 14
Joined: Wed Jan 25, 2012 11:13 pm
Name: Aytaç
Location: Bornova, İzmir, Türkiye
Contact:

Re: Help! My Fault?

Post by aytacesmebasi »

I want to do something special
Hayat bir satranç oyunudur, her adımınızın farklı kombinasyonları farklı olasılıkları vardır buyüzden adım atarken bunları göz önünde bulundurmanız şarttır ama bazende en başta dediğim gibi hayat sadece bir oyundur sonuçta...
Locked