Feb 23rd, 2009, 6:59 pm
Luca3a wrote:Hello everybody!

I have a problem with Igo 8.3.2.64873 on my Acer N311.

I click on igo.exe , Igo start, I have the blue screen with init api... and Igo switch off...

I have already remplace the data.zip by data.zip v9c for iGO 8.3.2.64873 ~ 8.3.2.71348.

You can help me? Thanks...

It is usually a license issue.
See HERE.
Feb 23rd, 2009, 6:59 pm
Feb 23rd, 2009, 8:59 pm
VirtuOZ wrote:
Luca3a wrote:Hello everybody!

I have a problem with Igo 8.3.2.64873 on my Acer N311.

I click on igo.exe , Igo start, I have the blue screen with init api... and Igo switch off...

I have already remplace the data.zip by data.zip v9c for iGO 8.3.2.64873 ~ 8.3.2.71348.

You can help me? Thanks...

It is usually a license issue.
See HERE.


Perfect ! ! Thanks...
Feb 23rd, 2009, 8:59 pm
Feb 24th, 2009, 1:13 am
Hi LZF,

Did you put any extra GESTURES in the skin?

Since i discovered the GESTURE it becomes so handy.

Some examples in common\general.ui:

Code: Select all<script sc_UseGestures>
   GESTURE "IG6" 'run sc_ReturnToMap' 1
   GESTURE "AG0" 'run sc_GoTo_MainMenu'
   vUseGestures.SET 1
</script>

AG0 is from left-top to left-bottom, returns to Main menu
IG6 is from right-bottom to left-bottom, returns to map

or in common\start.ui
Code: Select all      ; e  s
      ; |  |
      ; |__|
      ; old gesture was triggered by normal scrollbar use
      GESTURE "CA064" 'run sc_demo_mode'
      runif %other.demo_mode 1 sc_demo_mode_on

Right top-right bottom-left bottom-left top enables demo mode.

Will be handy to disable speedcams for countries that don't allow it ;O)
or other functions like Mute/unmute etc...

Cheers
Feb 24th, 2009, 1:13 am

The current laws of physics are like half the alphabet.
Nice words can be made but we are missing the story.
Feb 24th, 2009, 1:05 pm
tweakradje wrote:Since i discovered the GESTURE it becomes so handy.

AG0 is from left-top to left-bottom, returns to Main menu
IG6 is from right-bottom to left-bottom, returns to map
CA064 is Right top-right bottom-left bottom-left top enables demo mode.

How do you find them?

There are two gestures in Becker skin to emulate the back button: "IG6" and "06"

I know now (thanks again) how to gesture "IG6", but it's not possible if you have a button on bottom covering the whole width - it is handled by "onclick" then... :?

So how could I draw "06" ???
Feb 24th, 2009, 1:05 pm

[iGO83Plus² Skin] - Please attend my iGO benchmark contest! (English version coming soon)
- Raffke_jr
Feb 24th, 2009, 5:27 pm
the download links in the first post don't work now, any one can post new links please?


Download Instructions:
Data.zip v9b
Data.zip v9c
Rename to data.zip

Branding.zip
Rename to branding.zip
Feb 24th, 2009, 5:27 pm
Feb 24th, 2009, 10:52 pm
I dunno what GESTURE "06" looks like. Must be a simple one. The logic behing the coding of gestures is not very clear to me yet.

For people who want to enable/disable the speedams with a gesture:

You colud change the start.ui gestures with

GESTURE "IG6" 'run sc_enable_speedcam_functions'
GESTURE "AG0" 'run sc_disable_speedcam_functions'

or experiment with

GESTURE "IG6" 'INITMESSAGEBOX 0 "IG6"'
GESTURE "AG0" 'INITMESSAGEBOX 0 "AG0"'

Cheers

ps: it looks like the gestures need to be defined for every STATE.
They are called in the DATA.ZIP ui's with sc_UseGestures
But you can program them seperately for every state.
If you edit <state st_NavigateMap> in common\ui\navigatemap.ui
goto the <script init> section and place the next two lines:
GESTURE "IG6" 'run sc_enable_speedcam_functions'
GESTURE "AG0" 'run sc_disable_speedcam_functions'
That will enable/disable the speedcamfunctions in Navigatemode
with a stoke on your screen.
Feb 24th, 2009, 10:52 pm

The current laws of physics are like half the alphabet.
Nice words can be made but we are missing the story.
Feb 25th, 2009, 2:45 am
[NEED HELP! - ERROR MESSAGE]

I'm a newbie to the GPS technology. I have PDA Phone Fujitsu Siemens Pocket Loox T800 with build in GPS. I've tried to installed the Nav N Go iGO v8.3.2.71348, with Indonesian Map R1 and Indonesian language. But when I tried to run the program in the loading screen of iGO it pop up an error message:
"Failed to open file: ui_igo8/240_240/main_scheme.ui exiting application."

For additional information my PDA is running Windows Mobile 5.1.195 (Build 14955.2.3.0). I installed (copy) the iGO into my SD Card\Program Files\iGO folder.
One more thing, the language file and voice file that I downloaded is in the form of zip file. Do I need to extract the zip file to the content\lang and content\voice or I just copied the original zip files into these folder?

Anyone please help me to solve this problem.

Thanks!

Limix
Feb 25th, 2009, 2:45 am
Feb 25th, 2009, 9:11 am
tweakradje wrote:I dunno what GESTURE "06" looks like. Must be a simple one. The logic behing the coding of gestures is not very clear to me yet.

I did some tests according your examples and figured it out - it's quite simple:

You have Points and Directions.
Points are named from "A" to "I" to divide your screen in 9 sections, named from top left "A" to bottom right "I":
Code: Select all+---+---+---+
| A | B | C |
+---+---+---+
| D | E | F |
+---+---+---+
| G | H | I |
+---+---+---+

Directions are numbered from 0 to 7 - top-bottom is 0 and then anticlockwise one number for each straight or diagonal direction:
Code: Select all5   4   3
  \ | /
6 -   - 2
  / | \
7   0   1


And finally you define gestures by optionally set the start and end points, followed by the required directions.

So my question for "06" simply means top-bottom-right somewhere on the screen.
I played around with these:
CG7 = top right-bottom left
BI02 = top center-bottom center-bottom right


I hope you all can follow my explanations :D
Feb 25th, 2009, 9:11 am

[iGO83Plus² Skin] - Please attend my iGO benchmark contest! (English version coming soon)
- Raffke_jr
Feb 25th, 2009, 9:35 am
Found these two working:
Code: Select allhttp://rapidshare.com/files/191674415/data_8.3.2_fixed_v9c.zip
http://rapidshare.com/files/178584980/branding_8.3.2_fixed.zip


BigD wrote:the download links in the first post don't work now, any one can post new links please?


Download Instructions:
Data.zip v9b
Data.zip v9c
Rename to data.zip

Branding.zip
Rename to branding.zip
Feb 25th, 2009, 9:35 am
Feb 25th, 2009, 3:05 pm
Thank you very much!
Grissom wrote:Found these two working:
Code: Select allhttp://rapidshare.com/files/191674415/data_8.3.2_fixed_v9c.zip
http://rapidshare.com/files/178584980/branding_8.3.2_fixed.zip


BigD wrote:the download links in the first post don't work now, any one can post new links please?


Download Instructions:
Data.zip v9b
Data.zip v9c
Rename to data.zip

Branding.zip
Rename to branding.zip
Feb 25th, 2009, 3:05 pm
Feb 25th, 2009, 3:50 pm
Raffke wrote:
tweakradje wrote:I dunno what GESTURE "06" looks like. Must be a simple one. The logic behing the coding of gestures is not very clear to me yet.


I hope you all can follow my explanations :D


Yes I can :D

But 06 would be a mirrored "L" then...

GESTURE "CA6" 'PREVSTATE' get you back with Top-right to top-left
gesture to previous state (if available like in settings menu's etc)

Thank you sir.
Feb 25th, 2009, 3:50 pm

The current laws of physics are like half the alphabet.
Nice words can be made but we are missing the story.
Feb 27th, 2009, 11:14 pm
limixdewei wrote:[NEED HELP! - ERROR MESSAGE]

I'm a newbie to the GPS technology. I have PDA Phone Fujitsu Siemens Pocket Loox T800 with build in GPS. I've tried to installed the Nav N Go iGO v8.3.2.71348, with Indonesian Map R1 and Indonesian language. But when I tried to run the program in the loading screen of iGO it pop up an error message:
"Failed to open file: ui_igo8/240_240/main_scheme.ui exiting application."

For additional information my PDA is running Windows Mobile 5.1.195 (Build 14955.2.3.0). I installed (copy) the iGO into my SD Card\Program Files\iGO folder.
One more thing, the language file and voice file that I downloaded is in the form of zip file. Do I need to extract the zip file to the content\lang and content\voice or I just copied the original zip files into these folder?

Anyone please help me to solve this problem.

Thanks!

Limix


It seems that your folder 240_240 has not registered the file main_scheme.ui
I think you have two options, you can open your datazip & look for the file into your other resolution folder, then copy it into your 240_240 resolution folder & try starting the program or you can try changing your datazip.
I think lang and voice files have to be copied in their zip format.
You have to copy them following these threads:

Igo8/content/voice

Igo8/content/lang

P.D Sorry for my bad English.................................... 8) !
Feb 27th, 2009, 11:14 pm
Feb 28th, 2009, 2:54 am
Hi. Just wanted to report a small bug in "navigatemap_480_234.ui" of Data.zip v9c:

Code: Select all; ------------OFF_ROUTE

   <SPRITE sprTurnRestriction x=0 y=83 z=10 bmp="$turnrestrictions.spr" phasemodel="navigation.turn_restriction_icon" visiblemodel="navigation.turn_restriction_icon.valid&!ui.vRouteCalculation&navigation.car_pos_valid&route.vehicle_type!=5">

   <TEXT xxx  template=xetNavInfoNum  x=0 y=135 z=10 w=45 textmodel_wstr="navigation.current_speed.number_text" visiblemodel="!navigation.has_route&navigation.current_speed.valid">
   <TEXT xxx  template=xetNavInfoUnit x=50 y=143 z=10 w=25 textmodel_wstr="navigation.current_speed.unit_text" visiblemodel="!navigation.has_route&navigation.current_speed.valid">

You have to change the X position to 0 and W value to 45 on the first line and change X position on the second line to 50. With the original values, you get the speed in the middle of the map. A picture of the bug can be found at:

http://www.golfmkv.com/forums/showthread.php?t=74989

Thanks,
Ylian
Feb 28th, 2009, 2:54 am