Thread: vBulletin CMS Widgets - YoWindow Weather Widget
View Single Post
  #42  
Old 12-29-2012, 10:04 PM
thermax04 thermax04 is offline
 
Join Date: Apr 2011
Posts: 81
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gemma View Post
Find:
Code:
var flashvars = {
                location_id: "auto"
//              landscape: "seaside",
//              background: "#FFFFFF",
//              lang: "de",
//              unit_system: "metric",
//              time_format: "24"
            };
Change it to:
Code:
            var flashvars = {
//              location_id: "auto"
//              landscape: "airport",
//              background: "#FFFFFF",
//              lang: "de",
                unit_system: "us",
                u_temperature: "c",
//              time_format: "24"
            };
For the second problem, can you post me the contents of your block_html template so I can look at the code
Ok, this mod. fixed problems in pic 1

is this block_html?
PHP Code:
<center><div><li>
    <!-- 
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/Stirling"); - 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: "airport",
//              background: "#FFFFFF",
//              lang: "de",
                
unit_system"us",
                
u_temperature"c",
//              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
                
240//width
                
150//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>

 
<
body onLoad="onLoad();">
 
    <
div>
        <
span id="yowidget_place" style="display:inline-block;">
        </
span>

 <
span id="location_chooser_place" style="display:inline-block; width:240px; vertical-align:top;">
        </
span>
    </
div><br/>
<
div><center><b>Click the image for expanded forecast.</b></center></div>

 
        </
div>
        </
div>
    </
div>
    </
li></div></center
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01165 seconds
  • Memory Usage 1,851KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete